:root {
  --navy: #0b1f2a;
  --blue: #11384b;
  --teal: #1a8c8d;
  --teal-dark: #0d686c;
  --cream: #f6f3ee;
  --white: #ffffff;
  --text: #1c2730;
  --muted: #5d6b75;
  --border: rgba(17, 56, 75, 0.14);
  --shadow: 0 24px 70px rgba(11, 31, 42, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.brand strong { display: block; font-size: 16px; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; font-weight: 600; color: var(--blue); }
.desktop-nav a { font-size: 14px; }
.nav-cta,
.mobile-call {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white) !important;
}
.mobile-call { display: none; font-weight: 700; font-size: 14px; }

.hero {
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 80% 10%, rgba(26, 140, 141, 0.22), transparent 34%),
    linear-gradient(135deg, #f6f3ee 0%, #edf7f6 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
h1, h2, h3 { margin: 0; line-height: 1.08; color: var(--navy); }
h1 { font-size: clamp(44px, 7vw, 76px); letter-spacing: -0.06em; max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.045em; }
h3 { font-size: 21px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 20px; max-width: 720px; color: var(--muted); margin: 22px 0 0; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 14px 32px rgba(26, 140, 141, 0.24); }
.btn-secondary { background: var(--white); color: var(--blue); border: 1px solid var(--border); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span,
.area-list span {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--blue);
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.card-topline { color: var(--teal-dark); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0.08em; margin-bottom: 10px; }
.hero-card h2 { font-size: clamp(28px, 3vw, 38px); overflow-wrap: anywhere; }
.hero-card p { color: var(--muted); margin: 16px 0 20px; }
ul { padding-left: 20px; margin: 0; }
li { margin: 8px 0; }

.section { padding: 78px 0; background: var(--white); }
.section.muted { background: #edf7f6; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow), .split-grid p, .domain-panel p, .cta-box p { color: var(--muted); font-size: 18px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbfb);
}
.service-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(26, 140, 141, 0.12);
  color: var(--teal-dark);
  font-weight: 900;
  margin-bottom: 20px;
}
.service-card p { color: var(--muted); margin: 12px 0 0; }

.split-grid, .domain-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.domain-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.domain-panel h2, .domain-panel .eyebrow { color: var(--white); }
.domain-panel p { color: rgba(255,255,255,0.78); }
.benefits { display: grid; gap: 14px; }
.benefits div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 20px;
}
.benefits strong { display: block; font-size: 18px; margin-bottom: 4px; }
.benefits span { color: rgba(255,255,255,0.72); }

.cta-section { background: linear-gradient(135deg, #edf7f6, #f6f3ee); }
.cta-box {
  text-align: center;
  max-width: 860px;
}
.cta-box .cta-actions { justify-content: center; }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.76);
  padding: 28px 0;
}
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-inner p { margin: 0; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-call { display: inline-flex; }
  .hero { padding: 62px 0 54px; }
  .hero-grid, .split-grid, .domain-panel { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1120px); }
  .header-inner { min-height: 70px; }
  .brand small { display: none; }
  .brand strong { font-size: 14px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-card { padding: 24px; border-radius: 26px; }
  .service-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  h1 { font-size: 42px; }
  .hero-subtitle { font-size: 18px; }
  .section { padding: 58px 0; }
  .footer-inner { display: block; }
  .footer-inner p + p { margin-top: 8px; }
}

.availability-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.5;
}
