/* ===========================
   LEAD DEVELOPMENT — style.css
   Premium Interactive Build v3
   =========================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0ea5e9;
  --blue-dark: #0284c7;
  --blue-bright: #38bdf8;
  --blue-glow: rgba(14,165,233,0.3);
  --indigo: #818cf8;
  --cyan: #22d3ee;
  --dark: #04060d;
  --dark-2: #070b14;
  --dark-3: #0a0f1a;
  --dark-card: #0d1422;
  --dark-card-2: #101828;
  --border: rgba(255,255,255,0.055);
  --border-blue: rgba(14,165,233,0.18);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

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

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--indigo), var(--cyan));
  z-index: 100000;
  pointer-events: none;
  transition: width .08s linear;
  box-shadow: 0 0 10px rgba(14,165,233,0.6);
}

/* ===== FLOATING ORBS ===== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 22s infinite ease-in-out;
  transform: translateZ(0);
}

.orb--1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(14,165,233,0.10) 0%, transparent 70%); top: -180px; left: -220px; animation-duration: 28s; }
.orb--2 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(129,140,248,0.08) 0%, transparent 70%); top: 30%; right: -150px; animation-duration: 20s; animation-delay: -9s; }
.orb--3 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(34,211,238,0.06) 0%, transparent 70%); bottom: 5%; left: 22%; animation-duration: 24s; animation-delay: -15s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  25%  { transform: translate(40px,-50px) scale(1.05); }
  50%  { transform: translate(-30px,40px) scale(0.96); }
  75%  { transform: translate(50px,28px) scale(1.03); }
}

/* ===== TEXT GRADIENT ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 45%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradShift 5s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: -.01em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, #1ab8ff 0%, var(--blue) 50%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 0 24px rgba(14,165,233,0.4), 0 4px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  box-shadow: 0 0 50px rgba(14,165,233,0.6), 0 8px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px) scale(1.02);
}

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 28px rgba(14,165,233,0.45);
  transform: translateY(-2px);
}

.btn--nav {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: var(--white);
  padding: 9px 20px;
  font-size: .875rem;
  box-shadow: 0 0 18px rgba(14,165,233,0.3);
}

.btn--lg { padding: 16px 38px; font-size: 1rem; border-radius: 12px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== REVEAL SYSTEM ===== */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade, .reveal-scale {
  opacity: 0;
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
/* Bots (Lighthouse, PageSpeed, Googlebot) see the page fully rendered — no intro overlay, no fade-in delays */
html.lh-bot .intro { display: none !important; }
html.lh-bot .reveal-up,
html.lh-bot .reveal-left,
html.lh-bot .reveal-right,
html.lh-bot .reveal-fade,
html.lh-bot .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal-up    { transform: translateY(55px); }
.reveal-left  { transform: translateX(-65px); }
.reveal-right { transform: translateX(65px); }
.reveal-fade  { transform: scale(.94); }
.reveal-scale { transform: scale(.82); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible,
.reveal-fade.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .42s !important; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.9rem,3.5vw,2.9rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.13;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(4,6,13,0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all .35s ease;
}
/* Animated gradient bottom line */
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(14,165,233,0) 10%,
    rgba(14,165,233,0.6) 30%,
    rgba(56,189,248,0.9) 50%,
    rgba(129,140,248,0.6) 70%,
    rgba(14,165,233,0) 90%,
    transparent 100%);
  background-size: 200% 100%;
  animation: navLineScroll 4s linear infinite;
}
@keyframes navLineScroll {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.nav.scrolled {
  background: rgba(4,6,13,0.96);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 0 80px rgba(14,165,233,0.04);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
/* Logo */
.nav__logo {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-left: 10px;
}
.nav__logo-lead {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  text-transform: uppercase;
}
.nav__logo-dev {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(14,165,233,0.5), rgba(129,140,248,0.3), transparent);
}
.nav__links { display: flex; gap: 36px; flex: 1; }
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(148,163,184,0.85);
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
  border-radius: 2px;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.nav__win-link,
.nav__mobile a.nav__win-link {
  color: #fbbf24;
  font-weight: 700;
}
.nav__links a.nav__win-link::after { background: linear-gradient(90deg, #fbbf24, #f97316); }
.nav__links a.nav__win-link:hover { color: #fde68a; }
/* Nav CTA — more dramatic */
.btn--nav {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 10px 22px;
  font-size: .875rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(14,165,233,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.btn--nav::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left .4s ease;
}
.btn--nav:hover::before { left: 100%; }
.btn--nav:hover { box-shadow: 0 0 35px rgba(14,165,233,0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
.nav__toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; padding: 4px; margin-left: auto; background: transparent; border: 0; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav__mobile { display: none; flex-direction: column; padding: 16px 24px 20px; border-top: 1px solid var(--border); }
.nav__mobile a { padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.nav__mobile a:last-child { border-bottom: none; margin-top: 12px; }
.nav__mobile.open { display: flex; }
@media (max-width: 768px) { .nav__links, .btn--nav { display: none; } .nav__toggle { display: flex; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 100px 0 0;
  overflow: hidden;
  background: radial-gradient(ellipse 110% 80% at 50% -10%, rgba(14,165,233,0.13) 0%, transparent 65%),
              radial-gradient(ellipse 70% 55% at 85% 30%, rgba(129,140,248,0.08) 0%, transparent 55%),
              var(--dark);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 70%, rgba(14,165,233,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 88% 65%, rgba(129,140,248,0.055) 0%, transparent 60%);
  animation: heroAurora 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroAurora {
  0%   { opacity: 0.5; transform: scale(1)    translateX(0); }
  50%  { opacity: 1;   transform: scale(1.06) translateX(-12px); }
  100% { opacity: 0.65; transform: scale(0.97) translateX(8px); }
}
#particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(14,165,233,0.042) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,233,0.042) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, black 0%, transparent 80%);
  pointer-events: none; z-index: 0;
  animation: gridShimmer 8s ease-in-out infinite alternate;
}
@keyframes gridShimmer {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}
.hero .container {
  position: relative; z-index: 1; flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero__raffle-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(251,191,36,0.10), rgba(249,115,22,0.06));
  border: 1px solid rgba(251,191,36,0.32);
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: transform .2s, border-color .25s, box-shadow .25s;
  max-width: 620px;
}
.hero__raffle-banner:hover {
  transform: translateY(-1px);
  border-color: rgba(251,191,36,0.55);
  box-shadow: 0 10px 30px rgba(251,191,36,0.18);
}
.hero__raffle-pill {
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(251,191,36,0.18);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.45);
}
.hero__raffle-text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.4;
}
.hero__raffle-text strong { color: #fbbf24; font-weight: 700; }
@media (max-width: 760px) {
  .hero__raffle-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__raffle-text { font-size: .88rem; }
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.17);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .78rem; font-weight: 600;
  color: var(--blue); margin-bottom: 28px; letter-spacing: .03em;
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
  animation: pulse 2s infinite;
  box-shadow: 0 0 6px var(--blue);
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 6px var(--blue); }
  50% { opacity:.55; transform:scale(.72); box-shadow:0 0 2px var(--blue); }
}
.hero__headline {
  font-size: clamp(2.6rem,5.5vw,4.4rem);
  font-weight: 900;
  letter-spacing: -.048em;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 26px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__headline .line { display: block; }
.hero__sub { font-size: clamp(1rem,1.8vw,1.1rem); color: var(--text-muted); max-width: 570px; margin-bottom: 40px; line-height: 1.77; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; align-items: stretch; }
.hero__note { font-size: .77rem; color: var(--text-dim); }

/* Hero social pill — three icon-links grouped as one button-sized component */
.hero__socials {
  display: inline-flex;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.hero__socials:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.hero__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  color: var(--text);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color .25s, background .25s, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.hero__social:last-child { border-right: none; }
.hero__social svg { width: 20px; height: 20px; display: block; }
.hero__social:hover {
  color: var(--blue);
  background: rgba(14,165,233,0.10);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .hero__social { width: 52px; min-height: 44px; }
  .hero__social svg { width: 20px; height: 20px; }
}

/* Floating hero cards */
.hero__cards { display: flex; flex-direction: column; gap: 14px; position: relative; }
.hero-card {
  background: rgba(13,20,34,0.92);
  border: 1px solid rgba(14,165,233,0.14);
  border-radius: 16px; padding: 18px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(14,165,233,0.04), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative; overflow: hidden;
  will-change: transform;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.4), transparent);
}
.hero-card:hover { transform: translateY(-4px) !important; box-shadow: 0 16px 50px rgba(0,0,0,0.55), 0 0 28px rgba(14,165,233,0.1); }
.hero-card--1 { display: flex; align-items: center; gap: 14px; animation: floatA 6s ease-in-out infinite; }
.hero-card--2 { animation: floatB 7s ease-in-out infinite; animation-delay: -2s; }
.hero-card--3 { animation: floatA 8s ease-in-out infinite; animation-delay: -4s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(-.4deg)} 50%{transform:translateY(-7px) rotate(.4deg)} }
.hero-card__icon { width: 40px; height: 40px; background: rgba(14,165,233,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card__label { font-size: .7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.hero-card__val { font-size: .88rem; color: var(--text); font-weight: 600; margin-top: 2px; }
.hero-card__badge { margin-left: auto; background: rgba(14,165,233,0.14); color: var(--blue); font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; border: 1px solid rgba(14,165,233,0.2); }
.hero-card__stars { color: #f59e0b; font-size: .84rem; letter-spacing: 2px; margin-bottom: 8px; }
.hero-card__review { font-size: .84rem; color: var(--text-muted); font-style: italic; line-height: 1.5; margin-bottom: 10px; }
.hero-card__reviewer { font-size: .73rem; color: var(--text-dim); font-weight: 600; }
.hero-card__big { font-size: 1.65rem; font-weight: 900; color: var(--white); letter-spacing: -.04em; margin: 4px 0 12px; }
.hero-card__bar { height: 4px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.hero-card__fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px; animation: fillBar 2.5s 1.5s ease forwards; }
@keyframes fillBar { to { width: 73%; } }

/* Hero stats bar */
@keyframes stats-beam {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(700%); }
}
.hero__stats-bar {
  position: relative; z-index: 1;
  background: #04060d;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.hero__stats-bar::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 15%;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.06), transparent);
  animation: stats-beam 10s linear infinite;
  pointer-events: none;
}
.hero__stats {
  display: flex; gap: 8px; justify-content: center;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.stat {
  flex: 0 1 200px;
  background: linear-gradient(135deg, rgba(14,165,233,0.05) 0%, rgba(6,9,18,0.6) 100%);
  border: 1px solid rgba(14,165,233,0.13);
  border-radius: 10px;
  padding: 16px 16px;
  display: flex; flex-direction: column; gap: 5px;
  position: relative; overflow: hidden;
  transition: border-color .25s, background .25s;
}
.stat:hover { border-color: rgba(14,165,233,0.28); background: linear-gradient(135deg, rgba(14,165,233,0.09) 0%, rgba(6,9,18,0.7) 100%); }
.stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), transparent);
}
.stat__tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(14,165,233,0.55);
}
.stat__number {
  font-size: 2.2rem; font-weight: 900; letter-spacing: -.06em; line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat__pct {
  font-size: 1.6rem; font-weight: 900; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat__label { font-size: .72rem; color: var(--text-muted); line-height: 1.45; }
.stat__divider { display: none; }
@media (max-width:900px) {
  .hero__stats { flex-wrap: wrap; }
  .stat { flex: 1 1 calc(50% - 6px); }
}
@media (max-width:900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__cards { display: none; }
}
@media (max-width:600px) {
  .hero__stats { flex-direction: column; }
  .stat { width: 100%; }
}

/* ===== PLATFORM MARQUEE ===== */
.platforms {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.platforms::before, .platforms::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.platforms::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.platforms::after  { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }
.platforms__track-wrap { overflow: hidden; padding: 16px 0; }
.platforms__track {
  display: flex; gap: 10px; align-items: center;
  width: max-content;
  animation: platforms-scroll 28s linear infinite;
}
.platforms__track:hover { animation-play-state: paused; }
@keyframes platforms-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.platform-item {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap;
  color: var(--text-muted);
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: border-color .2s, color .2s;
}
.platform-item:hover { border-color: var(--border-blue); color: var(--blue-bright); }

/* ===== DRAG SLIDER ===== */
.drag-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 56px; cursor: ew-resize;
  user-select: none; -webkit-user-select: none;
  height: 220px;
}
.drag-slider__before,
.drag-slider__after {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.drag-slider__before { background: linear-gradient(135deg, rgba(10,12,20,1), rgba(7,11,18,1)); }
.drag-slider__after  {
  background: linear-gradient(135deg, rgba(6,14,28,0.98), rgba(4,9,20,0.98));
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.drag-slider__panel {
  width: 100%; max-width: 700px; padding: 24px 32px;
  display: flex; flex-direction: column; gap: 16px;
  pointer-events: none;
}
.dsp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.dsp-badge--bad  { color: #f87171; background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.2); }
.dsp-badge--good { color: var(--cyan); background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.2); }
.dsp-row { display: flex; gap: 24px; }
.dsp-stat { display: flex; flex-direction: column; gap: 2px; }
.dsp-stat__val { font-size: 1.4rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.dsp-stat__val--bad  { color: #f87171; }
.dsp-stat__val--good {
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dsp-stat__label { font-size: .62rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }
.dsp-bar-group { display: flex; flex-direction: column; gap: 7px; }
.dsp-bar-row { display: flex; align-items: center; gap: 10px; font-size: .68rem; color: var(--text-muted); }
.dsp-bar-row span { width: 56px; flex-shrink: 0; }
.dsp-track { flex: 1; height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.dsp-fill { height: 100%; border-radius: 3px; }
.dsp-fill--bad  { background: rgba(248,113,113,0.5); }
.dsp-fill--good { background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 8px rgba(14,165,233,0.4); }
.drag-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.drag-slider__handle::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(14,165,233,0.6);
}
.drag-slider__handle svg {
  position: relative; z-index: 1;
  background: var(--blue); border-radius: 50%;
  width: 36px; height: 36px; padding: 8px;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(14,165,233,0.5);
}
.drag-slider__label {
  position: absolute; top: 14px; z-index: 5;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  pointer-events: none;
}
.drag-slider__label--before { left: 16px; color: #f87171; background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); }
.drag-slider__label--after  { right: 16px; color: var(--cyan); background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.2); }
@media (max-width: 600px) {
  .drag-slider { height: 280px; }
  .dsp-row { flex-wrap: wrap; gap: 12px; }
  .drag-slider__panel { padding: 16px; }
}

/* ===== SCARCITY BANNER ===== */
.scarcity-bar {
  display: flex; align-items: center; gap: 12px;
  background: rgba(248,113,113,0.05);
  border: 1px solid rgba(248,113,113,0.18);
  border-radius: 10px; padding: 14px 18px;
  margin-bottom: 24px;
}
.scarcity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f87171; flex-shrink: 0;
  animation: scarcity-pulse 2s infinite;
}
@keyframes scarcity-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(248,113,113,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(248,113,113,0); }
}
.scarcity-text { flex: 1; font-size: .82rem; color: var(--text-muted); }
.scarcity-text strong { color: #f87171; }
.scarcity-slots { display: flex; gap: 4px; flex-shrink: 0; }
.scarcity-slot {
  width: 10px; height: 20px; border-radius: 3px;
  background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.2);
}
.scarcity-slot--taken { background: rgba(248,113,113,0.6); border-color: rgba(248,113,113,0.5); }
@media (max-width: 600px) {
  .scarcity-bar { flex-wrap: wrap; }
  .scarcity-slots { display: none; }
}

/* ===== PAIN SECTION ===== */
.pain {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(8,12,20,1) 0%, rgba(10,14,22,1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pain::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(239,68,68,0.035) 0%, transparent 70%);
  pointer-events: none;
}
.pain::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.2), transparent);
}
.pain__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pain__text h2 { font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.2; color: var(--white); margin-bottom: 20px; }
.pain__text p { color: var(--text-muted); line-height: 1.77; margin-bottom: 14px; }
.pain__list { display: flex; flex-direction: column; gap: 11px; }
.pain__item {
  display: flex; align-items: center; gap: 14px;
  font-size: .93rem; color: var(--text-muted);
  background: rgba(15,20,34,0.8);
  border: 1px solid rgba(239,68,68,0.08);
  border-radius: 12px; padding: 14px 18px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.pain__item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,68,68,0.15), transparent); }
.pain__item:hover { border-color: rgba(239,68,68,0.22); background: rgba(239,68,68,0.04); transform: translateX(7px); color: var(--text); }
.pain__icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pain__icon--bad { background: rgba(239,68,68,0.1); }
@media (max-width:768px) { .pain__inner { grid-template-columns: 1fr; gap: 40px; } }

/* ===== TRANSFORMATION SECTION ===== */
.transform-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--dark-2) 0%, rgba(5,8,18,1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.transform-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(14,165,233,0.03) 100%);
  pointer-events: none; z-index: 0;
}
#rainCanvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; width: 100%; height: 100%; }
.transform-section .container { position: relative; z-index: 1; }
.transform__stage { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin-bottom: 56px; }
.transform__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .73rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.transform__tag--bad { background: rgba(239,68,68,0.09); color: #f87171; border: 1px solid rgba(239,68,68,0.18); }
.transform__tag--good { background: rgba(14,165,233,0.09); color: var(--blue); border: 1px solid rgba(14,165,233,0.18); }

/* Profile Cards */
.profile-card { border-radius: 18px; overflow: hidden; position: relative; }
.profile-card--before {
  background: #080c14;
  border: 1px solid rgba(255,255,255,0.04);
  filter: saturate(.25) brightness(.65);
}
.rain-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,5,15,.4), rgba(0,5,15,.65));
  pointer-events: none; z-index: 1;
}
.profile-card--after {
  background: linear-gradient(160deg, #0d1422 0%, #0a1220 100%);
  border: 1px solid rgba(14,165,233,0.28);
  box-shadow: 0 0 80px rgba(14,165,233,0.1), 0 0 0 1px rgba(14,165,233,0.06);
}
.after-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 340px; height: 240px;
  background: radial-gradient(ellipse, rgba(14,165,233,0.16) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: glowPulse 3.5s ease-in-out infinite;
}
.after-glow--2 { bottom: -50px; top: auto; width: 220px; height: 160px; animation-delay: -1.7s; background: radial-gradient(ellipse, rgba(129,140,248,0.1) 0%, transparent 70%); }
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.18); }
}
.profile-card__inner { padding: 26px; position: relative; z-index: 2; }
.profile-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.profile-avatar { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 800; flex-shrink: 0; }
.profile-avatar--gray { background: linear-gradient(135deg, #151e2e, #0d141f); color: #3d4a5c; border: 1px solid rgba(255,255,255,0.04); }
.profile-avatar--blue { background: linear-gradient(135deg, var(--blue), var(--indigo)); color: var(--white); box-shadow: 0 0 20px rgba(14,165,233,0.35); }
.profile-info h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.profile-stars { font-size: .9rem; letter-spacing: 2px; color: #f59e0b; }
.profile-stars--empty { color: #1e2c3f; }
.profile-count { font-size: .73rem; color: var(--text-dim); }
.profile-status { margin-left: auto; font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; flex-shrink: 0; }
.profile-status--bad { background: rgba(239,68,68,0.09); color: #f87171; border: 1px solid rgba(239,68,68,0.18); }
.profile-status--good { background: rgba(14,165,233,0.09); color: var(--blue); border: 1px solid rgba(14,165,233,0.18); }
.profile-divider { height: 1px; background: rgba(255,255,255,0.04); margin-bottom: 16px; }
.profile-divider--blue { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.28), rgba(129,140,248,0.2), transparent); }
.profile-metrics { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.p-metric { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; border: 1px solid transparent; }
.p-metric--bad { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.07); }
.p-metric--good { background: linear-gradient(90deg, rgba(14,165,233,0.05), rgba(129,140,248,0.03)); border-color: rgba(14,165,233,0.1); transition: all .25s; }
.p-metric--good:hover { background: linear-gradient(90deg, rgba(14,165,233,0.1), rgba(129,140,248,0.06)); border-color: rgba(14,165,233,0.22); }
.p-metric__icon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.p-metric--bad .p-metric__icon { background: rgba(239,68,68,0.09); color: #f87171; }
.p-metric--good .p-metric__icon { background: rgba(14,165,233,0.1); color: var(--blue); }
.p-metric__label { font-size: .79rem; color: var(--text-dim); flex: 1; }
.p-metric__val { font-size: .82rem; font-weight: 700; }
.p-metric--bad .p-metric__val { color: #f87171; }
.p-metric--good .p-metric__val { color: var(--blue); }
.profile-footer { display: flex; align-items: center; gap: 8px; font-size: .77rem; font-weight: 600; padding: 10px 12px; border-radius: 10px; }
.profile-footer--bad { background: rgba(239,68,68,0.07); color: #f87171; border: 1px solid rgba(239,68,68,0.11); }
.profile-footer--good { background: linear-gradient(90deg, rgba(14,165,233,0.07), rgba(129,140,248,0.04)); color: var(--blue); border: 1px solid rgba(14,165,233,0.12); }

.transform__center { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.transform__bolt {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue), var(--indigo));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 0 35px rgba(14,165,233,0.45), 0 0 70px rgba(14,165,233,0.18), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: boltPulse 2.2s ease-in-out infinite;
}
@keyframes boltPulse {
  0%,100% { box-shadow: 0 0 35px rgba(14,165,233,0.45), 0 0 70px rgba(14,165,233,0.18); transform: scale(1); }
  50% { box-shadow: 0 0 55px rgba(14,165,233,0.65), 0 0 110px rgba(14,165,233,0.25); transform: scale(1.1); }
}
.transform__cta { text-align: center; }
.transform__cta p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 500; }
@media (max-width:900px) { .transform__stage { grid-template-columns: 1fr; gap: 24px; } .transform__center { flex-direction: row; justify-content: center; } }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(8,12,20,1) 100%);
}
.services::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.15), rgba(129,140,248,0.1), transparent);
}
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card {
  background: linear-gradient(145deg, var(--dark-card) 0%, rgba(12,18,30,1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  transform-style: preserve-3d;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.0), transparent);
  transition: background .3s;
}
.service-card:hover::before { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.45), rgba(129,140,248,0.3), transparent); }
.service-card__glow {
  position: absolute; inset: -1px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14,165,233,0.13), rgba(129,140,248,0.06), transparent 60%);
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.service-card:hover .service-card__glow { opacity: 1; }
.service-card:hover { border-color: rgba(14,165,233,0.32); box-shadow: 0 0 50px rgba(14,165,233,0.08), 0 24px 60px rgba(0,0,0,0.35); }
.service-card__icon { width: 54px; height: 54px; background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(129,140,248,0.06)); border: 1px solid rgba(14,165,233,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 22px; transition: all .3s; }
.service-card:hover .service-card__icon { background: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(129,140,248,0.12)); transform: scale(1.1) rotate(-4deg); box-shadow: 0 0 22px rgba(14,165,233,0.25); }
.service-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -.025em; }
.service-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.service-card__features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.service-card__features li { font-size: .79rem; color: var(--text-dim); padding-left: 14px; position: relative; }
.service-card__features li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--indigo)); }
.service-card__arrow { color: var(--text-dim); transition: all .3s; }
.service-card:hover .service-card__arrow { color: var(--blue); transform: translateX(7px); }
.service-card--cta {
  background: linear-gradient(145deg, rgba(14,165,233,0.09), rgba(129,140,248,0.04), rgba(14,165,233,0.02));
  border-color: rgba(14,165,233,0.2);
  display: flex; flex-direction: column; justify-content: center; text-align: center;
}
.service-card--cta h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card--cta p { margin-bottom: 24px; }
@media (max-width:1024px) { .services__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px) { .services__grid { grid-template-columns: 1fr; } }

/* ===== SERVICES BENTO GRID ===== */
.services__bento {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.sc {
  background: linear-gradient(145deg, var(--dark-card) 0%, rgba(10,16,26,1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.sc::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0), transparent);
  transition: background .3s;
}
.sc:hover::before { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.45), rgba(129,140,248,0.3), transparent); }
.sc:hover {
  border-color: rgba(14,165,233,0.28);
  box-shadow: 0 0 60px rgba(14,165,233,0.07), 0 24px 60px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
/* wide cards (Website Design + CTA) */
.sc--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 40px;
}
.sc--wide .sc__body { display: flex; flex-direction: column; }
/* mouse glow radial that tracks cursor via --mx/--my */
.sc__mouse-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle 300px at var(--mx,50%) var(--my,50%), rgba(14,165,233,0.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none; z-index: 0;
}
.sc-glow-card:hover .sc__mouse-glow { opacity: 1; }
/* ensure all real content sits above glow */
.sc > *:not(.sc__mouse-glow):not(.sc__cta-aurora) { position: relative; z-index: 1; }
/* icon badge */
.sc__icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(129,140,248,0.06));
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 20px;
  transition: all .3s;
}
.sc:hover .sc__icon { background: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(129,140,248,0.1)); transform: scale(1.08) rotate(-3deg); box-shadow: 0 0 20px rgba(14,165,233,0.22); }
/* "Most Requested" tag */
.sc__tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(129,140,248,0.06));
  border: 1px solid rgba(14,165,233,0.22);
  color: var(--blue);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; width: fit-content;
}
.sc h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -.025em; }
.sc p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.sc__list { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.sc__list li { font-size: .78rem; color: var(--text-dim); padding-left: 15px; position: relative; }
.sc__list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--indigo)); }

/* ── Browser Mockup ── */
.sc__visual { display: flex; align-items: center; justify-content: center; }
.browser-mock {
  width: 100%; max-width: 400px;
  background: #080c14;
  border: 1px solid rgba(14,165,233,0.14);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(14,165,233,0.04);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  background: #060910; padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.b-dot--red    { background: #ff5f57; }
.b-dot--yellow { background: #febc2e; }
.b-dot--green  { background: #28c840; }
.b-url {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px; padding: 4px 10px; display: flex; align-items: center; gap: 3px;
  font-size: .65rem; color: var(--text-dim); margin-left: 8px;
}
.b-url-text { flex: 1; text-align: center; }
.b-cursor { animation: blinkCursor .85s step-end infinite; color: var(--blue); }
@keyframes blinkCursor { 0%,100%{opacity:1} 50%{opacity:0} }
.browser-screen { padding: 14px; }
.bs-hero {
  height: 44px;
  background: linear-gradient(135deg, rgba(14,165,233,0.18), rgba(129,140,248,0.1));
  border-radius: 6px; margin-bottom: 12px;
  position: relative; overflow: hidden;
}
.bs-hero::after {
  content: ''; position: absolute;
  top: 50%; left: 16px; transform: translateY(-50%);
  height: 5px; width: 50%; background: rgba(255,255,255,0.22);
  border-radius: 3px;
  animation: heroShimmer 2.4s ease-in-out infinite;
}
@keyframes heroShimmer { 0%,100%{opacity:.6;width:48%} 50%{opacity:1;width:55%} }
.bs-content { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.bs-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.055); width: 0; animation: lineReveal 1.4s ease forwards; }
.bs-line--h  { width: 0; animation-delay: .25s; --tw:70%; }
.bs-line--s  { width: 0; animation-delay: .45s; --tw:85%; }
.bs-line--xs { width: 0; animation-delay: .65s; --tw:50%; }
@keyframes lineReveal { to { width: var(--tw, 80%); } }
.bs-cta {
  height: 22px; width: 0; max-width: 90px;
  background: linear-gradient(90deg, rgba(14,165,233,0.7), rgba(56,189,248,0.5));
  border-radius: 5px; margin-top: 4px;
  animation: ctaReveal 1s .9s ease forwards, ctaGlow 2.5s 1.9s ease-in-out infinite;
}
@keyframes ctaReveal { to { width: 90px; } }
@keyframes ctaGlow   { 0%,100%{box-shadow:none} 50%{box-shadow:0 0 14px rgba(14,165,233,0.55)} }
.bs-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin-top: 8px; }
.bs-card {
  height: 24px; background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.04); border-radius: 5px;
  opacity: 0; animation: cardFade .5s ease forwards;
}
.bs-card:nth-child(1) { animation-delay: 1.1s; }
.bs-card:nth-child(2) { animation-delay: 1.25s; }
.bs-card:nth-child(3) { animation-delay: 1.4s; }
@keyframes cardFade { to { opacity:1; transform: none; } from { opacity:0; transform: translateY(6px); } }

/* ── GBP Visual ── */
.sc__gbp-visual {
  display: flex; align-items: center; gap: 12px;
  background: rgba(14,165,233,0.04);
  border: 1px solid rgba(14,165,233,0.09);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 16px;
}
.gbp-pin { color: #ea4335; flex-shrink: 0; animation: pinBounce 2.2s ease-in-out infinite; }
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.gbp-stars { display: flex; gap: 2px; }
.gbp-star {
  color: #f59e0b; font-size: 1.15rem;
  opacity: 0;
  animation: starPop .35s cubic-bezier(.34,1.56,.64,1) forwards;
  animation-delay: calc(var(--d) * .1s + .3s);
}
@keyframes starPop { from{opacity:0;transform:scale(0) rotate(-30deg)} to{opacity:1;transform:scale(1) rotate(0)} }
.gbp-count { font-size: .77rem; color: var(--text-dim); font-weight: 600; margin-left: auto; }

/* ── Reviews Visual ── */
.sc__reviews-visual { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.rv-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(14,165,233,0.04); border: 1px solid rgba(14,165,233,0.08);
  border-radius: 10px; padding: 10px 14px;
  opacity: 0; animation: rvSlide .5s ease forwards;
}
.rv-item--1 { animation-delay: .3s; }
.rv-item--2 { animation-delay: .6s; }
@keyframes rvSlide { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:none} }
.rv-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.rv-body { flex: 1; }
.rv-stars { color: #f59e0b; font-size: .7rem; letter-spacing: 1px; margin-bottom: 3px; }
.rv-text { font-size: .72rem; color: var(--text-muted); line-height: 1.4; }

/* ── Directory Visual ── */
.sc__dirs-visual { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.dir-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; color: var(--text-muted); font-weight: 500;
  padding: 8px 14px;
  background: rgba(14,165,233,0.03); border: 1px solid rgba(14,165,233,0.06); border-radius: 8px;
  opacity: 0; animation: dirReveal .4s ease forwards;
}
.dir-item--1 { animation-delay: .2s; }
.dir-item--2 { animation-delay: .35s; }
.dir-item--3 { animation-delay: .5s; }
.dir-item--4 { animation-delay: .65s; }
.dir-item--5 { animation-delay: .8s; }
@keyframes dirReveal { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.dir-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan)); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(14,165,233,0.5);
  animation: dotGlow 2.2s ease-in-out infinite;
}
@keyframes dotGlow { 0%,100%{box-shadow:0 0 6px rgba(14,165,233,0.5)} 50%{box-shadow:0 0 14px rgba(14,165,233,0.9)} }

/* ── Chart Visual ── */
.sc__chart-visual {
  background: rgba(14,165,233,0.03); border: 1px solid rgba(14,165,233,0.07);
  border-radius: 10px; padding: 12px; margin-bottom: 16px; overflow: hidden;
}
.chart-svg { width: 100%; height: 60px; display: block; }
.chart-area { opacity: .6; }
.chart-line {
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  animation: drawLine 2s .4s ease forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* ── CTA Card ── */
.sc--cta {
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(129,140,248,0.03), rgba(14,165,233,0.02));
  border-color: rgba(14,165,233,0.16);
  display: block; /* override sc--wide 2-col grid — inner flex handles layout */
}
.sc--cta:hover { border-color: rgba(14,165,233,0.35); }
.sc__cta-aurora {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 90% at 10% 50%, rgba(14,165,233,0.1) 0%, transparent 60%),
              radial-gradient(ellipse 40% 80% at 90% 50%, rgba(129,140,248,0.07) 0%, transparent 60%);
  animation: auroraShift 5s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes auroraShift { 0%,100%{opacity:.7} 50%{opacity:1} }
.sc__cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%;
}
.sc__cta-inner h3 { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.sc__cta-inner p { font-size: .92rem; color: var(--text-muted); line-height: 1.65; max-width: 540px; margin: 0; }

/* Responsive bento */
@media (max-width: 1024px) {
  .services__bento { grid-template-columns: repeat(2,1fr); }
  .sc--wide { grid-template-columns: 1fr; }
  .sc__visual { display: none; }
  .sc--cta { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services__bento { grid-template-columns: 1fr; }
  .sc__cta-inner { flex-direction: column; text-align: center; align-items: center; }
}

/* ===== DNA SECTION ===== */
.dna-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--dark) 0%, rgba(6,10,20,1) 50%, rgba(8,6,20,1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dna-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.18), rgba(129,140,248,0.15), var(--cyan) 50%, rgba(129,140,248,0.15), rgba(14,165,233,0.18), transparent);
}
#dnaCanvas {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none; z-index: 0;
  height: 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 9%, black 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 9%, black 91%, transparent 100%);
}
.dna-section .container { position: relative; z-index: 1; }
.dna__layout { display: grid; grid-template-columns: 1fr 280px 1fr; gap: 24px; align-items: center; min-height: 700px; }
.dna__visual { min-height: 680px; }
.dna__labels { display: flex; flex-direction: column; gap: 68px; }
.dna__labels--left { align-items: flex-end; }
.dna__labels--right { align-items: flex-start; }
.dna__label { display: flex; align-items: center; gap: 0; max-width: 340px; }
.dna__labels--left .dna__label { flex-direction: row; text-align: right; }
.dna__label-content {
  flex: 1; padding: 16px 18px;
  background: linear-gradient(135deg, rgba(14,165,233,0.05), rgba(129,140,248,0.025));
  border: 1px solid rgba(14,165,233,0.1);
  border-radius: 12px; transition: all .3s ease;
  position: relative; overflow: hidden;
}
.dna__label-content::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.25), transparent);
}
.dna__label-content:hover { background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(129,140,248,0.05)); border-color: rgba(14,165,233,0.24); transform: translateX(-5px); }
.dna__label--right .dna__label-content:hover { transform: translateX(5px); }
.dna__label-content h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 5px; letter-spacing: -.02em; }
.dna__label-content p { font-size: .77rem; color: var(--text-dim); line-height: 1.5; }
.dna__label-line { width: 36px; height: 1px; flex-shrink: 0; background: linear-gradient(90deg, rgba(14,165,233,0.55), rgba(14,165,233,0.1)); }
.dna__label--right .dna__label-line { background: linear-gradient(90deg, rgba(14,165,233,0.1), rgba(14,165,233,0.55)); }
.dna__label-dot { width: 11px; height: 11px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--indigo)); flex-shrink: 0; box-shadow: 0 0 10px rgba(14,165,233,0.65), 0 0 20px rgba(14,165,233,0.3); animation: dotPulse 2.8s ease-in-out infinite; }
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 10px rgba(14,165,233,0.65), 0 0 20px rgba(14,165,233,0.3); }
  50% { box-shadow: 0 0 18px rgba(14,165,233,1), 0 0 36px rgba(14,165,233,0.55); }
}
.dna__label:nth-child(2) .dna__label-dot { animation-delay: -.9s; }
.dna__label:nth-child(3) .dna__label-dot { animation-delay: -1.8s; }
@media (max-width:1024px) {
  .dna__layout { grid-template-columns: 1fr; gap: 0; }
  .dna__visual { min-height: 400px; }
  .dna__labels { flex-direction: row; flex-wrap: wrap; gap: 16px; justify-content: center; }
  .dna__labels--left, .dna__labels--right { align-items: center; }
  .dna__label { max-width: 260px; flex-direction: column; text-align: center; }
  .dna__label-line { width: 1px; height: 20px; background: linear-gradient(to bottom, rgba(14,165,233,0.5), rgba(14,165,233,0.1)); }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(7,11,20,1) 0%, rgba(9,13,22,1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps { display: flex; align-items: center; gap: 16px; }
.step {
  flex: 1;
  background: linear-gradient(145deg, var(--dark-card), rgba(11,16,27,1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all .35s ease; position: relative; overflow: hidden;
}
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0), transparent);
  transition: background .3s;
}
.step:hover::before { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.4), rgba(129,140,248,0.25), transparent); }
.step:hover { border-color: rgba(14,165,233,0.28); box-shadow: 0 0 45px rgba(14,165,233,0.07), 0 24px 45px rgba(0,0,0,0.35); transform: translateY(-5px); }
.step__number {
  font-size: 3.8rem; font-weight: 900; letter-spacing: -.055em; line-height: 1; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(14,165,233,0.4), rgba(129,140,248,0.15));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step__content h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -.025em; }
.step__content p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.step__connector { display: flex; align-items: center; flex-direction: column; gap: 8px; color: rgba(14,165,233,0.35); flex-shrink: 0; }
.step__connector-line { width: 2px; height: 30px; background: linear-gradient(to bottom, transparent, rgba(14,165,233,0.3), transparent); }
@media (max-width:768px) { .steps { flex-direction: column; } .step__connector { transform: rotate(90deg); } }

/* ===== RESULTS ===== */
.results {
  padding: 100px 0;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(6,9,18,1) 100%);
}
.results::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.results::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(14,165,233,0.06) 0%, rgba(129,140,248,0.03) 40%, transparent 70%);
  pointer-events: none;
}
.results__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.results__text .section-label { display: block; margin-bottom: 12px; }
.results__text h2 { font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.2; color: var(--white); margin-bottom: 20px; }
.results__text p { color: var(--text-muted); line-height: 1.77; margin-bottom: 32px; }
.results__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.result-card {
  background: linear-gradient(145deg, var(--dark-card), rgba(10,16,26,1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 8px;
  transition: all .35s ease; position: relative; overflow: hidden;
}
.result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0), transparent);
  transition: background .3s;
}
.result-card:hover::before { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), rgba(129,140,248,0.3), transparent); }
.result-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--indigo)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.result-card:hover::after { transform: scaleX(1); }
.result-card:hover { border-color: rgba(14,165,233,0.28); transform: translateY(-5px); box-shadow: 0 14px 45px rgba(0,0,0,0.35); }
.result-card__number {
  font-size: 2.5rem; font-weight: 900; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.result-card__text { font-size: .79rem; color: var(--text-muted); line-height: 1.45; }
@media (max-width:900px) { .results__inner { grid-template-columns: 1fr; gap: 48px; } }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(7,11,20,1) 0%, rgba(8,12,22,1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testimonial {
  background: linear-gradient(145deg, var(--dark-card), rgba(11,17,28,1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all .35s ease; position: relative; overflow: hidden;
}
.testimonial::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0), transparent);
  transition: background .3s;
}
.testimonial:hover::before { background: linear-gradient(90deg, transparent, rgba(14,165,233,0.38), rgba(129,140,248,0.22), transparent); }
.testimonial::after {
  content: '"'; position: absolute; top: 10px; right: 22px;
  font-size: 5.5rem; font-weight: 900; color: rgba(14,165,233,0.055); line-height: 1; font-family: Georgia, serif;
}
.testimonial:hover { border-color: rgba(14,165,233,0.2); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.testimonial__stars { color: #f59e0b; font-size: .9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial p { font-size: .9rem; color: var(--text-muted); line-height: 1.77; font-style: italic; margin-bottom: 24px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--indigo)); display: flex; align-items: center; justify-content: center; font-size: .73rem; font-weight: 800; color: var(--white); flex-shrink: 0; box-shadow: 0 0 14px rgba(14,165,233,0.28); }
.testimonial__author strong { display: block; font-size: .9rem; color: var(--white); }
.testimonial__author span { font-size: .77rem; color: var(--text-dim); }
@media (max-width:900px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ===== REVIEWS GROWTH CHART ===== */
.hero__review-chart {
  position: relative; z-index: 1;
  padding: 32px 0 0;
}
.reviews-chart {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(14,165,233,0.05) 0%, rgba(6,9,18,0.5) 100%);
  border: 1px solid rgba(14,165,233,0.14);
  border-radius: 16px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.reviews-chart::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), transparent);
}
.reviews-chart__tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(14,165,233,0.6); display: block; margin-bottom: 10px;
}
.reviews-chart__big {
  font-size: 4.5rem; font-weight: 900; letter-spacing: -.07em; line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.reviews-chart__trend {
  font-size: .82rem; font-weight: 700; color: var(--cyan); margin-bottom: 6px;
}
.reviews-chart__label {
  font-size: .76rem; color: var(--text-muted); line-height: 1.55; max-width: 200px;
}
.reviews-chart__sparkline {
  width: 100%; height: 40px; margin-top: 18px; display: block;
}
.reviews-chart__months {
  display: flex; flex-direction: column; gap: 14px;
}
.reviews-month {
  display: grid; grid-template-columns: 36px 1fr 52px; align-items: center; gap: 12px;
}
.reviews-month__num {
  font-size: 1rem; font-weight: 800; text-align: right;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.reviews-month--peak .reviews-month__num { font-size: 1.2rem; }
.reviews-month__track {
  background: rgba(14,165,233,0.08);
  border-radius: 4px; height: 8px; overflow: hidden;
}
.reviews-month__bar {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  width: 0;
  transition: none;
}
.reviews-month--peak .reviews-month__bar {
  box-shadow: 0 0 10px rgba(14,165,233,0.45);
}
.reviews-chart.animated .reviews-month:nth-child(1) .reviews-month__bar { width: var(--w); transition: width 1s cubic-bezier(.4,0,.2,1) .1s; }
.reviews-chart.animated .reviews-month:nth-child(2) .reviews-month__bar { width: var(--w); transition: width 1s cubic-bezier(.4,0,.2,1) .3s; }
.reviews-chart.animated .reviews-month:nth-child(3) .reviews-month__bar { width: var(--w); transition: width 1s cubic-bezier(.4,0,.2,1) .5s; }
.reviews-chart.animated .reviews-month:nth-child(4) .reviews-month__bar { width: var(--w); transition: width 1s cubic-bezier(.4,0,.2,1) .7s; }
.reviews-month__label { font-size: .68rem; color: var(--text-dim); }
@media (max-width: 768px) {
  .reviews-chart { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
  .reviews-chart__label { max-width: 100%; }
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(6,9,18,1) 0%, var(--dark) 100%);
}
.faq::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 23px 0; font-size: .97rem; font-weight: 600; color: var(--white); text-align: left; transition: color .2s; }
.faq__question:hover { color: var(--blue); }
.faq__icon { flex-shrink: 0; transition: transform .35s cubic-bezier(.34,1.56,.64,1); color: var(--text-dim); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); color: var(--blue); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq__answer.open { max-height: 220px; padding-bottom: 20px; }
.faq__answer p { font-size: .92rem; color: var(--text-muted); line-height: 1.77; }
.faq__all-link {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}
.faq__all-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 22px;
  color: #38bdf8;
  background: rgba(14,165,233,0.06);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.faq__all-link a:hover {
  color: #7dd3fc;
  border-color: rgba(56,189,248,0.6);
  background: rgba(14,165,233,0.12);
  transform: translateY(-1px);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--dark) 0%, rgba(5,8,18,1) 100%);
}
.cta-section__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 65% at 50% 50%, rgba(14,165,233,0.055) 0%, rgba(129,140,248,0.02) 50%, transparent 70%);
  pointer-events: none;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.2), rgba(129,140,248,0.15), transparent);
}
.cta-section__inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; }
.cta-section__inner h2 { font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 900; letter-spacing: -.04em; color: var(--white); margin-bottom: 16px; line-height: 1.13; }
.cta-section__inner > p { color: var(--text-muted); line-height: 1.77; margin-bottom: 44px; }
.audit-form {
  background: linear-gradient(145deg, var(--dark-card), rgba(10,16,27,1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px;
  text-align: left; margin-bottom: 32px;
  box-shadow: 0 0 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(14,165,233,0.04);
  position: relative; overflow: hidden;
}
.audit-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.35), rgba(129,140,248,0.25), transparent);
}
.audit-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--text-muted); letter-spacing: .03em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.026);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 15px;
  font-size: .9rem; color: var(--white);
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none; width: 100%;
  font-family: inherit;
}
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: rgba(14,165,233,0.035); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
.form-group__optional { font-weight: 500; color: var(--text-dim); text-transform: none; letter-spacing: 0; font-size: .72rem; margin-left: 4px; }
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group input.error, .form-group select.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.form__note { text-align: center; font-size: .77rem; color: var(--text-dim); margin-top: 12px; }
.audit-form__alt { text-align: center; }
.audit-form__alt p { font-size: .9rem; color: var(--text-muted); margin-bottom: 10px; }
.cta-phone { font-size: 1.65rem; font-weight: 900; color: var(--blue); letter-spacing: -.04em; transition: all .25s; }
.cta-phone:hover { color: var(--blue-bright); text-shadow: 0 0 24px rgba(14,165,233,0.5); }
@media (max-width:600px) { .audit-form { padding: 24px 18px; } .audit-form__row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, rgba(5,8,16,1) 0%, rgba(4,6,13,1) 100%);
  border-top: 1px solid var(--border); padding: 64px 0 32px;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.2), rgba(129,140,248,0.15), transparent);
}
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer__brand .nav__logo { margin-bottom: 16px; display: inline-block; }
.footer__brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; max-width: 300px; margin-bottom: 20px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { font-size: .88rem; color: var(--text-muted); transition: color .2s; }
.footer__contact a:hover { color: var(--blue); }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.footer__col a { font-size: .88rem; color: var(--text-muted); transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: .79rem; color: var(--text-dim); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .79rem; color: var(--text-dim); transition: color .2s; }
.footer__legal a:hover { color: var(--text-muted); }
@media (max-width:768px) { .footer__inner { grid-template-columns: 1fr; gap: 40px; } .footer__bottom { flex-direction: column; text-align: center; } }

/* ===== FORM SUCCESS ===== */
.form-success { text-align: center; padding: 52px 24px; }
.form-success__icon { width: 68px; height: 68px; background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(129,140,248,0.06)); border: 1px solid rgba(14,165,233,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--blue); box-shadow: 0 0 35px rgba(14,165,233,0.18); animation: successPop .5s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes successPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.form-success p { font-size: .92rem; color: var(--text-muted); line-height: 1.65; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--blue), var(--indigo)); border-radius: 3px; }
::selection { background: rgba(14,165,233,0.25); color: var(--white); }

/* ===== ENHANCEMENTS ===== */

/* Trust bar above audit form */
.form-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 11px 20px;
  background: rgba(14,165,233,0.05);
  border: 1px solid rgba(14,165,233,0.12);
  border-radius: 100px;
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: .02em;
}
.form-trust-bar span { display: flex; align-items: center; gap: 6px; }
.form-trust-bar svg { color: var(--blue); flex-shrink: 0; }
@media (max-width: 600px) { .form-trust-bar { gap: 14px; border-radius: 14px; } }

/* Footer tagline */
.footer__tagline {
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--blue) !important;
  margin-bottom: 8px !important;
  max-width: none !important;
}

/* Testimonial — amplified quote mark + star glow + bottom accent */
.testimonial::after {
  color: rgba(14,165,233,0.09);
}
.testimonial__stars {
  text-shadow: 0 0 14px rgba(245,158,11,0.55);
}
.testimonial__author-separator {
  display: block; height: 1px;
  background: linear-gradient(90deg, rgba(14,165,233,0.2), transparent);
  margin-bottom: 16px;
}

/* Services bento — sharper lift + glow boost on hover */
.sc:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 80px rgba(14,165,233,0.1), 0 28px 70px rgba(0,0,0,0.5);
}

/* Pain items — left accent bar via box-shadow */
.pain__item {
  box-shadow: inset 3px 0 0 rgba(239,68,68,0.22);
}
.pain__item:hover {
  box-shadow: inset 4px 0 0 rgba(239,68,68,0.6);
}

/* ===== PRICING ===== */
.pricing { padding: 120px 0 80px; }

.pricing-track-wrap {
  position: relative;
  margin-top: 20px;
  overflow-x: clip;
  padding-top: 30px;
}

.pricing-track {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 36px 40px 44px;
  cursor: grab;
}
.pricing-track::-webkit-scrollbar { display: none; }
.pricing-track.is-grabbing { cursor: grabbing; }

.pricing-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: rgba(14,165,233,0.35);
  background: linear-gradient(160deg, #0d1a2e 0%, var(--dark-card) 100%);
  transform: translateY(-12px);
  position: relative;
}
.pricing-card--featured:hover {
  transform: translateY(-16px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(14,165,233,0.5);
}

.pricing-card__top { display: flex; flex-direction: column; gap: 10px; }

.pricing-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.pricing-card--featured .pricing-card__name { color: var(--blue-bright); }

.pricing-card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-card__price {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-card__setup {
  font-size: .8rem;
  color: var(--text-dim);
  font-weight: 500;
}
.pricing-card__monthly {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}
.pricing-card__from {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 14px;
  margin-right: 2px;
  align-self: flex-end;
}
.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
}
.pricing-card--featured .pricing-card__amount { color: var(--blue-bright); }
.pricing-card__per {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-bottom: 6px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.check-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pricing-card--featured .pricing-card__features li { color: var(--text); }
.pricing-card--featured .check-icon { stroke: var(--cyan); }

.pricing-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-card-2);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.pricing-arrow:hover { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: 0 0 24px rgba(14,165,233,0.45); }
.pricing-arrow--prev { left: 8px; }
.pricing-arrow--next { right: 8px; }
.pricing-arrow:disabled { opacity: 0.25; pointer-events: none; }

.pricing-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pricing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.pricing-dot--active {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 10px rgba(14,165,233,0.5);
  width: 24px;
  border-radius: 4px;
}

.pricing-note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-dim);
  margin-top: 28px;
  line-height: 1.6;
}
.pricing-note a { color: var(--blue); }
.pricing-note a:hover { text-decoration: underline; }


@media (max-width: 900px) {
  .pricing-arrow { display: none; }
}

/* ===== MOBILE POLISH (≤768px) ===== */
@media (max-width: 768px) {
  .pain,
  .transform-section,
  .services,
  .dna-section,
  .how-it-works,
  .results,
  .testimonials,
  .pricing,
  .faq,
  .cta-section { padding: 64px 0; }

  .section-header { margin-bottom: 40px; }

  .hero { padding-top: 74px; }
  .hero .container { padding-top: 28px; padding-bottom: 48px; }

  .hero__review-chart { padding: 0; }
  .reviews-chart { margin-top: 28px; }

  .hero__stats-bar { padding: 22px 0; }

  .transform__cta p { font-size: 1rem; }

  .cta-section__inner > p { margin-bottom: 28px; }
}

/* ===== MOBILE POLISH (≤480px) ===== */
@media (max-width: 480px) {
  .pain,
  .transform-section,
  .services,
  .dna-section,
  .how-it-works,
  .results,
  .testimonials,
  .faq,
  .cta-section { padding: 52px 0; }

  .section-header { margin-bottom: 28px; }

  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding-top: 68px; }
  .hero .container { padding-top: 20px; padding-bottom: 32px; }
  .hero__badge { margin-bottom: 16px; font-size: .72rem; }
  .hero__sub { margin-bottom: 28px; }
  .hero__actions { gap: 10px; }
  .hero__note { font-size: .72rem; }

  /* Stats bar */
  .hero__stats-bar { padding: 16px 0; }
  .hero__stats { gap: 8px; }
  .stat { padding: 14px 12px; gap: 5px; }
  .stat__number { font-size: 2rem; }
  .stat__pct { font-size: 1.4rem; }
  .stat__label { font-size: .7rem; }
  .stat__tag { font-size: .58rem; }

  /* Reviews chart */
  .reviews-chart { margin-top: 20px; padding: 20px 16px; gap: 20px; }
  .reviews-chart__big { font-size: 3rem; }

  /* Pain */
  .pain__inner { gap: 28px; }
  .pain__item { padding: 12px 14px; font-size: .88rem; }

  /* Steps */
  .step { padding: 26px 20px; }
  .step__number { font-size: 2.6rem; margin-bottom: 12px; }

  /* DNA labels — stack vertically on phone */
  .dna__layout { min-height: auto; }
  .dna__visual { min-height: 260px; }
  .dna__labels { flex-direction: column; align-items: center !important; gap: 10px; }
  .dna__label { max-width: 100%; flex-direction: column !important; align-items: center; text-align: center !important; }
  .dna__label-line { width: 1px; height: 16px; }
  .dna__label-content { padding: 12px 14px; }
  .dna__label-content h4 { font-size: .85rem; }
  .dna__label-content p { font-size: .74rem; }

  /* Results */
  .result-card { padding: 20px; }
  .result-card__number { font-size: 2rem; }
  .results__cards { gap: 10px; }

  /* Testimonials */
  .testimonial { padding: 24px; }

  /* Drag slider */
  .drag-slider { height: 260px; }

  /* Footer */
  .footer { padding: 44px 0 24px; }

  /* Audit form */
  .audit-form { padding: 22px 16px; }
  .cta-section__inner > p { margin-bottom: 24px; }

  /* Pricing */
  .pricing-card { width: 82vw; }
  .pricing-card__amount { font-size: 2.6rem; }
  .pricing-arrow { display: none; }
}

/* ===================================================================
   REVIEWS GROWTH PROOF SECTION (moved out of hero)
================================================================== */
.reviews-proof {
  padding: 80px 0 100px;
  position: relative;
  background: linear-gradient(180deg, rgba(14,165,233,.02) 0%, transparent 100%);
}
.reviews-proof .reviews-chart { margin-top: 0; }
@media (max-width: 780px) {
  .reviews-proof { padding: 48px 0 64px; }
}

/* ===================================================================
   SELECTED PACKAGE PILL (top of audit form)
================================================================== */
.selected-plan-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(129,140,248,.08));
  border: 1px solid rgba(14,165,233,.32);
  border-radius: 12px;
  font-size: .92rem;
  color: #e8f1ff;
  animation: pillSlide .4s cubic-bezier(.34,1.56,.64,1);
}
.selected-plan-pill[hidden] { display: none; }
.selected-plan-pill svg { color: #22d3ee; flex-shrink: 0; }
.selected-plan-pill strong { color: #fff; font-weight: 700; }
.selected-plan-pill__clear {
  margin-left: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #cbd5e1;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
}
.selected-plan-pill__clear:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
@keyframes pillSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   SERVICE CHECKBOX GROUP
================================================================== */
.form-checkbox-group {
  border: none;
  padding: 0;
  margin: 8px 0 20px;
}
.form-checkbox-group legend {
  font-size: .92rem;
  font-weight: 600;
  color: #e8f1ff;
  margin-bottom: 12px;
  padding: 0;
}
.form-checkbox-group__hint {
  display: inline-block;
  margin-left: 6px;
  font-weight: 500;
  color: #94a3b8;
  font-size: .8rem;
}
.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all .18s ease;
  user-select: none;
}
.form-check:hover {
  background: rgba(14,165,233,.06);
  border-color: rgba(14,165,233,.28);
}
.form-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-check__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  transition: all .18s ease;
  background: rgba(0,0,0,.2);
}
.form-check__box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1);
}
.form-check input:checked ~ .form-check__box {
  background: linear-gradient(135deg, #0ea5e9, #818cf8);
  border-color: transparent;
}
.form-check input:checked ~ .form-check__box::after {
  transform: rotate(45deg) scale(1);
}
.form-check input:focus-visible ~ .form-check__box {
  outline: 2px solid rgba(14,165,233,.55);
  outline-offset: 2px;
}
.form-check__label {
  font-size: .88rem;
  color: #cbd5e1;
  line-height: 1.3;
}
.form-check input:checked ~ .form-check__label {
  color: #fff;
}
.form-check--full { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .form-checkbox-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   PLAN CONFIRMATION MODAL
================================================================== */
.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.plan-modal.is-open {
  display: flex;
  animation: modalFade .22s ease;
}
.plan-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,5,12,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.plan-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px 24px;
  background: linear-gradient(160deg, #0b1120 0%, #050810 100%);
  border: 1px solid rgba(14,165,233,.28);
  border-radius: 20px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(14,165,233,.06) inset;
  animation: modalSlide .32s cubic-bezier(.34,1.56,.64,1);
}
.plan-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  color: #94a3b8;
  cursor: pointer;
  transition: all .18s ease;
}
.plan-modal__close:hover { background: rgba(255,255,255,.12); color: #fff; }
.plan-modal__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #22d3ee;
  margin: 0 0 6px;
}
.plan-modal__title {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 14px;
}
.plan-modal__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.22);
  border-radius: 12px;
  margin-bottom: 20px;
}
.plan-modal__setup { font-size: 1rem; font-weight: 700; color: #e8f1ff; }
.plan-modal__sep { color: #64748b; font-weight: 600; }
.plan-modal__monthly { font-size: 1rem; font-weight: 700; color: #22d3ee; }
.plan-modal__includes-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 8px;
}
.plan-modal__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 6px;
}
.plan-modal__includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: #cbd5e1;
}
.plan-modal__includes li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0ea5e9, #818cf8);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.plan-modal__disclaimer {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  margin: 0 0 18px;
  background: rgba(255,255,255,.03);
  border-left: 2px solid rgba(14,165,233,.5);
  border-radius: 6px;
  font-size: .78rem;
  line-height: 1.45;
  color: #94a3b8;
}
.plan-modal__disclaimer svg { color: #22d3ee; flex-shrink: 0; margin-top: 2px; }
.plan-modal__back {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .18s ease;
}
.plan-modal__back:hover { color: #fff; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.plan-modal__or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 12px;
  color: #475569;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.plan-modal__or::before,
.plan-modal__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.plan-modal__pay-section { display: flex; flex-direction: column; gap: 10px; }
.plan-modal__pay-disclaimer {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(14,165,233,.06);
  border: 1px solid rgba(14,165,233,.18);
  border-radius: 10px;
  font-size: .78rem;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}
.plan-modal__pay-disclaimer svg { color: #0ea5e9; flex-shrink: 0; margin-top: 1px; }
.plan-modal__pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.plan-modal__pay-deposit {
  margin: 4px 0 0;
  text-align: center;
  font-size: .82rem;
  color: #94a3b8;
  line-height: 1.5;
}
.plan-modal__pay-deposit strong {
  color: #f8fafc;
  font-weight: 700;
}
body.plan-modal-open { overflow: hidden; }
@media (max-width: 480px) {
  .plan-modal__card { padding: 26px 20px 20px; }
  .plan-modal__title { font-size: 1.4rem; }
}

/* ===================================================================
   4TH HERO CARD — SPLIT STATS (reviews + site views)
================================================================== */
.hero-card--4 {
  animation: floatB 9s ease-in-out infinite;
  animation-delay: -2s;
  padding: 14px 16px;
}
.hero-card__split {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
}
.hero-card__split-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-card__split-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(14,165,233,.35), transparent);
}
.hero-card__val--accent {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #22d3ee, #818cf8);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 2px 0 0;
}
@media (max-width: 980px) {
  .hero-card--4 { max-width: 260px; }
}

/* ===================================================================
   SNAPSHOT GRID — two-column reviews + maps
================================================================== */
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 56px;
}
.snapshot-grid .reviews-chart {
  margin-top: 0;
}
@media (max-width: 860px) {
  .snapshot-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   MAPS RANK WIDGET
================================================================== */
.maps-rank {
  background: linear-gradient(135deg, rgba(14,165,233,0.05), rgba(6,9,18,0.5));
  border: 1px solid rgba(14,165,233,0.14);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.maps-rank::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.5), transparent);
}

/* Chrome bar */
.maps-rank__chrome {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.maps-rank__searchbar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 8px 12px;
  color: #94a3b8;
  font-size: .82rem;
  margin-bottom: 8px;
}
.maps-rank__searchbar span { flex: 1; color: #cbd5e1; }
.maps-rank__chrome-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(14,165,233,.55);
}

/* List container */
.maps-rank__list {
  position: relative;
  height: 360px; /* 5 × 72px */
  overflow: hidden;
}

/* Each row */
.maps-rank__item {
  position: absolute;
  left: 0; right: 0;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: top 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
              opacity 0.4s ease,
              background 0.4s ease;
}
.maps-rank__item--comp {
  opacity: 0.55;
}
.maps-rank__item--john {
  opacity: 0.65;
  transition: top 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
              opacity 0.5s ease,
              background 0.5s ease,
              box-shadow 0.5s ease;
}

/* Position number */
.maps-rank__pos {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  color: #64748b;
  transition: background .4s ease, color .4s ease, transform .4s ease;
}
.maps-rank__pos--john {
  background: rgba(14,165,233,.12);
  color: #0ea5e9;
}
.maps-rank__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.maps-rank__name {
  font-size: .88rem;
  font-weight: 700;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .4s ease;
}
.maps-rank__meta {
  font-size: .72rem;
  color: #475569;
  transition: color .4s ease;
}
.maps-rank__meta--john { color: #94a3b8; }

/* Winner badge (hidden until animation done) */
.maps-rank__winner-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 4px 9px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0ea5e9, #818cf8);
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .4s ease .1s, transform .4s cubic-bezier(.34,1.56,.64,1) .1s;
  flex-shrink: 0;
}

/* WINNER STATE — applied by JS */
.maps-rank__item--john.is-winner {
  opacity: 1;
  background: linear-gradient(90deg, rgba(14,165,233,.08), rgba(129,140,248,.04));
  box-shadow: inset 0 0 0 1px rgba(14,165,233,.22);
}
.maps-rank__item--john.is-winner .maps-rank__pos--john {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #fff;
  transform: scale(1.12);
}
.maps-rank__item--john.is-winner .maps-rank__name {
  color: #fff;
}
.maps-rank__item--john.is-winner .maps-rank__meta--john {
  color: #22d3ee;
}
.maps-rank__item--john.is-winner .maps-rank__winner-badge {
  opacity: 1;
  transform: scale(1);
}

/* Glow pulse ring after winner */
.maps-rank.has-winner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(14,165,233,.45);
  animation: rankGlow 1.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rankGlow {
  0%,100% { box-shadow: inset 0 0 0 1px rgba(14,165,233,.45), 0 0 18px rgba(14,165,233,.0); }
  50%      { box-shadow: inset 0 0 0 1px rgba(14,165,233,.55), 0 0 28px rgba(14,165,233,.18); }
}

/* Footer before/after label */
.maps-rank__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .78rem;
  color: #64748b;
}
.maps-rank__footer svg { color: #22d3ee; flex-shrink: 0; }
.maps-rank__before strong { color: #94a3b8; }
.maps-rank__after strong {
  background: linear-gradient(135deg, #0ea5e9, #818cf8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: .85rem;
}

/* Disable transitions during initial placement */
.maps-rank__list.no-trans .maps-rank__item,
.maps-rank__list.no-trans .maps-rank__item--john {
  transition: none !important;
}

/* Bumped competitors dim further */
.maps-rank__item--comp.is-bumped { opacity: 0.28; }

/* Before badge (visible before animation, hides when winner) */
.maps-rank__before-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #64748b;
  flex-shrink: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.maps-rank__item--john.is-winner .maps-rank__before-badge {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

/* ===================================================================
   PERFORMANCE OPTIMIZATIONS
================================================================== */
/* Promote tilt cards and animated cards to own compositing layer */
.tilt-card,
.step,
.result-card,
.testimonial {
  will-change: transform;
  transform: translateZ(0);
}

/* Contain layout/style in sections below the fold to limit repaint scope */
.services,
.results,
.reviews-proof,
.how-it-works,
.testimonials,
.faq {
}

/* Reduce backdrop-filter cost on mobile where GPU may be weaker */
@media (max-width: 768px) {
  .hero-card { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .plan-modal__backdrop { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
}

/* ===================================================================
   HERO BACKGROUND GLOWS
   position:absolute inside overflow:hidden hero = blur is scoped to
   the hero compositing layer, zero full-page repaint cost
================================================================== */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  will-change: transform, opacity;
}
/* Large blue glow — top-left, anchors the hero */
.hero__glow--1 {
  width: 780px;
  height: 780px;
  top: -260px;
  left: -200px;
  background: radial-gradient(circle, rgba(14,165,233,0.22) 0%, rgba(14,165,233,0.08) 40%, transparent 70%);
  filter: blur(72px);
  animation: heroGlow1 18s ease-in-out infinite alternate;
}
/* Indigo glow — right side */
.hero__glow--2 {
  width: 600px;
  height: 600px;
  top: 5%;
  right: -160px;
  background: radial-gradient(circle, rgba(129,140,248,0.18) 0%, rgba(129,140,248,0.06) 40%, transparent 70%);
  filter: blur(80px);
  animation: heroGlow2 22s ease-in-out infinite alternate;
  animation-delay: -8s;
}
/* Cyan accent — bottom center */
.hero__glow--3 {
  width: 500px;
  height: 500px;
  bottom: -80px;
  left: 35%;
  background: radial-gradient(circle, rgba(34,211,238,0.13) 0%, rgba(34,211,238,0.04) 45%, transparent 70%);
  filter: blur(90px);
  animation: heroGlow3 26s ease-in-out infinite alternate;
  animation-delay: -14s;
}
@keyframes heroGlow1 {
  0%   { transform: translate(0, 0)    scale(1);    opacity: 0.85; }
  50%  { transform: translate(40px, -40px) scale(1.08); opacity: 1; }
  100% { transform: translate(-20px, 30px) scale(0.94); opacity: 0.7; }
}
@keyframes heroGlow2 {
  0%   { transform: translate(0, 0)    scale(1);    opacity: 0.75; }
  50%  { transform: translate(-30px, 50px) scale(1.06); opacity: 1; }
  100% { transform: translate(20px, -20px)  scale(0.96); opacity: 0.65; }
}
@keyframes heroGlow3 {
  0%   { transform: translate(0, 0)    scale(1);    opacity: 0.6; }
  50%  { transform: translate(50px, -30px) scale(1.1);  opacity: 0.9; }
  100% { transform: translate(-40px, 20px) scale(0.92); opacity: 0.5; }
}
@media (max-width: 768px) {
  .hero__glow--1 { width: 480px; height: 480px; filter: blur(50px); }
  .hero__glow--2 { width: 360px; height: 360px; filter: blur(55px); }
  .hero__glow--3 { display: none; }
}

/* ===================================================================
   HERO — Meet the founders link (under CTAs)
   =================================================================== */
.hero__founders-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 4px 9px;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px dashed rgba(129,140,248,0.35);
  transition: color .2s, border-color .2s, transform .2s;
  min-height: 44px;
  line-height: 1.4;
}
.hero__founders-link:hover {
  color: #a5b4fc;
  border-color: rgba(129,140,248,0.85);
  transform: translateX(2px);
}
@media (max-width: 600px) {
  .hero__founders-link { padding: 14px 6px; font-size: 0.88rem; }
}

/* ===================================================================
   FEATURED BUILDS — 3-card showcase grid
   =================================================================== */
.featured-build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .featured-build-grid { grid-template-columns: 1fr; gap: 28px; max-width: 640px; margin: 0 auto; }
}

.featured-build {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14,165,233,0.06), rgba(129,140,248,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.featured-build::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(14,165,233,0.15), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.featured-build:hover {
  transform: translateY(-4px);
  border-color: rgba(14,165,233,0.45);
  box-shadow: 0 30px 80px -30px rgba(14,165,233,0.4);
}
.featured-build:hover::before { opacity: 1; }

.featured-build__shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0d1a;
  border: 1px solid rgba(255,255,255,0.08);
}
.featured-build__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.featured-build__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 8px;
}
.featured-build__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #22c55e;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.featured-build__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.7);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.featured-build__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s ease;
}
.featured-build:hover .featured-build__img { transform: scale(1.02); }

.featured-build__visit {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(14,165,233,0.95);
  color: #04060d;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.featured-build:hover .featured-build__visit {
  opacity: 1;
  transform: translateY(0);
}

.featured-build__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 6px;
}
.featured-build__tag {
  font-size: 0.72rem;
  color: #22d3ee;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.featured-build__name {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.featured-build__meta {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 0 0 18px;
}
.featured-build__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.featured-build__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.featured-build__bullets svg {
  width: 16px;
  height: 16px;
  color: #22d3ee;
  flex-shrink: 0;
}
.featured-build__cta {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0ea5e9;
  display: inline-block;
}
.featured-build:hover .featured-build__cta { color: #38bdf8; }

@media (max-width: 900px) {
  .featured-build {
    padding: 18px;
    gap: 18px;
  }
  .featured-build__name { font-size: 1.4rem; }
}

/* Placeholder card — quiet, in-progress treatment */
.featured-build--placeholder {
  opacity: 0.85;
}
.featured-build--placeholder:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}
.featured-build--placeholder:hover::before { opacity: 0; }
.featured-build__placeholder-shot {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(14,165,233,0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(129,140,248,0.14), transparent 55%),
    linear-gradient(135deg, #0a0d1a, #0e1628);
  position: relative;
}
.featured-build__placeholder-shot::after {
  content: "";
  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: 32px 32px;
  pointer-events: none;
}
.featured-build__placeholder-mark {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  padding: 8px 16px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 999px;
}
.featured-build__live--soon {
  color: #fbbf24;
}
.featured-build__live--soon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fbbf24;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(251,191,36,0.6);
}
.featured-build__cta--soon {
  color: #94a3b8;
}
.featured-build--placeholder:hover .featured-build__cta--soon { color: #cbd5e1; }

/* ===================================================================
   TRUST PANEL — Honest "new local agency" section
   =================================================================== */
.trust-panel {
  padding: 80px 0;
  position: relative;
}
.trust-panel__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14,165,233,0.05), rgba(4,6,13,0.4));
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.trust-panel__inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.12), transparent 60%);
  pointer-events: none;
}
.trust-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.3);
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  position: relative;
}
.trust-panel h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  position: relative;
}
.trust-panel__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 32px;
  position: relative;
}
.trust-panel__lead a {
  color: #38bdf8;
  text-decoration: none;
  border-bottom: 1px dashed rgba(56,189,248,0.5);
}
.trust-panel__lead a:hover { color: #7dd3fc; }

.trust-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  position: relative;
  text-align: left;
}
.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color .25s, background .25s;
}
.trust-pill:hover {
  border-color: rgba(14,165,233,0.35);
  background: rgba(14,165,233,0.05);
}
.trust-pill svg {
  color: #22d3ee;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-pill strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text);
}
.trust-pill span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.trust-panel__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 700px) {
  .trust-panel { padding: 56px 0; }
  .trust-panel__inner { padding: 32px 22px; }
  .trust-panel__grid { grid-template-columns: 1fr; }
}

/* ===== INTRO OVERLAY =====
   Hidden by default for everyone (bots, returning visitors, mobile).
   JS adds body.intro-active for first-time desktop humans, which reveals it.
   This keeps the intro from ever blocking Lighthouse's LCP measurement. */
.intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.6s ease;
  will-change: opacity;
}
body.intro-active .intro {
  display: flex;
}
.intro.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.intro.is-removed {
  display: none;
}
.intro__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000;
}
.intro__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.45) 100%),
    linear-gradient(to bottom, transparent 70%, rgba(4,6,13,0.85) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}
/* Skip intro overlay on mobile/tablet — saves a 3MB video fetch on cellular */
@media (max-width: 900px) {
  .intro { display: none; }
  body.intro-active { overflow: auto; }
}
body.intro-active {
  overflow: hidden;
}

/* ================================================================
   GIVEAWAY — top notification bar + homepage section + inline form
   ================================================================ */

:root {
  --gold:        #fbbf24;
  --gold-deep:   #d97706;
  --gold-soft:   rgba(251,191,36,0.14);
  --gold-border: rgba(251,191,36,0.40);
}

/* Notification bar — fixed at the very top, above the nav */
.giveaway-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 24px;
  min-height: 46px;
  box-sizing: border-box;
  background: linear-gradient(90deg, var(--gold) 0%, #fcd34d 50%, var(--gold) 100%);
  color: #04060d;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -.005em;
  text-decoration: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  transition: filter .2s;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
/* When the giveaway bar is present, drop the fixed nav below it
   and push the hero down so nothing collides. The --bar-h variable
   is set by JS (main.js) so the offset auto-corrects when the bar
   text wraps to 2 or 3 lines on narrow screens. */
body:has(.giveaway-bar) .nav { top: var(--bar-h, 46px); }
body:has(.giveaway-bar) .hero { padding-top: calc(100px + var(--bar-h, 46px)); }
.giveaway-bar:hover { filter: brightness(1.06); }
.giveaway-bar__pill {
  display: inline-flex;
  align-items: center;
  background: #04060d;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 12px 4px;
  border-radius: 4px;
  flex-shrink: 0;
}
.giveaway-bar__text { color: #04060d; }
.giveaway-bar__text strong { font-weight: 800; }
.giveaway-bar__text--short { display: none; }
@media (max-width: 720px) {
  .giveaway-bar__text--full { display: none; }
  .giveaway-bar__text--short { display: inline; }
}
.giveaway-bar__cta {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #04060d;
  border-bottom: 2px solid #04060d;
  padding-bottom: 1px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .giveaway-bar { font-size: 0.78rem; gap: 6px 10px; padding: 8px 14px; flex-wrap: wrap; text-align: center; min-height: 56px; }
  .giveaway-bar__pill { font-size: 0.62rem; padding: 4px 9px 3px; }
}
@media (max-width: 768px) {
  body:has(.giveaway-bar) .hero { padding-top: calc(74px + var(--bar-h, 56px)); }
}
@media (max-width: 640px) {
  body:has(.giveaway-bar) .hero { padding-top: calc(68px + var(--bar-h, 56px)); }
}

/* Main giveaway section — between hero and featured builds */
.giveaway {
  padding: 96px 0 88px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(251,191,36,0.08), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(14,165,233,0.10), transparent 55%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.giveaway::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
}
.giveaway__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .giveaway__inner { grid-template-columns: 1fr; gap: 48px; }
}

.giveaway__copy { color: #e2e8f0; }

.giveaway__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 5px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.giveaway__pill::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: gAwPulse 1.6s ease-in-out infinite;
}
@keyframes gAwPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.giveaway__price {
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 0.85;
  margin: 0 0 10px;
  color: #f8fafc;
}
.giveaway__price-num {
  display: inline-block;
  font-size: clamp(4.5rem, 11vw, 8.6rem);
  text-shadow:
    3px 3px 0 var(--gold-deep),
    6px 6px 0 rgba(0,0,0,0.45);
}

.giveaway__qual {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.giveaway__qual-rule {
  flex: 0 0 48px;
  height: 3px;
  background: var(--gold);
}
.giveaway__qual-text {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .005em;
  color: #f8fafc;
  text-transform: uppercase;
}
.giveaway__qual-text em {
  font-style: normal;
  color: var(--gold);
}

.giveaway__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 14px 0 18px;
  margin: 0 0 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.giveaway__chips li {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.giveaway__chips li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.giveaway__sub {
  font-size: 1rem;
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 28em;
  margin-bottom: 22px;
}
.giveaway__sub strong { color: #f8fafc; font-weight: 700; }

/* Countdown */
.giveaway__countdown {
  margin: 4px 0 22px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(251,191,36,0.10) 0%, rgba(251,191,36,0.02) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 30em;
}
.giveaway__countdown-lbl {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.giveaway__countdown-grid {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.giveaway__countdown-cell {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(4,6,13,0.55);
  border: 1px solid rgba(251,191,36,0.18);
  border-radius: 8px;
  padding: 10px 6px 8px;
}
.giveaway__countdown-num {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -.025em;
  color: #f8fafc;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.giveaway__countdown-unit {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #94a3b8;
}
.giveaway__countdown-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  padding-bottom: 18px;
  line-height: 1;
}
.giveaway__countdown--closed .giveaway__countdown-num { color: var(--gold); }
@media (max-width: 540px) {
  .giveaway__countdown-num { font-size: 1.45rem; }
  .giveaway__countdown-sep { font-size: 1.15rem; padding-bottom: 14px; }
}

.giveaway__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.giveaway__meta-item { display: flex; flex-direction: column; gap: 4px; }
.giveaway__meta-lbl {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #64748b;
}
.giveaway__meta-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

/* Form card */
.giveaway__form-card {
  background: linear-gradient(180deg, rgba(13,20,34,0.95) 0%, rgba(7,11,20,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.55),
    0 0 0 1px rgba(251,191,36,0.06) inset;
}
.giveaway__form-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  border-radius: 20px 20px 0 0;
  opacity: 0.6;
}
.giveaway__form-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -.02em;
  margin: 0 0 6px;
  text-align: center;
}
.giveaway__form-sub {
  font-size: 0.92rem;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 24px;
}
.giveaway__form { display: block; }
.giveaway__honey { position: absolute; left: -9999px; opacity: 0; }
.giveaway__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.giveaway__field label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #94a3b8;
  text-transform: uppercase;
}
.giveaway__req { color: var(--blue); }
.giveaway__field input,
.giveaway__field textarea,
.giveaway__field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #111a2e;
  color: #f8fafc;
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color .2s, background .2s;
}
.giveaway__field input:focus,
.giveaway__field textarea:focus,
.giveaway__field select:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(14,165,233,0.04);
}
.giveaway__field textarea { resize: vertical; min-height: 84px; }
.giveaway__field input.error,
.giveaway__field textarea.error,
.giveaway__field select.error { border-color: #ef4444; }
.giveaway__row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .giveaway__row-2 { grid-template-columns: 1fr; } }

.giveaway__submit {
  width: 100%;
  padding: 16px 22px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #04060d;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .005em;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  margin-top: 6px;
}
.giveaway__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(251,191,36,0.35);
}
.giveaway__submit:disabled { opacity: .65; cursor: wait; }

.giveaway__form-note {
  font-size: 0.78rem;
  color: #64748b;
  text-align: center;
  margin: 14px 0 0;
}

.giveaway__success {
  text-align: center;
  padding: 12px 0;
}
.giveaway__success-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(34,197,94,0.16);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.giveaway__success-check svg { width: 28px; height: 28px; }
.giveaway__success h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 8px;
}
.giveaway__success p {
  color: #cbd5e1;
  line-height: 1.55;
  font-size: 0.94rem;
}

/* ============================================================
   SUBPAGE LAYOUTS — scoped to Rockford service subpages only.
   None of these classes are used on index.html, so this block
   has zero visual effect on the homepage.
   ============================================================ */

.sub-hero {
  position: relative;
  padding: 160px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(14,165,233,0.15), transparent 60%), var(--dark, #04060d);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.sub-hero__inner { position: relative; max-width: 820px; }
.sub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(14,165,233,0.10);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7dd3fc;
  margin-bottom: 22px;
}
.sub-hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #22d3ee;
  border-radius: 50%;
  box-shadow: 0 0 8px #22d3ee;
}
.sub-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.sub-hero h1 .grad {
  background: linear-gradient(90deg, #0ea5e9, #818cf8, #22d3ee);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub-hero__sub {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 32px;
}
.sub-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.sub-hero__note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.sub-section {
  padding: 88px 0;
  position: relative;
}
.sub-section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sub-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 12px;
}
.sub-section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 40px;
  max-width: 720px;
}

.sub-prose { max-width: 760px; }
.sub-prose p {
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.sub-prose p strong { color: #fff; font-weight: 700; }

.sub-list {
  max-width: 780px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.sub-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  color: #cbd5e1;
  line-height: 1.55;
  font-size: 0.97rem;
}
.sub-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 22px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.sub-list li strong { color: #fff; font-weight: 700; }

.sub-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.sub-process-card {
  padding: 28px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.sub-process-card:hover {
  border-color: rgba(14,165,233,0.35);
  transform: translateY(-3px);
}
.sub-process-card__num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #38bdf8;
  margin-bottom: 10px;
}
.sub-process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sub-process-card p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.55;
}

.sub-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.sub-related-card {
  display: block;
  padding: 22px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.sub-related-card:hover {
  border-color: rgba(14,165,233,0.4);
  transform: translateY(-2px);
  background: rgba(14,165,233,0.04);
}
.sub-related-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.sub-related-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
}
.sub-related-card::after {
  content: '→';
  color: #38bdf8;
  margin-left: 4px;
}

.sub-faq { max-width: 780px; }
.sub-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 4px 0;
}
.sub-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.sub-faq__item summary::-webkit-details-marker { display: none; }
.sub-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: #38bdf8;
  transition: transform 0.2s ease;
}
.sub-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.sub-faq__item p {
  padding: 0 0 22px 0;
  color: #cbd5e1;
  font-size: 0.97rem;
  line-height: 1.65;
  max-width: 720px;
}
.sub-faq__item p a {
  color: #38bdf8;
  text-decoration: none;
  border-bottom: 1px solid rgba(56,189,248,0.4);
  transition: border-color 0.2s ease;
}
.sub-faq__item p a:hover { border-bottom-color: #38bdf8; }

/* FAQ page — table of contents (category jump links) */
.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  max-width: 900px;
}
.faq-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.faq-toc a:hover {
  color: #fff;
  border-color: rgba(14,165,233,0.45);
  background: rgba(14,165,233,0.08);
  transform: translateY(-1px);
}

/* FAQ page — "Go deeper" link below each category */
.faq-deeper {
  margin-top: 24px;
  max-width: 780px;
  font-size: 0.95rem;
  font-weight: 600;
}
.faq-deeper a {
  color: #38bdf8;
  text-decoration: none;
  border-bottom: 1px solid rgba(56,189,248,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.faq-deeper a:hover {
  color: #7dd3fc;
  border-bottom-color: #7dd3fc;
}

/* Anchor scroll offset so category headers don't hide under sticky nav */
section[id="pricing"],
section[id="process"],
section[id="website-design"],
section[id="local-seo"],
section[id="gbp"],
section[id="reviews"],
section[id="directories"],
section[id="about-us"] {
  scroll-margin-top: 90px;
}

.sub-cta {
  padding: 80px 0 100px;
}
.sub-cta__card {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(129,140,248,0.08));
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 20px;
}
.sub-cta__card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}
.sub-cta__card p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 26px;
}
.sub-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 720px) {
  .sub-hero { padding: 120px 0 56px; }
  .sub-section { padding: 56px 0; }
  .sub-cta { padding: 56px 0 72px; }
  .sub-cta__card { padding: 36px 24px; }
}

/* ===== FIND US (Maps embed section) ===== */
@media (max-width: 880px) {
  .find-us .container > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .find-us iframe {
    height: 320px !important;
  }
}
@media (max-width: 600px) {
  .find-us { padding: 56px 0 !important; }
  .find-us iframe { height: 260px !important; }
}

/* ===== Sub-CTA attribution (entity link on Rockford pages) ===== */
.sub-cta__attribution {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sub-cta__attribution a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 165, 233, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.sub-cta__attribution a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}
