/* ============================================================
   GrowthRidge Marketing — Design System
   ============================================================ */

:root {
  /* Brand palette — pulled from the GrowthRidge logo */
  --navy-950: #071627;
  --navy-900: #0B213D;
  --navy-800: #102A4D;
  --navy-700: #163760;
  --navy-600: #1E4574;
  --navy-500: #2A5590;

  --teal-600: #0D9488;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  --teal-300: #5EEAD4;

  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-400: #4ADE80;

  --gradient-brand: linear-gradient(135deg, var(--teal-500) 0%, var(--green-500) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(20,184,166,0.12) 0%, rgba(34,197,94,0.12) 100%);
  --gradient-navy: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  --gradient-navy-radial: radial-gradient(circle at 20% 20%, rgba(45,212,191,0.18), transparent 45%), radial-gradient(circle at 80% 70%, rgba(74,222,128,0.14), transparent 45%);

  --bg: #FFFFFF;
  --bg-soft: #F5F9FC;
  --bg-soft-2: #EEF3F9;
  --bg-navy: var(--navy-900);

  --text-primary: #0B213D;
  --text-secondary: #52607A;
  --text-muted: #5A6A84;
  --text-on-dark: #EAF1F8;
  --text-on-dark-muted: #9FB2CB;

  --border: #E3EAF2;
  --border-dark: rgba(255,255,255,0.12);
  --white: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(11,33,61,0.06);
  --shadow-md: 0 8px 30px rgba(11,33,61,0.08);
  --shadow-lg: 0 20px 60px rgba(11,33,61,0.12);
  --shadow-glow: 0 0 0 1px rgba(20,184,166,0.15), 0 20px 60px rgba(20,184,166,0.15);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
svg { width: 20px; height: 20px; flex-shrink: 0; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--text-primary); }
p { line-height: 1.7; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--teal-400); color: var(--navy-950); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }
@media (max-width: 992px) { .section { padding: 88px 0; } }
@media (max-width: 640px) { .section { padding: 64px 0; } .section-tight { padding: 56px 0; } }

.section-dark { background: var(--gradient-navy); color: var(--text-on-dark); position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; inset: 0; background: var(--gradient-navy-radial); pointer-events: none; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: var(--text-on-dark-muted); }

.section-soft { background: var(--bg-soft); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--gradient-brand-soft);
  border: 1px solid rgba(20,184,166,0.25);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gradient-brand); }
.section-dark .eyebrow { color: var(--teal-300); border-color: rgba(94,234,212,0.3); background: rgba(20,184,166,0.1); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); margin-bottom: 18px; }
.section-head p { font-size: 1.125rem; color: var(--text-secondary); }
.section-dark .section-head p { color: var(--text-on-dark-muted); }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  position: relative;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s ease; }
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 10px 30px rgba(20,184,166,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,184,166,0.45); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal-500); background: var(--gradient-brand-soft); transform: translateY(-3px); }

.section-dark .btn-outline, .hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.25); }
.section-dark .btn-outline:hover, .hero .btn-outline:hover { border-color: var(--teal-300); background: rgba(255,255,255,0.06); }

.btn-white {
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 12px 22px; font-size: 14px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-header.is-scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--shadow-sm);
  height: 72px;
  border-color: var(--border);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-word { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--navy-900); letter-spacing: -0.01em; white-space: nowrap; }
.brand-word span { color: var(--teal-500); }

.main-nav { display: flex; align-items: center; gap: 0px; }
.main-nav a {
  padding: 9px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { color: var(--navy-900); background: var(--bg-soft-2); }
.main-nav a.active { color: var(--navy-900); background: var(--bg-soft-2); }


/* Joey 2026-09-19: header contrast over dark hero */
.site-header .brand-word { color: #fff; }
.site-header .brand-word span { color: var(--teal-300); }
.site-header .main-nav a { color: var(--text-on-dark-muted); }
.site-header .main-nav a:hover,
.site-header .main-nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.site-header .call-chip {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.site-header .call-chip:hover {
  border-color: var(--teal-300);
  background: rgba(255,255,255,0.08);
}
.site-header .call-chip svg { color: var(--teal-300); }
.site-header .nav-toggle {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}
.site-header .nav-toggle span { background: #fff; }

.site-header.is-scrolled .brand-word { color: var(--navy-900); }
.site-header.is-scrolled .brand-word span { color: var(--teal-500); }
.site-header.is-scrolled .main-nav a { color: var(--text-secondary); }
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.active {
  color: var(--navy-900);
  background: var(--bg-soft-2);
}
.site-header.is-scrolled .call-chip {
  color: var(--navy-900);
  border-color: var(--border);
}
.site-header.is-scrolled .call-chip:hover {
  border-color: var(--teal-500);
  background: var(--gradient-brand-soft);
}
.site-header.is-scrolled .call-chip svg { color: var(--teal-600); }
.site-header.is-scrolled .nav-toggle {
  background: #fff;
  border-color: var(--border);
}
.site-header.is-scrolled .nav-toggle span { background: var(--navy-900); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.call-chip {
  display: flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 13px; color: var(--navy-900);
  padding: 9px 12px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease;
}
.call-chip:hover { border-color: var(--teal-500); background: var(--gradient-brand-soft); }
.call-chip svg { width: 16px; height: 16px; color: var(--teal-600); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-900); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 998;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-nav a { padding: 16px 6px; font-size: 1.15rem; font-weight: 700; border-bottom: 1px solid var(--border); color: var(--navy-900); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-call { margin-top: 12px; display:flex; align-items:center; gap:10px; font-weight:700; color: var(--teal-600); font-size: 1rem; }

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .call-chip { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .header-cta { display: none; }
}
@media (min-width: 1181px) { .mobile-nav { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 100px;
  background: var(--gradient-navy);
  overflow: hidden;
  color: var(--text-on-dark);
}
.hero::before { content: ''; position: absolute; inset: 0; background: var(--gradient-navy-radial); }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 992px) { .hero-layout { grid-template-columns: 1fr; } .hero-visual { order: -1; } }

.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: var(--text-on-dark-muted); max-width: 560px; margin-bottom: 36px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-dark); }
.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-item strong { font-family: var(--font-heading); font-size: 1.6rem; color: #fff; }
.hero-proof-item span { font-size: 13px; color: var(--text-on-dark-muted); margin-top: 2px; }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-card img { width: 100%; height: 460px; object-fit: cover; }
.hero-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,33,61,0) 40%, rgba(11,33,61,0.55) 100%); }

.floating-chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.floating-chip .chip-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand-soft); color: var(--teal-600); flex-shrink: 0;
}
.floating-chip .chip-icon svg { width: 20px; height: 20px; }
.floating-chip strong { display: block; font-size: 1.1rem; color: var(--navy-900); font-family: var(--font-heading); }
.floating-chip span { font-size: 12px; color: var(--text-secondary); }
.chip-top-right { top: -24px; right: -20px; }
.chip-bottom-left { bottom: -22px; left: -24px; animation-delay: 1.2s; }
@media (max-width: 560px) { .floating-chip { padding: 10px 14px; } .chip-top-right { right: 6px; top: -16px; } .chip-bottom-left { left: 6px; bottom: -16px; } }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.glow-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; pointer-events: none; }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 56px 0; border-bottom: 1px solid var(--border); }
.logo-strip p { text-align: center; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #4A5A74; margin-bottom: 32px; }
.logo-strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.logo-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: var(--bg-soft);
  font-weight: 700; font-size: 14px; color: var(--text-secondary);
}
.logo-pill svg { width: 18px; height: 18px; color: var(--teal-500); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(20,184,166,0.35); }

.service-card .icon-tile {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(20,184,166,0.3);
}
.service-card .icon-tile svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 0.98rem; margin-bottom: 18px; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--teal-600); }
.service-card .card-link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

.card-number {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-heading); font-weight: 800; font-size: 2.2rem;
  color: var(--border); z-index: 0;
}

/* ---------- Why choose us ---------- */
.reason-item { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.reason-item:last-child { border-bottom: none; }
.reason-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: var(--gradient-brand-soft); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem;
}
.reason-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.reason-item p { color: var(--text-secondary); font-size: 0.98rem; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media (max-width: 992px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
}
.process-step .step-index {
  font-family: var(--font-heading); font-weight: 800; font-size: 3rem;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 20px; display: block;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: var(--text-secondary); font-size: 0.95rem; }
.process-connector { position: absolute; top: 50%; right: -12px; width: 24px; height: 2px; background: var(--border); display: none; }
@media (min-width: 993px) { .process-step:not(:last-child) .process-connector { display: block; } }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 992px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { text-align: center; padding: 12px; }
.stat-value {
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff; display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-value .suffix { font-size: 1.4rem; color: var(--teal-300); }
.stat-label { margin-top: 10px; font-size: 14px; color: var(--text-on-dark-muted); font-weight: 600; }


/* ---------- AI section ---------- */
.ai-feature-list { display: flex; flex-direction: column; gap: 22px; }
.ai-feature { display: flex; gap: 18px; align-items: flex-start; }
.ai-feature .icon-tile { width: 46px; height: 46px; border-radius: 12px; background: var(--gradient-brand-soft); color: var(--teal-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-feature .icon-tile svg { width: 22px; height: 22px; }
.ai-feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.ai-feature p { color: var(--text-secondary); font-size: 0.96rem; }

.ai-visual-card {
  border-radius: var(--radius-xl);
  background: var(--gradient-navy);
  padding: 44px;
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: center;
}
.ai-visual-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-navy-radial); }
.ai-pulse-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ai-pulse-node {
  aspect-ratio: 1; border-radius: 16px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}
.ai-pulse-node svg { width: 24px; height: 24px; color: var(--teal-300); }
.ai-pulse-node.lit { background: var(--gradient-brand-soft); border-color: rgba(45,212,191,0.4); animation: pulseGlow 2.4s ease-in-out infinite; }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(45,212,191,0.3); } 50% { box-shadow: 0 0 0 10px rgba(45,212,191,0); } }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-xl);
  background: var(--gradient-navy);
  padding: 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: var(--gradient-navy-radial); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.cta-banner p { color: var(--text-on-dark-muted); font-size: 1.1rem; max-width: 560px; margin-inline: auto; margin-bottom: 36px; }
@media (max-width: 640px) { .cta-banner { padding: 48px 28px; } }
.cta-banner .btn-row { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 26px 4px; background: none; border: none; text-align: left;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--text-primary);
}
.faq-question .icon { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform .3s ease, background .3s ease, border-color .3s ease; }
.faq-question .icon svg { width: 14px; height: 14px; transition: transform .3s ease; }
.faq-item.is-open .faq-question .icon { background: var(--gradient-brand); border-color: transparent; color: #fff; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 44px 26px 4px; color: var(--text-secondary); font-size: 0.98rem; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 44px; box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.field label .opt { color: var(--text-muted); font-weight: 500; }
.field input, .field select, .field textarea {
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--bg-soft); font-size: 15px; transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 480px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 12px; background: var(--bg-soft);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.checkbox-item:has(input:checked) { border-color: var(--teal-500); background: var(--gradient-brand-soft); }
.checkbox-item input { accent-color: var(--teal-500); width: 16px; height: 16px; flex-shrink: 0; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.is-visible { display: block; }
.form-success .icon-tile { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success .icon-tile svg { width: 30px; height: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--text-on-dark-muted); padding: 88px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--border-dark); }
@media (max-width: 992px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-word { color: #fff; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease; }
.footer-social a:hover { background: var(--gradient-brand); border-color: transparent; }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h3 { color: #fff; font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--teal-300); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--teal-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 22px; }

/* ---------- Misc page bits ---------- */
.page-hero { padding: calc(var(--header-h) + 56px) 0 80px; background: var(--gradient-navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--gradient-navy-radial); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.1rem); max-width: 780px; }
.page-hero p { color: var(--text-on-dark-muted); font-size: 1.1rem; max-width: 620px; margin-top: 20px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-on-dark-muted); margin-bottom: 26px; }
.breadcrumb a:hover { color: #fff; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split img, .split .media-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split .media-frame img { width: 100%; height: 100%; object-fit: cover; }

.checklist { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-secondary); }
.checklist svg { width: 20px; height: 20px; color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }

.pill-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: var(--radius-pill); background: var(--bg-soft-2); border: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--text-secondary); margin: 4px 8px 4px 0;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
.reveal-delay-4.in-view { transition-delay: .32s; }

.placeholder-box {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  color: var(--text-muted);
  background: var(--bg-soft);
}
.placeholder-box svg { width: 30px; height: 30px; margin: 0 auto 14px; color: var(--text-muted); }
.placeholder-box strong { display: block; color: var(--text-secondary); margin-bottom: 6px; font-size: 14.5px; }
.placeholder-box span { font-size: 13px; }

.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-card .stars { display: flex; gap: 4px; margin-bottom: 18px; color: var(--green-500); }
.testimonial-card .stars svg { width: 16px; height: 16px; }
.testimonial-card p.quote { font-size: 15px; color: var(--text-secondary); margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-brand-soft); color: var(--teal-600); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; }
.testimonial-person strong { display: block; font-size: 14px; }
.testimonial-person span { font-size: 12.5px; color: var(--text-muted); }

/* Value / benefit two-col band */
.value-band { background: var(--bg-soft); border-radius: var(--radius-xl); padding: 56px; }
@media (max-width: 640px) { .value-band { padding: 32px 24px; } }

.divider-glow { height: 1px; background: linear-gradient(90deg, transparent, rgba(20,184,166,0.4), transparent); margin: 0; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }

.scroll-top-fade { background: linear-gradient(180deg, var(--bg-soft), transparent); }

/* ============================================================
   SEO / Lighthouse polish (a11y, CLS, motion)
   ============================================================ */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--teal-500);
  color: #061018;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.brand picture { display: flex; align-items: center; line-height: 0; }
.brand img { height: 42px; width: auto; aspect-ratio: 113 / 168; }

:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
}
.btn:focus-visible,
.nav-toggle:focus-visible,
.main-nav a:focus-visible,
.mobile-nav a:focus-visible {
  outline: 3px solid var(--teal-300);
  outline-offset: 3px;
}

#main-content:focus { outline: none; }

.hero-card picture,
.split .media-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-card picture img,
.split .media-frame picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
