:root {
  --navy: #0b1728;
  --ink: #172033;
  --muted: #647084;
  --line: #d6e0ea;
  --panel: #ffffff;
  --wash: #f3f7fb;
  --green: #10b981;
  --green-soft: #ddf7ed;
  --blue: #12365a;
  --orange: #f59e0b;
  --shadow: 0 22px 60px rgba(11, 23, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 23, 40, 0.035) 1px, transparent 1px),
    #f7fafc;
  background-size: 48px 48px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 850;
}

.brand img {
  display: block;
  width: 48px;
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #475467;
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.header-cta,
.primary-action,
.secondary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
}

.header-cta,
.primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 28px rgba(18, 54, 90, 0.18);
}

.header-cta {
  padding: 0 18px;
  white-space: nowrap;
}

.primary-action,
.secondary-action {
  padding: 0 20px;
}

.secondary-action {
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 64px;
  background:
    linear-gradient(115deg, rgba(16, 185, 129, 0.11), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f4f8fb 100%);
}

.eyebrow,
.section-kicker {
  color: #08764c;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--green-soft);
  border: 1px solid rgba(16, 185, 129, 0.18);
  margin: 0 0 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.16);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 0;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  color: #475467;
  line-height: 1.62;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 34px;
  color: #475467;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal-row span,
.zone-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  color: #234059;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.hero-visual {
  margin: 0;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 760px;
}

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

.service-grid article,
.audience-list article,
.zone-panel,
.quote-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(11, 23, 40, 0.08);
}

.service-grid article,
.audience-list article {
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--orange);
  font-weight: 900;
}

.process {
  background: #fff;
  border-block: 1px solid var(--line);
}

.timeline {
  list-style: none;
  counter-reset: steps;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline li {
  counter-increment: steps;
  min-height: 190px;
  padding: 24px;
  border-left: 4px solid var(--green);
  background: var(--wash);
  border-radius: 8px;
}

.timeline li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  color: #08764c;
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.timeline span {
  color: #475467;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.zone {
  background:
    linear-gradient(90deg, rgba(18, 54, 90, 0.92), rgba(11, 23, 40, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.zone-panel {
  max-width: 920px;
  padding: clamp(28px, 5vw, 48px);
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-section {
  background: #fff;
}

.quote-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.quote-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.quote-actions span {
  color: #475467;
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #cbd5e1;
  background: var(--navy);
}

.site-footer p {
  margin: 0;
  color: inherit;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .split,
  .quote-box {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
}
