:root {
  --ink: #10202a;
  --muted: #58666f;
  --line: #d7e1e4;
  --paper: #f6f8f8;
  --white: #ffffff;
  --teal: #087d84;
  --teal-dark: #075d64;
  --blue: #214f8f;
  --orange: #ef6f36;
  --green: #1f8a5b;
  --navy: #071e27;
  --shadow: 0 18px 48px rgba(16, 32, 42, 0.14);
  --heavy-shadow: 0 28px 70px rgba(7, 30, 39, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
  overflow-x: hidden;
}

.topbar,
header,
main,
section,
footer {
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(8, 125, 132, 0.18);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
}

.topbar .wrap,
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar .wrap {
  min-height: 38px;
  color: #d9e7eb;
  flex-wrap: wrap;
}

header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 32, 42, 0.06);
}

header .wrap {
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  gap: 4px;
  width: 33px;
  height: 33px;
}

.brand-mark i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.brand-mark i:nth-child(2n) {
  background: var(--blue);
}

.brand-mark i:nth-child(3n) {
  background: var(--orange);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #263943;
  font-size: 14px;
  font-weight: 750;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--orange);
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 32, 42, 0.12);
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.button.accent {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 30, 39, 0.94), rgba(7, 93, 100, 0.72) 58%, rgba(16, 32, 42, 0.76)),
    url("gulf-hosting-hero.jpg") center / cover no-repeat;
}

.hero .wrap {
  min-height: 580px;
  display: grid;
  align-items: center;
  padding: 82px 0;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: #bde8eb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.hero p {
  width: min(650px, 100%);
  color: #e9f4f5;
  font-size: 20px;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.band {
  padding: 70px 0;
}

.band.alt {
  background: var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2 {
  width: min(690px, 100%);
  margin-bottom: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
}

.section-head p {
  width: min(410px, 100%);
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.plan,
.proof {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(16, 32, 42, 0.04);
}

.card b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 0 10px;
  background: #e7f4f5;
  color: var(--teal-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.card h3,
.plan h3,
.proof h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card p,
.plan p,
.proof p,
li {
  color: var(--muted);
  line-height: 1.55;
}

.plan {
  box-shadow: var(--heavy-shadow);
}

ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

label {
  display: grid;
  gap: 6px;
  color: #314650;
  font-size: 14px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd7db;
  border-radius: 6px;
  padding: 13px 14px;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.legal-page {
  background: var(--paper);
}

.legal-page .hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 39, 0.9), rgba(7, 93, 100, 0.72)),
    url("gulf-hosting-hero.jpg") center / cover no-repeat;
}

.legal-content {
  display: grid;
  gap: 18px;
  width: min(860px, 100%);
}

.legal-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.legal-card h2,
.contact-card h2 {
  margin-bottom: 12px;
  font-size: 27px;
}

.legal-card p,
.legal-card li,
.contact-card p,
.contact-card li {
  color: var(--muted);
  line-height: 1.6;
}

.notice {
  border-left: 5px solid var(--orange);
  background: #fff8f4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

footer {
  background: #0b171d;
  color: var(--white);
  padding: 42px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

footer a,
footer p {
  color: #c7d4d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }
}

@media (max-width: 880px) {
  .section-head,
  .split,
  .contact-grid,
  footer .wrap {
    display: grid;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .topbar .wrap,
  header .wrap {
    align-items: start;
    flex-direction: column;
    padding: 12px 0;
  }

  .button {
    width: 100%;
  }
}
