/* Component-specific styles. Tokens come from colors_and_type.css */

* { box-sizing: border-box; }
body { margin: 0; }
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide { max-width: var(--container-wide); }

/* ---------- Nav (dark) ---------- */
/* ---------- Nav (matches the new single-file homepage nav) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 31, 38, 0.85);          /* matches homepage --dk */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 200ms ease;
}
.nav.scrolled { box-shadow: 0 12px 32px -8px rgba(0,0,0,0.55); border-bottom-color: rgba(255,255,255,0.10); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
/* White-out the brand mark so it reads on the dark nav. */
.nav-brand img { filter: brightness(0) invert(1); }
.nav-brand-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-size: 13px; color: rgba(255, 255, 255, 0.55); text-decoration: none;
  font-weight: 500; padding: 0.42rem 0.85rem; border-radius: 6px;
  transition: color 150ms, background 150ms;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }

/* Ghost CTA — fills cyan on hover, matches the homepage Get-your-audit pill */
.nav-cta {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.01em;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  background: transparent;
  color: #fff !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.nav-cta:hover {
  background: var(--cyan-400);
  border-color: var(--cyan-400);
  color: var(--ink-900) !important;
}

/* ---------- Nav dropdown ---------- */
/* ---------- "or book a call directly →" secondary link under primary CTAs ---------- */
.cta-book-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--teal-700);
  text-decoration: none;
  font-style: italic;
  border-bottom: 1px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.cta-book-link:hover {
  color: var(--teal-800);
  border-bottom-color: var(--teal-700);
}
/* Dark-section variant — lighter cyan over deep teal backgrounds */
.cta .cta-book-link,
.section.ink .cta-book-link {
  color: var(--cyan-400);
  display: block;
  margin-top: 16px;
}
.cta .cta-book-link:hover,
.section.ink .cta-book-link:hover {
  color: var(--cyan-300);
  border-bottom-color: var(--cyan-400);
}

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  transition: transform 200ms var(--ease-out), opacity 200ms;
  margin-top: 1px;
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(180deg);
  opacity: 0.85;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  /* invisible bridge — keeps hover alive across the visual gap */
  padding-top: 14px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), visibility 180ms;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown.open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
  opacity: 0.85;
}

.nav-dropdown-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal-700);
  border-radius: 14px;
  padding: 10px;
  width: 440px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  box-shadow: 0 22px 52px -16px rgba(11, 32, 48, 0.28), 0 4px 14px rgba(11, 32, 48, 0.06);
}

/* Mega-menu rows: icon + title + one-liner */
.nav-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 160ms var(--ease-out),
              border-color 160ms var(--ease-out);
}
.nav-mega-item + .nav-mega-item { margin-top: 2px; }
.nav-mega-item:hover,
.nav-mega-item:focus-visible {
  background: var(--bg-surface);
  border-left-color: var(--teal-700);
  outline: none;
}
.nav-mega-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--deep-teal-50);
  color: var(--deep-teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}
.nav-mega-item:hover .nav-mega-icon,
.nav-mega-item:focus-visible .nav-mega-icon {
  background: var(--deep-teal-700);
  color: var(--cyan-400);
}
.nav-mega-text { flex: 1; min-width: 0; }
.nav-mega-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 1px 0 3px;
}
.nav-mega-desc {
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.45;
  text-wrap: pretty;
}

/* If the dropdown would overflow on the right at narrower viewports, shift its anchor */
@media (max-width: 1080px) {
  .nav-dropdown-menu {
    left: auto;
    right: 0;
    transform: none;
  }
  .nav-dropdown-inner { width: 400px; }
}
@media (max-width: 720px) {
  .nav-dropdown-inner { width: 340px; }
  .nav-mega-icon { width: 34px; height: 34px; }
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 180ms var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px; line-height: 1;
  text-decoration: none;
}
.btn-primary { background: #0E4858; color: #fff; }
.btn-primary:hover { background: #082f3c; }
.btn-secondary { background: #3FC1D4; color: #06303a; border-color: transparent; }
.btn-secondary:hover { background: #7fd6e3; }
.btn-accent { background: #DC4413; color: #fff; }
.btn-accent:hover { background: #B5360D; }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { color: var(--teal-800); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-700);
}

/* ---------- Hero ---------- */
.hero { padding: 88px 0 96px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 18px 0 24px;
  color: var(--ink-900);
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal; color: #DC4413; font-weight: 300;
}
.hero .hero-subline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-700);
  margin: -8px 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-wrap: balance;
}
.hero .lede {
  font-size: 20px; line-height: 1.5; color: var(--ink-700);
  max-width: 520px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-muted);
}
.hero-trust strong { color: var(--fg); font-weight: 600; }

/* Hero visual — deepest ink, vivid cyan glow on the mark. */
/* Hero visual — large dark teal panel with radial bloom + glowing star */
.hero-visual {
  aspect-ratio: 1 / 1;
  min-height: 500px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  /* Three-layer radial gradient: subtle white bloom at centre, then cyan
     glow, over a dark-teal-to-near-black falloff at the edges. */
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.06) 0%, transparent 32%),
    radial-gradient(circle at 50% 45%, rgba(63, 193, 212, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 50% 45%, #0c2e3a 0%, #04141c 75%);
  box-shadow: 0 50px 110px -30px rgba(5, 26, 35, 0.6);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 20, 28, 0.55) 100%);
  pointer-events: none;
}
.hero-star {
  position: absolute; left: 50%; top: 44%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  /* 65% of card width, so it scales with the card; capped at 360px so it
     does not get silly on very wide viewports. */
  width: 65%;
  max-width: 360px;
  height: auto;
  color: #FFFFFF;
  z-index: 2;
  /* Soft white bloom + cyan halo behind the mark */
  filter:
    drop-shadow(0 0 100px rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 70px rgba(63, 193, 212, 0.45));
  animation: hero-star-spin 4s var(--ease-out) 0.2s 1 both;
}

/* Sub-action italic line below primary CTA */
.hero-subact {
  margin-top: 14px;
  font-size: 14px;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.5;
}
/* Footnote strip with mono dots between phrases */
.hero-footnote {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
}
.hero-footnote strong {
  color: var(--ink-900);
  font-weight: 700;
  font-style: normal;
}
.hero-footnote-sep { opacity: 0.4; }
@keyframes hero-star-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-star { animation: none; }
}
.hero-card {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px -10px rgba(5, 26, 35, 0.45);
  display: flex; gap: 14px; align-items: center;
  z-index: 3;
}
.hero-card-icon {
  width: 38px; height: 38px; border-radius: 999px;
  background: #cce4e8; color: #0E4858;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.hero-card-title { font-size: 14px; font-weight: 600; color: var(--fg); }
.hero-card-link { color: inherit; text-decoration: none; transition: color 150ms; }
.hero-card-link:hover { color: var(--teal-700); }
.hero-card-meta { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: #1f7a4d; margin-right: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ---------- Section ---------- */
.section { padding: 96px 0; }
.section.surface { background: var(--bg-surface); }
.section.ink {
  background: #051a23;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section.ink .container { position: relative; z-index: 1; }
.section.ink .section-head h2 { color: #fff; }
.section.ink .section-head p { color: rgba(255,255,255,0.65); }
.section.ink .eyebrow { color: #3FC1D4; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 14px 0 16px;
  text-wrap: balance;
}
.section-head p { font-size: 18px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* ---------- Service Grid ---------- */
.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 220ms var(--ease-out);
  box-shadow: 0 2px 0 rgba(11, 32, 48, 0.02);
}
.service-card:hover {
  border-color: var(--deep-teal-300);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -14px rgba(11, 32, 48, 0.22);
}
.service-card.featured {
  background: #0E4858; color: #fff; border-color: transparent;
  box-shadow: 0 18px 40px -12px rgba(11, 32, 48, 0.35);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.78); }
.service-card.featured .service-icon { background: rgba(63, 193, 212, 0.18); color: #3FC1D4; }
.service-card.featured .more { color: #3FC1D4; }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--deep-teal-50); color: var(--deep-teal-700);
  display: flex; align-items: center; justify-content: center;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 22px; line-height: 1.2;
  margin: 0; font-weight: 500; letter-spacing: -0.01em;
}
.service-card p { margin: 0; color: var(--fg-muted); font-size: 15px; line-height: 1.55; }
.service-card .more {
  margin-top: auto; padding-top: 8px;
  color: var(--teal-700); font-size: 14px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}

/* ---------- "How we help" accordion (homepage services) ---------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.service-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  border-left: 4px solid transparent;
  overflow: hidden;
  transition: border-color 220ms var(--ease-out),
              box-shadow 220ms var(--ease-out),
              background 220ms var(--ease-out);
}
.service-row:hover { border-color: var(--deep-teal-300); }
.service-row.open {
  border-left-color: var(--teal-700);
  border-color: var(--deep-teal-300);
  box-shadow: 0 18px 40px -16px rgba(11, 32, 48, 0.18);
}
/* Featured (GEO) row — always shows a teal left border + slight surface tint */
.service-row-featured {
  border-left-color: var(--teal-700);
  background: linear-gradient(to right, var(--deep-teal-50) 0%, #fff 35%);
}
.service-row-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--teal-700);
  color: var(--cyan-400);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  line-height: 1;
}

.service-row-head {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 180ms var(--ease-out);
}
.service-row-head:hover { background: rgba(14, 72, 88, 0.025); }
.service-row.open .service-row-head { background: rgba(14, 72, 88, 0.04); }

.service-row-head:focus { outline: none; }
.service-row-head:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: -2px;
}

.service-row .service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--deep-teal-50); color: var(--deep-teal-700);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.service-row.open .service-icon {
  background: var(--deep-teal-700); color: var(--cyan-400);
}

.service-row-text {
  flex: 1; min-width: 0;
}
.service-row-text h3 {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.service-row-text p {
  margin: 4px 0 0;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-row-toggle {
  flex: none;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: transform 280ms var(--ease-out), color 180ms;
}
.service-row.open .service-row-toggle {
  transform: rotate(180deg);
  color: var(--teal-700);
}

.service-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease-out);
}
.service-expand-inner {
  padding: 4px 28px 28px;
  padding-left: 90px;
}
.service-copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.service-pricing {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--teal-700);
  margin: 0 0 22px;
  padding: 10px 16px;
  background: var(--deep-teal-50);
  border: 1px solid rgba(14, 72, 88, 0.08);
  border-radius: 999px;
  display: inline-block;
  letter-spacing: -0.005em;
}
.service-row .btn-primary { align-self: flex-start; }

/* Service bullets and footer row (new design) */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.55;
}
.service-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-700);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 13px;
}
.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.service-audit-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  text-decoration: none;
  transition: color var(--dur-fast), gap var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-audit-link:hover { color: var(--teal-800); gap: 8px; }
@media (max-width: 640px) {
  .service-foot { flex-direction: column; align-items: flex-start; }
}

/* ---------- Packages section (homepage) ---------- */
.packages-section { background: #fff; padding: 88px 0 96px; }
.packages-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
.packages-head .eyebrow { display: block; margin-bottom: 12px; }
.packages-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
}
.packages-note {
  background: var(--bg-surface);
  border-left: 3px solid var(--teal-700);
  padding: 18px 22px;
  border-radius: 8px;
}
.packages-note p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-700);
}
.packages-note strong { color: var(--ink-900); }

/* Legacy bundles-section (still referenced; kept for backward compat) */
.bundles-section { margin-top: 0; }
.bundles-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.bundles-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink-900);
  text-wrap: balance;
}
.bundles-head p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 12px;
}
.bundles-head p:last-child { margin-bottom: 0; }
.bundles-urgency {
  max-width: 580px;
  margin: 16px auto 0 !important;
  padding: 14px 22px;
  background: var(--deep-teal-50);
  border-left: 3px solid var(--teal-700);
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--ink-700) !important;
  line-height: 1.55;
  text-align: left;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bundle-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.bundle-card:hover {
  border-color: var(--deep-teal-300);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(11, 32, 48, 0.18);
}

.bundle-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 14px;
}
.bundle-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.bundle-tagline {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}
.bundle-includes {
  list-style: none;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-700);
  line-height: 1.4;
}
.bundle-includes li::before {
  content: "—";
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  flex: none;
  width: auto;
  margin-top: 1px;
}
.bundle-includes li.bundle-anchor {
  font-weight: 600;
  color: var(--ink-900);
}
.bundle-includes li.bundle-anchor::before {
  content: "✦";
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 11px;
  margin-top: 3px;
}
.bundle-free {
  font-size: 10px;
  font-weight: 600;
  background: var(--deep-teal-50);
  color: var(--deep-teal-700);
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 4px;
}
.bundle-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 8px 0 0;
}
.bundle-pricing {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--teal-700);
  margin: 8px 0;
  padding: 10px 14px;
  background: var(--deep-teal-50);
  border-radius: 8px;
  letter-spacing: -0.005em;
}

/* Two-line pricing display: big number + small mono sub */
.bundle-price-main {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.015em;
  line-height: 1;
  margin-top: 12px;
  font-variant-numeric: tabular-nums lining-nums;
}
.bundle-price-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin: 6px 0 18px;
}
.bundle-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 180ms var(--ease-out);
  border: 1.5px solid var(--border-strong);
  color: var(--ink-900);
  margin-top: auto;
}
.bundle-btn:hover {
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.bundle-card .btn-primary { margin-top: auto; align-self: flex-start; }

/* Featured bundle — inverted dark teal, visually larger */
.bundle-card.featured {
  background: #0E4858;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 22px 50px -16px rgba(11, 32, 48, 0.42);
  padding: 40px 32px;
  position: relative;
}
.bundle-card.featured h3 { font-size: 26px; }
.bundle-card.featured:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -16px rgba(11, 32, 48, 0.5);
}
.bundle-desc-italic {
  font-style: italic;
  font-size: 13px !important;
  opacity: 0.85;
}
.bundle-card.featured h3 { color: #fff; }
.bundle-card.featured .bundle-tag { color: var(--cyan-400); }
.bundle-card.featured .bundle-tagline { color: rgba(255,255,255,0.55); }
.bundle-card.featured .bundle-desc { color: rgba(255,255,255,0.78); }
.bundle-card.featured .bundle-includes li { color: rgba(255,255,255,0.62); }
.bundle-card.featured .bundle-includes li::before { color: rgba(255,255,255,0.4); background: transparent; }
.bundle-card.featured .bundle-includes li.bundle-anchor { color: #fff; }
.bundle-card.featured .bundle-includes li.bundle-anchor::before { color: var(--cyan-400); }
.bundle-card.featured .bundle-free { background: rgba(63,193,212,0.18); color: var(--cyan-400); }
.bundle-card.featured .bundle-pricing { background: rgba(63,193,212,0.12); color: var(--cyan-400); }
.bundle-card.featured .bundle-price-main { color: #fff; }
.bundle-card.featured .bundle-price-sub { color: rgba(255,255,255,0.4); }
.bundle-card.featured .bundle-btn {
  background: var(--cyan-400);
  color: #06303a;
  border-color: transparent;
}
.bundle-card.featured .bundle-btn:hover { background: var(--cyan-300); color: #06303a; }
.bundle-card.featured .btn-primary { background: var(--cyan-400); color: #06303a; }
.bundle-card.featured .btn-primary:hover { background: var(--cyan-300); }
.bundle-card .bundle-flag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(63,193,212,0.18);
  color: var(--cyan-400);
  margin-bottom: 6px;
}

.support-line {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin: 48px auto 0;
  max-width: 640px;
  line-height: 1.55;
}

/* =========================================================
   WINDOW SECTION (urgency statement right after hero)
   ========================================================= */
.window-section {
  background: var(--bg-surface);
  padding: 96px 0 88px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.window-inner {
  max-width: 880px;
}
.window-section .eyebrow {
  display: block;
  margin-bottom: 22px;
}
.window-h {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 14px;
  text-wrap: balance;
}
.window-subline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-700);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-wrap: balance;
}
.window-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 720px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.window-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .window-section { padding: 64px 0 56px; }
  .window-body { font-size: 16px; }
  .window-ctas .btn-lg { padding: 14px 22px; font-size: 15px; }
}

/* =========================================================
   STATS STRIP (dark, full-width, between hero and GEO anchor)
   ========================================================= */
.stats-strip {
  background: var(--deep-teal-800);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}
.stats-strip-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats-strip-item:last-child { border-right: 0; }
.stats-strip-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 600;
  color: var(--cyan-400);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}
.stats-strip-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
@media (max-width: 960px) {
  .stats-strip-row { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-item:nth-child(2) { border-right: 0; }
  .stats-strip-item:nth-child(1),
  .stats-strip-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 640px) {
  .stats-strip-row { grid-template-columns: 1fr; }
  .stats-strip-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 22px 24px; }
  .stats-strip-item:last-child { border-bottom: 0; }
}

/* =========================================================
   GEO ANCHOR SECTION (homepage, between hero and services)
   ========================================================= */
.anchor-section { padding: 88px 0 96px; }
.anchor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 25% 15%, rgba(63,193,212,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.anchor-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin: 0 0 32px;
}

.anchor-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

.anchor-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #fff;
  margin: 0 0 14px;
  text-wrap: balance;
}
.anchor-subline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.anchor-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 36px;
  text-wrap: pretty;
  max-width: 540px;
}

/* Stats strip */
.anchor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  margin-bottom: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.anchor-stat-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
  font-weight: 300;
  color: var(--cyan-400);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums lining-nums;
}
.anchor-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Urgency block — teal pill */
.anchor-urgency {
  background: var(--teal-700);
  border-radius: 14px;
  padding: 20px 26px;
  margin-bottom: 32px;
  border: 1px solid rgba(63,193,212,0.18);
  box-shadow: 0 18px 40px -22px rgba(63,193,212,0.35);
}
.anchor-urgency p {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* Anchor CTAs */
.anchor-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.anchor-section .btn-primary { background: var(--cyan-400); color: #06303a; }
.anchor-section .btn-primary:hover { background: var(--cyan-300); }
/* White-filled CTA used on the dark anchor section (primary) */
.btn-light-on-dark {
  background: #fff;
  color: var(--teal-700);
  border: 1.5px solid #fff;
}
.btn-light-on-dark:hover {
  background: var(--cyan-100);
  border-color: var(--cyan-100);
  color: var(--teal-800);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
}

/* Right column cards */
.anchor-right { display: flex; flex-direction: column; gap: 16px; }
.anchor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 22px 24px;
}
.anchor-card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin: 0 0 14px;
  line-height: 1.45;
}
.anchor-card-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  margin: 0;
  text-wrap: balance;
}
.anchor-card-business {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.anchor-card-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.anchor-card-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.anchor-card-checks li svg {
  flex: none;
  width: 18px;
  height: 18px;
  padding: 4px;
  border-radius: 999px;
  background: var(--cyan-400);
  color: #051a23;
  box-sizing: border-box;
}

/* Card variants — accent left border for the named-business / without-GEO cards */
.anchor-card-good { border-left: 3px solid var(--cyan-400); }
.anchor-card-bad  { border-left: 3px solid rgba(220,68,19,0.55); /* muted ember */ }
.anchor-card-label-muted { color: rgba(255,255,255,0.55); }
.anchor-card-business-muted {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.anchor-card-fine {
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.40);
  margin: 0;
}

/* 4-step row */
.anchor-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.anchor-step {
  padding: 0 28px;
  position: relative;
}
.anchor-step:first-child { padding-left: 0; }
.anchor-step:last-child { padding-right: 0; }
.anchor-step + .anchor-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255,255,255,0.10);
}
.anchor-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cyan-400);
  font-weight: 600;
  margin-bottom: 14px;
}
.anchor-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.anchor-step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0;
}

/* White bridge section */
.anchor-bridge {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.anchor-bridge-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 18px;
  font-weight: 400;
  text-wrap: balance;
}
.anchor-bridge-text strong { font-weight: 600; }
.anchor-bridge-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: pretty;
}
.anchor-bridge-question {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--fg-muted);
  margin: 0 0 36px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.anchor-bridge-body {
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: center;
}
.anchor-bridge-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.anchor-bridge-body p:last-child { margin-bottom: 0; }
.anchor-bridge-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  text-decoration: none;
  margin-top: 8px;
  transition: color var(--dur-fast) var(--ease-out);
}
.anchor-bridge-tag:hover { color: var(--teal-800); }

/* Anchor section — responsive */
@media (max-width: 960px) {
  .anchor-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 56px; }
  .anchor-steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; padding-top: 40px; }
  .anchor-step { padding: 0 24px; }
  .anchor-step:nth-child(odd) { padding-left: 0; }
  .anchor-step:nth-child(even) { padding-right: 0; }
  .anchor-step + .anchor-step::before { display: none; }
  .anchor-step:nth-child(2)::before,
  .anchor-step:nth-child(4)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255,255,255,0.10);
    display: block;
  }
}
@media (max-width: 640px) {
  .anchor-section { padding: 56px 0 64px; }
  .anchor-grid { gap: 40px; }
  .anchor-body { font-size: 16px; }
  .anchor-stats { grid-template-columns: 1fr; gap: 18px; padding-top: 24px; }
  .anchor-stat { padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .anchor-stat:first-child { border-top: 0; padding-top: 0; }
  .anchor-card-quote { font-size: 19px; }
  .anchor-card-business { font-size: 20px; }
  .anchor-steps { grid-template-columns: 1fr; row-gap: 0; }
  .anchor-step { padding: 24px 0 0; }
  .anchor-step:first-child { padding-top: 0; }
  .anchor-step + .anchor-step { border-top: 1px solid rgba(255,255,255,0.08); }
  .anchor-step:nth-child(2)::before,
  .anchor-step:nth-child(4)::before { display: none; }
  .anchor-bridge { padding: 56px 0; }
  .anchor-bridge-text { font-size: 22px; }
  .anchor-bridge-sub { font-size: 15px; }
}

/* ---------- Case Study ---------- */
.case-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center;
}
.case-quote {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: #fff;
  text-wrap: balance;
  margin: 0;
}
.case-quote-mark {
  color: #3FC1D4; font-size: 56px; line-height: 0;
  display: inline-block; margin-right: 2px; transform: translateY(8px);
}
.case-attr {
  margin-top: 24px; display: flex; align-items: center; gap: 14px;
}
.case-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(63, 193, 212, 0.18);
  color: #3FC1D4;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px;
}
.case-name { font-weight: 600; font-size: 14px; color: #fff; }
.case-role { font-size: 13px; color: rgba(255,255,255,0.6); }
.case-numbers {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.case-stat {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}
.case-stat-val {
  font-family: var(--font-display); font-size: 56px; line-height: 1;
  font-weight: 300; color: #3FC1D4;
  letter-spacing: -0.02em;
}
.case-stat-label { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.6); }
.case-stat-arrow { display: inline-block; margin: 0 0.15em; opacity: 0.85; }

/* Tabular figures so digits don't jitter as the count animates. */
.count { font-variant-numeric: tabular-nums; }

/* ---------- How It Works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step-num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--teal-700); font-weight: 600; letter-spacing: 0.1em;
}
.step-line {
  height: 1px; background: var(--border);
  margin-bottom: 12px;
  position: relative;
}
.step-line::before {
  content: ""; position: absolute; left: 0; top: -3px;
  width: 7px; height: 7px; border-radius: 999px; background: var(--teal-700);
}
.step h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 500; line-height: 1.2; margin: 0;
  letter-spacing: -0.01em;
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; margin: 0; }

/* ---------- CTA Section ---------- */
.cta {
  background: #051a23;
  color: var(--paper);
  padding: 128px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(63, 193, 212, 0.20) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 {
  font-family: var(--font-display); font-size: clamp(48px, 5.8vw, 76px); line-height: 1.02;
  font-weight: 500; letter-spacing: -0.03em;
  margin: 18px 0 28px; color: #fff;
  text-wrap: balance;
}
.cta p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 520px; margin: 0 auto 32px; }
.cta .btn-primary { background: #3FC1D4; color: #06303a; }
.cta .btn-primary:hover { background: #7fd6e3; }
.cta-mark { color: #FFFFFF; }
.cta-fine {
  margin-top: 20px !important;
  font-size: 13px !important;
  font-style: italic;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 0.01em;
}

/* ---------- Footer ---------- */
.footer { background: var(--bg-surface); padding: 64px 0 32px; }
.footer-slogan {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--teal-700);
  margin: 0 0 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.footer-tag { color: var(--fg-muted); font-size: 14px; line-height: 1.55; max-width: 280px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-muted); margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--fg); text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover { color: var(--teal-700); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--fg-muted);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-motto {
  font-style: italic;
  color: var(--fg-muted);
  font-size: 13px;
}

/* =========================================================
   Tablet (≤960px)
   ========================================================= */
@media (max-width: 960px) {
  .container { padding: 0 28px; }

  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero .lede { max-width: none; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; min-height: 480px; }

  .case-grid { grid-template-columns: 1fr; gap: 48px; }

  .steps { grid-template-columns: 1fr; gap: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* =========================================================
   Mobile (≤640px)
   ========================================================= */
/* Hide nav links earlier so the longer 'Get your free Marketing Audit' CTA fits. */
@media (max-width: 900px) {
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-inner { padding: 12px 0; gap: 12px; }
  .nav-brand-name { font-size: 14px; }
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 12.5px; }

  /* Hero */
  .hero { padding: 48px 0 64px; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(40px, 10vw, 56px); margin: 14px 0 18px; }
  .hero .lede { font-size: 17px; margin-bottom: 24px; }
  .hero-ctas .btn-lg { padding: 14px 22px; font-size: 15px; }
  .hero-trust { margin-top: 28px; gap: 10px 24px; }
  .hero-visual { min-height: 380px; border-radius: 22px; }
  .hero-card { left: 18px; right: 18px; bottom: 18px; padding: 14px 16px; }
  .hero-card-icon { width: 34px; height: 34px; }
  .hero-card-title { font-size: 13px; }
  .hero-card-meta { font-size: 11px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  /* Service grid */
  .service-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 20px; }

  /* Accordion services */
  .service-row-head { padding: 18px 20px; gap: 14px; }
  .service-row-text h3 { font-size: 17px; }
  .service-row-text p { font-size: 13px; }
  .service-expand-inner { padding: 0 20px 22px; padding-left: 64px; }
  .service-copy { font-size: 14px; }

  /* Bundles */
  .bundles-section { margin-top: 64px; }
  .bundle-grid { grid-template-columns: 1fr; gap: 16px; }
  .bundle-card { padding: 28px 24px; }
  .bundle-card h3 { font-size: 20px; }

  /* Case study */
  .case-quote { font-size: 22px; }
  .case-quote-mark { font-size: 44px; transform: translateY(6px); }
  .case-stat-val { font-size: 40px; }

  /* CTA */
  .cta { padding: 88px 0; }
  .cta h2 { font-size: clamp(34px, 9vw, 48px); }
  .cta p { font-size: 16px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-tag { max-width: none; }
  .footer-bottom { font-size: 12px; }
}

/* =========================================================
   SUB-PAGE COMPONENTS
   (audit, services/*, about, case-studies, pricing, thank-you)
   ========================================================= */

/* ---------- Page hero (smaller than homepage hero) ---------- */
.page-hero {
  padding: 96px 0 64px;
  text-align: center;
  position: relative;
}
.page-hero .eyebrow { display: inline-block; margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--ink-900);
  text-wrap: balance;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em {
  font-style: normal; color: #DC4413; font-weight: 300;
}
.page-hero .subhead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--deep-teal-700);
  margin: 0 0 32px;
  text-wrap: balance;
}
.page-hero .opening {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: pretty;
}
.page-hero .opening.prominent {
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-900);
}

/* ---------- Page section: standard content block ---------- */
.page-section { padding: 72px 0; }
.page-section.surface { background: var(--bg-surface); }
.page-section.ink {
  background: #051a23;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-section.ink .page-section-head h2 { color: #fff; }
.page-section.ink .page-section-head p { color: rgba(255,255,255,0.7); }
.page-section.ink .eyebrow { color: #3FC1D4; }

.page-section-head { max-width: 720px; margin: 0 auto 48px; }
.page-section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.page-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 12px 0 14px;
  color: var(--ink-900);
  text-wrap: balance;
}
.page-section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* ---------- Coverage cards grid ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.coverage-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* =========================================================
   GEO SERVICE PAGE — bespoke sections
   ========================================================= */
.geo-h2-italic { font-style: italic; }
.opening-em {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--teal-700);
  font-weight: 500;
  margin-top: 18px !important;
}
.page-hero-cta { margin-top: 28px; }

/* Urgency dark section */
.geo-urgency { padding: 88px 0 96px; }
.geo-urgency-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.geo-urgency-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #fff;
  margin: 12px 0 0;
  text-wrap: balance;
}
.geo-urgency-body {
  max-width: 720px;
  margin: 0 auto 56px;
}
.geo-urgency-body p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.geo-urgency-body p:last-child { margin-bottom: 0; }

.geo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.geo-stat-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1;
  font-weight: 300;
  color: var(--cyan-400);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums lining-nums;
}
.geo-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

/* 4-step row (GEO page) */
.geo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.geo-step { padding: 0; }
.geo-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--teal-700);
  font-weight: 600;
  margin-bottom: 14px;
}
.geo-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.geo-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* What happens after GEO body */
.geo-after-body {
  max-width: 760px;
  margin: 0 auto 56px;
}
.geo-after-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.geo-after-emphasis {
  background: var(--deep-teal-50);
  border-left: 3px solid var(--teal-700);
  padding: 18px 22px;
  border-radius: 8px;
  margin-top: 24px !important;
  font-weight: 500;
  color: var(--ink-900) !important;
}

/* Upgrade cards grid (3 cards) */
.geo-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.geo-upgrade-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.geo-upgrade-card:hover {
  border-color: var(--deep-teal-300);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(11,32,48,0.18);
}
.geo-upgrade-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--deep-teal-50);
  color: var(--deep-teal-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.geo-upgrade-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.geo-upgrade-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
.geo-upgrade-link {
  margin-top: auto;
  padding-top: 10px;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.geo-upgrade-card-featured {
  background: var(--deep-teal-700);
  border-color: transparent;
  color: #fff;
}
.geo-upgrade-card-featured h3 { color: #fff; }
.geo-upgrade-card-featured p { color: rgba(255,255,255,0.78); }
.geo-upgrade-card-featured .geo-upgrade-icon { background: rgba(63,193,212,0.18); color: var(--cyan-400); }
.geo-upgrade-card-featured .geo-upgrade-link { color: var(--cyan-400); }
.geo-upgrade-card-featured:hover { box-shadow: 0 22px 50px -16px rgba(11,32,48,0.42); }

/* Pricing card */
.geo-pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal-700);
  border-radius: 14px;
  padding: 36px 36px 32px;
  text-align: center;
  box-shadow: 0 14px 36px -16px rgba(11,32,48,0.14);
}
.geo-pricing-card .eyebrow { display: block; margin-bottom: 14px; }
.geo-pricing-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.geo-pricing-monthly {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-700);
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
}
.geo-pricing-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-wrap: pretty;
}

@media (max-width: 960px) {
  .geo-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .geo-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .geo-upgrade-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .geo-urgency { padding: 56px 0 64px; }
  .geo-steps { grid-template-columns: 1fr; gap: 28px; }
  .geo-stats { grid-template-columns: 1fr; gap: 20px; }
  .geo-after-body p { font-size: 16px; }
  .geo-pricing-card { padding: 28px 24px; }
}

/* ---------- Mission / Vision (about page) ---------- */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
}
.mission-vision-item .eyebrow { display: block; margin-bottom: 14px; }
.mission-vision-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
}
.coverage-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 30px;
  transition: all 220ms var(--ease-out);
  box-shadow: 0 2px 0 rgba(11, 32, 48, 0.02);
}
.coverage-card:hover {
  border-color: var(--deep-teal-300);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -12px rgba(11, 32, 48, 0.18);
}
.coverage-card h3 {
  font-family: var(--font-display);
  font-size: 19px; line-height: 1.25;
  font-weight: 500; letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.coverage-card p {
  margin: 0; color: var(--fg-muted);
  font-size: 15px; line-height: 1.6;
}

/* ---------- Callout (boxed paragraph with heading) ---------- */
.callout {
  background: var(--bg-surface);
  border-radius: 18px;
  padding: 40px 44px;
  max-width: 880px;
  margin: 0 auto;
}
.callout h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.callout p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
}
.callout.ink {
  background: #051a23;
  color: #fff;
}
.callout.ink h3 { color: #fff; }
.callout.ink p { color: rgba(255,255,255,0.78); }
.callout.ink .eyebrow { color: #3FC1D4; }
.callout .eyebrow { display: block; margin-bottom: 8px; }

/* ---------- Audit form ---------- */
.audit-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 44px;
  box-shadow: 0 12px 32px -16px rgba(11, 32, 48, 0.12);
}
.form-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
}
.form-group:last-of-type { margin-bottom: 28px; }
.form-label {
  font-size: 14px; font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.form-label .required { color: var(--ember-600); margin-left: 2px; }
.form-label .optional {
  color: var(--fg-muted); font-weight: 400; font-size: 13px;
  margin-left: 6px;
}
.form-input, .form-textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-900);
  transition: border-color 160ms, box-shadow 160ms;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--fg-subtle);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--deep-teal-700);
  box-shadow: var(--shadow-focus);
}
.form-textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.form-actions { display: flex; flex-direction: column; gap: 12px; }
.form-actions .btn { justify-content: center; width: 100%; }
.form-status {
  font-size: 14px; color: var(--fg-muted); text-align: center;
  min-height: 1.4em;
}
.form-status.error { color: var(--ember-700); font-weight: 500; }
.btn[disabled], .btn[aria-busy="true"] {
  opacity: 0.7; pointer-events: none;
}

/* ---------- Long-form narrative (about page, etc) ---------- */
.narrative {
  max-width: 720px;
  margin: 0 auto;
}
.narrative p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.narrative p:last-child { margin-bottom: 0; }
.narrative p strong { color: var(--ink-900); font-weight: 600; }

/* ---------- Founders block ---------- */
.founders {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.founders .eyebrow { display: block; margin-bottom: 16px; }
.founders h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.founders-names {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--deep-teal-700);
  margin: 0;
}

/* ---------- Page CTA (reuses .cta but slightly less heavy) ---------- */
.page-cta { padding: 96px 0; }

/* ---------- Thank-you page ---------- */
.thank-you {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 96px 24px;
}
.thank-you-inner { max-width: 640px; }
.thank-you-mark {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 0 30px rgba(63, 193, 212, 0.35));
}
.thank-you h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--ink-900);
}
.thank-you p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-700);
  margin: 0 0 36px;
  text-wrap: balance;
}

/* ---------- Placeholder pages (about, case-studies, pricing) ---------- */
.placeholder {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 96px 24px;
}
.placeholder-inner { max-width: 640px; }
.placeholder h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--ink-900);
}
.placeholder p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0 0 28px;
}

/* ---------- Sub-page responsive ---------- */
@media (max-width: 960px) {
  .page-hero { padding: 72px 0 48px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-grid.cols-3 { grid-template-columns: 1fr; }
  .callout { padding: 32px 32px; }
  .audit-form { padding: 32px 28px; }
  .narrative p { font-size: 17px; line-height: 1.65; }
  .mission-vision-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .page-hero { padding: 56px 0 40px; }
  .page-hero .opening { font-size: 17px; }
  .page-hero .opening.prominent { font-size: 19px; }
  .page-section { padding: 56px 0; }
  .page-section-head { margin-bottom: 36px; }
  .coverage-card { padding: 24px 24px; }
  .callout { padding: 28px 24px; border-radius: 14px; }
  .callout p { font-size: 16px; }
  .audit-form { padding: 28px 22px; border-radius: 14px; }
  .form-input, .form-textarea { font-size: 16px; padding: 12px 14px; }
  .thank-you, .placeholder { padding: 64px 20px; min-height: 60vh; }
}
