/* ============================================================
   Growth Assurance — Apple dark liquid-glass landing page
   Mobile-first: base styles are the 375px layout; wider layouts
   are min-width enhancements at 768px and 1200px.
   ============================================================ */

:root {
  color-scheme: dark;

  /* Background ramp — near-black, never #000 */
  --bg-0: #0b0d14;
  --bg-1: #121624;
  --bg-2: #1a2032;

  /* Text ramp — near-white, never #fff */
  --text-1: #f2f4f8;
  --text-hi: #ccd4e3;   /* secondary text over imagery (hero) — brighter than text-2 */
  --text-2: #a9b1c2;
  --text-3: #6f7689;

  /* Brand — publisher fallback reads --brand-mid then --brand */
  --brand: #4da3ff;
  --brand-mid: #77a9ff;
  --brand-2: #a06bff;
  --ok: #3ddc97;
  --warn: #fbbf24;   /* star ratings */
  --danger: #f87171; /* the fake-reviews stamp */

  --accent:       var(--brand);
  --accent-hover: #74b7ff;
  --accent-on:    #081018;
  --grad: linear-gradient(120deg, #4da3ff 10%, #7f8bff 55%, #a06bff 100%);

  /* Glass material */
  --glass-bg:        rgba(255, 255, 255, 0.06);
  --glass-bg-strong: rgba(255, 255, 255, 0.10);
  --glass-border:    rgba(255, 255, 255, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.18);
  --glass-blur:        16px;
  --glass-blur-strong: 24px;

  /* Faux-glass card (no backdrop blur — cheap on mobile GPUs) */
  --card-bg: rgba(255, 255, 255, 0.045);

  /* Radius scale */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px;

  /* Spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-6: 24px; --s-8: 32px; --s-12: 48px; --s-16: 64px; --s-24: 96px;

  /* Shadows — one downward light source */
  --shadow-card:
    inset 0 1px 0 var(--glass-highlight),
    0 4px 12px rgba(0, 0, 0, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-float:
    inset 0 1px 0 var(--glass-highlight),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 24px 64px rgba(0, 0, 0, 0.45);

  --focus-ring: 0 0 0 2px var(--bg-0), 0 0 0 4px var(--accent);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;

  /* Business Hub injected-widget theming (page-builder guide §3b):
     the live lead form / map / reviews widgets read these at publish
     so they render in this page's liquid-glass language. */
  --bh-w-radius: var(--r-md);
  --bh-w-surface: rgba(11, 13, 20, 0.45);   /* matches .input fill on the glass form card */
  --bh-w-border: var(--glass-border);
  --bh-w-muted: var(--text-2);
  --bh-w-error: var(--danger);
  --bh-w-star: var(--warn);
  --bh-w-brand: var(--brand);
  --bh-w-brand-ink: var(--accent-on);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg-0);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(77, 163, 255, 0.35); }

img, svg { display: block; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: var(--s-4);
  z-index: 100;
  padding: var(--s-3) var(--s-4);
  background: var(--bg-2);
  color: var(--text-1);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus-visible { top: var(--s-4); outline: none; box-shadow: var(--focus-ring); }

/* ---------- Ambient backdrop ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 700px at 82% -10%, rgba(77, 163, 255, 0.10), transparent 60%),
    radial-gradient(900px 600px at 6% 112%, rgba(160, 107, 255, 0.08), transparent 60%),
    var(--bg-0);
}
.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Glass primitives ---------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  backdrop-filter: blur(var(--glass-blur)) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
}

/* Faux glass: same material story, no live blur (repeated cards) */
.card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: var(--s-6);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: var(--bg-1); }
}
@media (prefers-reduced-transparency: reduce) {
  .glass { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--bg-1); }
}

/* ---------- Layout ---------- */
.container { width: min(1160px, 92vw); margin: 0 auto; }
.container-narrow { width: min(860px, 92vw); }

.section { padding: var(--s-16) 0; position: relative; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--s-8); }
.section-head > p:not(.eyebrow) { color: var(--text-2); font-size: 17px; margin-top: var(--s-3); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: var(--s-3);
}

h1, h2, h3 { font-weight: 650; letter-spacing: -0.025em; line-height: 1.1; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 7.2vw, 4.2rem); letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h3 { font-size: 18px; letter-spacing: -0.01em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: var(--s-2) var(--s-6);
  border: none;
  border-radius: var(--r-md);
  font: 600 16px/1.2 var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease,
              box-shadow 150ms ease, transform 120ms ease, filter 120ms ease;
}
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--grad);
  color: var(--accent-on);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 24px rgba(77, 130, 255, 0.28);
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 32px rgba(77, 130, 255, 0.38); }
.btn-primary:focus-visible { box-shadow: var(--focus-ring), 0 8px 24px rgba(77, 130, 255, 0.28); }
.btn-primary:active { filter: brightness(0.95); transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.20); }
.btn-ghost:active { background: rgba(255, 255, 255, 0.03); }

.btn-lg { min-height: 52px; padding: var(--s-3) var(--s-8); border-radius: var(--r-lg); }
.btn-sm { min-height: 40px; padding: var(--s-1) var(--s-4); font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: fixed;
  top: var(--s-3);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 var(--s-3);
}
.nav {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-xl);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  position: relative;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: var(--bg-2); }
}
@media (prefers-reduced-transparency: reduce) {
  .nav { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--bg-2); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  color: var(--text-1);
  font-weight: 650;
  font-size: 17px;
  letter-spacing: -0.01em;
  border-radius: var(--r-sm);
}
.brand:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.brand em { font-style: normal; color: var(--brand-mid); }

.nav-links { display: none; }
.nav-check { position: absolute; opacity: 0; pointer-events: none; }

.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background-color 120ms ease;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.nav-toggle:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-1);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-check:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-check:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-check:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1199px) {
  .nav-check:checked ~ .nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--s-1);
    position: absolute;
    top: calc(100% + var(--s-2));
    left: 0;
    right: 0;
    padding: var(--s-3);
    background: var(--bg-2);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-float);
  }
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  transition: color 120ms ease, background-color 120ms ease;
}
.nav-links a:hover { color: var(--text-1); background: rgba(255, 255, 255, 0.06); }
.nav-links a:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.nav-links a:active { background: rgba(255, 255, 255, 0.04); }
.nav-links a.menu-cta { color: var(--brand-mid); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 128px 0 var(--s-12);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 13, 20, 0.50) 0%, rgba(11, 13, 20, 0.18) 50%, rgba(11, 13, 20, 0.04) 72%),
    linear-gradient(to bottom, rgba(11, 13, 20, 0.15) 55%, var(--bg-0) 98%);
}

.hero-grid { display: grid; gap: var(--s-12); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  border-radius: 999px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-hi);
  margin-bottom: var(--s-6);
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px rgba(61, 220, 151, 0.8);
}

.hero-sub {
  color: var(--text-hi);
  font-size: 17px;
  max-width: 34em;
  margin-top: var(--s-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-8);
}

.micro-trust {
  color: var(--text-2);
  font-size: 13px;
  margin-top: var(--s-4);
}
.hero .micro-trust { color: var(--text-hi); }

/* Hero dashboard visual — margins reserve room for the floating chips */
.hero-visual { position: relative; max-width: 460px; margin: var(--s-16) 0; }

.hero-card {
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero-card-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--ok);
  padding: var(--s-1) var(--s-3);
  border-radius: 999px;
  background: rgba(61, 220, 151, 0.10);
  border: 1px solid rgba(61, 220, 151, 0.25);
}
.badge-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

.hero-metric { display: block; }
.metric-label { display: block; font-size: 13px; color: var(--text-2); }
.metric-row { display: flex; align-items: baseline; gap: var(--s-3); margin-top: var(--s-1); }
.metric-value { font-size: 44px; font-weight: 650; letter-spacing: -0.02em; line-height: 1; }
.metric-target { font-size: 13px; color: var(--text-2); }
.metric-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: var(--s-4);
  overflow: hidden;
}
.metric-bar-fill {
  width: 84%;
  height: 100%;
  border-radius: 3px;
  background: var(--grad);
}
html.js .metric-bar-fill { transform-origin: left; animation: fill-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.5s; }
@keyframes fill-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.metric-status {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-3);
  font-size: 13px;
  font-weight: 600;
  color: var(--ok);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--glass-border);
}
.split-num { display: block; font-size: 24px; font-weight: 650; letter-spacing: -0.01em; }
.split-label { display: block; font-size: 13px; color: var(--text-2); }

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
}
.hero-chip-1 { top: -56px; right: -8px; }
.hero-chip-2 { bottom: -56px; left: -8px; }
html.js .hero-chip { animation: chip-float 7s ease-in-out infinite; }
html.js .hero-chip-2 { animation-delay: 3.5s; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  flex: none;
}
.chip-icon-call { background: rgba(77, 163, 255, 0.15); color: var(--brand-mid); }
.chip-icon-shield { background: rgba(61, 220, 151, 0.12); color: var(--ok); }
.chip-text { display: flex; flex-direction: column; line-height: 1.35; }
.chip-text strong { font-size: 14px; font-weight: 600; }
.chip-text span { font-size: 12px; color: var(--text-2); }

/* Proof band */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  margin-top: var(--s-16);
}
.stat { display: flex; flex-direction: column-reverse; text-align: center; }
.stat-num { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 650; letter-spacing: -0.02em; line-height: 1.15; }
.stat-label { font-size: 13px; color: var(--text-2); margin-top: var(--s-1); }

/* ---------- Card grids ---------- */
.card-grid { display: grid; gap: var(--s-4); }

.feature { transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), background-color 250ms ease, border-color 250ms ease; }
.feature:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.18); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(77, 163, 255, 0.12);
  color: var(--brand-mid);
  margin-bottom: var(--s-4);
}
.feature h3 { margin-bottom: var(--s-2); }
.feature p { color: var(--text-2); font-size: 15px; }

/* Steps */
.steps { list-style: none; counter-reset: step; }
.step { position: relative; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 650;
  color: var(--text-1);
  background:
    linear-gradient(var(--bg-1), var(--bg-1)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  margin-bottom: var(--s-4);
}
.step h3 { margin-bottom: var(--s-2); }
.step p { color: var(--text-2); font-size: 15px; }

/* ---------- Why-no-contracts logic ---------- */
.logic-grid { display: grid; gap: var(--s-4); }

.logic-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.logic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  flex: none;
}
.logic-icon-lock { background: rgba(255, 255, 255, 0.07); color: var(--text-2); }
.logic-icon-target { background: rgba(77, 163, 255, 0.12); color: var(--brand-mid); }

.logic-card-ga {
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(19, 23, 36, 0.92), rgba(19, 23, 36, 0.92)) padding-box,
    var(--grad) border-box;
}

.logic-steps {
  list-style: none;
  counter-reset: logic;
  position: relative;
  display: grid;
  gap: var(--s-4);
}
.logic-steps::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: rgba(255, 255, 255, 0.10);
}
.logic-steps li {
  counter-increment: logic;
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  color: var(--text-2);
}
.logic-steps li::before {
  content: counter(logic);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 650;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  color: var(--text-2);
}
.logic-steps-ga li { color: var(--text-1); }
.logic-steps-ga li::before {
  background: var(--grad);
  border: none;
  color: var(--accent-on);
}

.logic-callout {
  margin-top: var(--s-4);
  text-align: center;
  padding: var(--s-8);
}
.logic-callout p { color: var(--text-2); font-size: 15px; max-width: 52em; margin: 0 auto; }
.logic-callout strong { color: var(--text-1); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; gap: var(--s-4); }

.pricing-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: var(--s-8);
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(19, 23, 36, 0.92), rgba(19, 23, 36, 0.92)) padding-box,
    var(--grad) border-box;
}
.price-figure { display: flex; align-items: baseline; gap: var(--s-3); }
.price-num { font-size: 72px; font-weight: 650; letter-spacing: -0.03em; line-height: 1; }
.price-of { font-size: 17px; color: var(--text-2); }
.price-desc { color: var(--text-2); margin-top: var(--s-4); }
.price-proof { text-align: center; font-size: 13px; color: var(--text-2); margin-top: var(--s-4); }
.price-note { text-align: center; font-size: 13px; color: var(--text-2); margin-top: var(--s-2); }

.check-list { list-style: none; margin: var(--s-6) 0; display: grid; gap: var(--s-3); }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--text-1);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(61, 220, 151, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233ddc97' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

.fit-card h3 { margin-bottom: var(--s-2); }
.fit-card > p { color: var(--text-2); font-size: 15px; }
.fit-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--glass-border);
}
.fit-cta span { color: var(--text-2); font-size: 15px; }
.fit-cta .btn { white-space: nowrap; }

/* ---------- Compare ---------- */
.compare {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.compare-row.compare-head { display: none; }
.compare-row { padding: var(--s-4); border-top: 1px solid rgba(255, 255, 255, 0.07); display: grid; gap: var(--s-3); }
.compare-row:first-child, .compare-head + .compare-row { border-top: none; }
.c-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.c-cell { font-size: 15px; color: var(--text-2); }
.c-cell::before {
  content: attr(data-opt);
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 2px;
}
.c-cell.c-ga { color: var(--text-1); }
.c-cell.c-ga::before { color: var(--brand-mid); }
.c-sub { display: block; font-size: 13px; font-weight: 400; color: var(--text-2); }
.ga-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-on);
  background: var(--grad);
  border-radius: 999px;
  padding: 2px 10px;
  margin-top: var(--s-1);
}

.compare-callout {
  margin-top: var(--s-4);
  text-align: center;
  padding: var(--s-8);
}
.compare-callout h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); margin-bottom: var(--s-3); }
.compare-callout p { color: var(--text-2); font-size: 15px; max-width: 52em; margin: 0 auto; }

.compare-cta { text-align: center; margin-top: var(--s-8); }
.compare-cta > p { color: var(--text-2); margin-bottom: var(--s-4); }

/* ---------- Real proof (anti-fake-reviews) ---------- */
.proof-grid { display: grid; gap: var(--s-8); margin-bottom: var(--s-4); }

.proof-fakes {
  position: relative;
  display: grid;
  gap: var(--s-4);
  padding: var(--s-2);
}
.fake-card { padding: var(--s-4) var(--s-6); opacity: 0.7; }
.fake-stars { color: var(--warn); font-size: 14px; letter-spacing: 3px; }
.fake-card blockquote { color: var(--text-1); font-size: 15px; margin-top: var(--s-2); }
.fake-card figcaption { color: var(--text-2); font-size: 13px; margin-top: var(--s-2); }
.fake-1 { transform: rotate(-2.5deg); }
.fake-2 { transform: rotate(1.5deg); }
.fake-3 { transform: rotate(-1.2deg); }
.fake-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  padding: var(--s-2) var(--s-4);
  border: 2px solid var(--danger);
  border-radius: var(--r-sm);
  background: rgba(11, 13, 20, 0.6);
  color: var(--danger);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.proof-points { display: grid; gap: var(--s-4); align-content: center; }
.proof-points p { color: var(--text-2); font-size: 16px; }
.proof-points strong { display: block; color: var(--text-1); font-size: 17px; margin-bottom: var(--s-1); }

.proof-callout { text-align: center; padding: var(--s-8); }
.proof-callout p { color: var(--text-2); font-size: 16px; max-width: 54em; margin: 0 auto; }
.proof-callout strong { color: var(--text-1); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: var(--s-3); }
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-6);
  font-size: 16px;
  font-weight: 600;
  transition: background-color 120ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255, 255, 255, 0.04); }
.faq-item summary:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--accent); }
.faq-chevron {
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: rotate(45deg);
  transition: transform 200ms ease;
  margin-top: -4px;
}
.faq-item[open] .faq-chevron { transform: rotate(225deg); margin-top: 4px; }
.faq-item p {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--text-2);
  font-size: 15px;
}

/* ---------- Lead form section ---------- */
.section-cta { overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: -1; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-0) 0%, rgba(11, 13, 20, 0.25) 30%, rgba(11, 13, 20, 0.25) 70%, var(--bg-0) 100%);
}

.form-card {
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
.form-card .section-head { margin-bottom: var(--s-6); }

.form-row { display: grid; gap: var(--s-4); }
.form-field { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); }
.form-field label { font-size: 14px; font-weight: 600; }
.optional { color: var(--text-2); font-weight: 400; }

.input {
  width: 100%;
  min-height: 48px;
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  background: rgba(11, 13, 20, 0.45);
  color: var(--text-1);
  font: 400 16px/1.4 var(--font);
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}
.input::placeholder { color: var(--text-3); }
.input:hover { border-color: rgba(255, 255, 255, 0.20); }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.22); }
.input:disabled { opacity: 0.45; cursor: not-allowed; }
textarea.input { resize: vertical; min-height: 88px; }

select.input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9b1c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}

.lead-form .btn-block { margin-top: var(--s-2); }

.form-card .micro-trust { text-align: center; margin-top: var(--s-4); }
.form-alt { text-align: center; font-size: 14px; color: var(--text-2); margin-top: var(--s-3); }
.form-alt a { color: var(--brand-mid); text-decoration: none; font-weight: 600; border-radius: var(--r-sm); }
.form-alt a:hover { color: var(--accent-hover); text-decoration: underline; }
.form-alt a:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* ---------- Visit / map ---------- */
.visit-grid { display: grid; gap: var(--s-4); }

.map-mock {
  min-height: 340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: var(--text-3);
  font-size: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--card-bg);
  background-size: 32px 32px, 32px 32px, auto;
}

.visit-card {
  border-radius: var(--r-xl);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.visit-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.visit-flag {
  font-size: 13px;
  color: var(--text-2);
  padding: var(--s-1) var(--s-3);
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--card-bg);
  white-space: nowrap;
}
.visit-rows { list-style: none; display: grid; gap: var(--s-4); }
.visit-rows li { display: flex; gap: var(--s-3); align-items: flex-start; }
.visit-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(77, 163, 255, 0.12);
  color: var(--brand-mid);
}
.visit-rows address { font-style: normal; }
.visit-rows strong { display: block; font-size: 15px; font-weight: 600; }
.visit-rows li > div > span,
.visit-rows li > address > span { display: block; font-size: 13px; color: var(--text-2); }
.visit-rows strong a { color: var(--text-1); text-decoration: none; border-radius: var(--r-sm); }
.visit-rows strong a:hover { color: var(--brand-mid); }
.visit-rows strong a:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.visit-rows strong a span { display: inline; font-size: inherit; color: inherit; }
.visit-cta {
  margin-top: auto;
  border-top: 1px solid var(--glass-border);
  padding-top: var(--s-6);
  display: grid;
  gap: var(--s-3);
}
.visit-cta p { font-size: 14px; color: var(--text-2); text-align: center; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--s-12) 0 var(--s-8);
  margin-top: var(--s-8);
}
.footer-grid { display: grid; gap: var(--s-8); }
.footer-brand p { color: var(--text-2); font-size: 14px; margin-top: var(--s-4); }
.footer-col h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--s-3);
}
.footer-col p { color: var(--text-2); font-size: 14px; }
.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: 14px;
  text-decoration: none;
  padding: var(--s-1) 0;
  border-radius: var(--r-sm);
  transition: color 120ms ease;
}
.footer-col a:hover { color: var(--text-1); }
.footer-col a:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.footer-bottom {
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.footer-bottom p { color: var(--text-3); font-size: 13px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.footer-legal a {
  color: var(--text-2);
  font-size: 13px;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: color 120ms ease;
}
.footer-legal a:hover { color: var(--text-1); text-decoration: underline; }
.footer-legal a:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-nav { justify-content: space-between; }
.legal-main { padding: 152px 0 var(--s-16); }
.legal-main h1 { font-size: clamp(2rem, 5vw, 2.75rem); margin-bottom: var(--s-2); }
.legal-updated { color: var(--text-2); font-size: 14px; margin-bottom: var(--s-8); }
.legal-main h2 { font-size: 20px; margin: var(--s-8) 0 var(--s-3); }
.legal-main p { color: var(--text-2); font-size: 15px; }
.legal-main p + p { margin-top: var(--s-3); }
.legal-main strong { color: var(--text-1); }
.legal-main a { color: var(--brand-mid); text-decoration: none; border-radius: var(--r-sm); }
.legal-main a:hover { color: var(--accent-hover); text-decoration: underline; }
.legal-main a:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.legal-footer { margin-top: 0; }
.legal-footer .footer-bottom { margin-top: 0; border-top: none; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: var(--s-3);
  left: var(--s-3);
  right: var(--s-3);
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-2);
  padding: var(--s-2);
  border-radius: var(--r-lg);
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), opacity 250ms ease,
              visibility 0s linear 0s;
}
html.js .sticky-cta:not(.visible) {
  transform: translateY(calc(100% + 16px));
  opacity: 0;
  visibility: hidden;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), opacity 250ms ease,
              visibility 0s linear 250ms;
}

/* ---------- Reveal on scroll (JS-gated: content always visible without JS) ---------- */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 550ms ease, transform 550ms cubic-bezier(0.22, 1, 0.36, 1); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .d-1 { transition-delay: 80ms; }
html.js .d-2 { transition-delay: 160ms; }
html.js .d-3 { transition-delay: 240ms; }
html.js .d-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .hero-chip, html.js .metric-bar-fill { animation: none; }
  .btn, .feature { transition: none; }
}

/* ============================================================
   Tablet: 768px+
   ============================================================ */
@media (min-width: 768px) {
  .hero { padding-top: 152px; }

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

  .stats { grid-template-columns: repeat(4, 1fr); }

  .pricing-grid { grid-template-columns: 3fr 2fr; align-items: start; }

  .logic-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }

  .proof-grid { grid-template-columns: 5fr 7fr; align-items: center; gap: var(--s-12); }

  .form-row { grid-template-columns: 1fr 1fr; }
  .form-card { padding: var(--s-8); }

  .visit-grid { grid-template-columns: 3fr 2fr; align-items: stretch; }

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

  .sticky-cta { display: none; }

  /* Compare becomes a table */
  .compare-row.compare-head { display: grid; }
  .compare-row { grid-template-columns: 140px 1fr 1fr; gap: var(--s-6); padding: var(--s-4) var(--s-6); align-items: center; }
  .compare-row.compare-head { padding: var(--s-6); align-items: end; }
  .compare-head .c-cell { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-1); }
  .compare-head strong { font-size: 16px; }
  .c-cell::before { display: none; }
  .c-label { align-self: center; }

  .nav-cta { display: flex; align-items: center; gap: var(--s-3); }
  /* Toggle sits before #navLinks in the DOM for focus order; keep it visually last */
  .nav-toggle { order: 10; }
  .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: var(--s-2) var(--s-3);
    border-radius: var(--r-md);
    transition: color 120ms ease, background-color 120ms ease;
  }
  .nav-phone:hover { color: var(--text-1); background: rgba(255, 255, 255, 0.06); }
  .nav-phone:focus-visible { outline: none; box-shadow: var(--focus-ring); }
}

/* ============================================================
   Desktop: 1200px+
   ============================================================ */
@media (min-width: 1200px) {
  .section { padding: var(--s-24) 0; }

  .hero { padding: 176px 0 var(--s-16); }
  .hero-grid { grid-template-columns: 7fr 5fr; align-items: center; gap: var(--s-16); }
  .hero-visual { justify-self: end; width: 100%; }

  .card-grid { gap: var(--s-6); }
  .card-grid.four { grid-template-columns: repeat(4, 1fr); }

  .pricing-card { padding: var(--s-12); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: var(--s-1);
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .nav-links a { padding: var(--s-2) var(--s-3); font-size: 14px; }
  .mobile-only { display: none !important; }
  .nav-toggle { display: none; }
  .nav { padding: var(--s-2) var(--s-2) var(--s-2) var(--s-6); }
  .nav .brand { margin-right: var(--s-4); }
}
