/* Webbae - modern v4 design system */
:root {
  /* Surfaces */
  --bg-0: hsl(228, 28%, 4%);
  --bg-1: hsl(225, 25%, 7%);
  --bg-2: hsl(225, 22%, 10%);
  --bg-3: hsl(225, 18%, 14%);
  --line: hsl(225, 14%, 18%);
  --line-strong: hsl(225, 14%, 26%);

  /* Text */
  --ink: hsl(210, 30%, 99%);
  --ink-mid: hsl(218, 16%, 78%);
  --ink-low: hsl(220, 10%, 68%);  /* raised from 58% → 68% for WCAG AA 4.5:1 contrast */

  /* Brand spectrum (aurora-able) */
  --c1: hsl(195, 100%, 55%);    /* electric cyan */
  --c2: hsl(232, 90%, 70%);     /* indigo */
  --c3: hsl(280, 90%, 70%);     /* magenta */
  --c4: hsl(20, 100%, 65%);     /* warm orange */
  --c5: hsl(150, 75%, 55%);     /* mint */

  --brand: var(--c1);
  --brand-2: var(--c2);
  --brand-3: var(--c3);
  --brand-soft: hsl(195, 100%, 55% / 0.10);
  --brand-glow: hsl(195, 100%, 55% / 0.45);

  --success: hsl(150, 75%, 50%);
  --danger: hsl(0, 85%, 65%);

  /* Radius scale */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Shadows + glows */
  --shadow-sm: 0 1px 2px hsl(228 28% 2% / 0.5);
  --shadow: 0 8px 24px hsl(228 28% 2% / 0.55), 0 2px 6px hsl(228 28% 2% / 0.4);
  --shadow-lg: 0 32px 80px hsl(228 28% 2% / 0.65), 0 8px 24px hsl(228 28% 2% / 0.45);
  --glow-brand: 0 0 60px hsl(195 100% 55% / 0.25);
  --glow-aurora: 0 30px 100px -30px hsl(232 90% 60% / 0.6);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--c1) 0%, var(--c2) 50%, var(--c3) 100%);
  --grad-warm: linear-gradient(135deg, var(--c2) 0%, var(--c3) 60%, var(--c4) 100%);
  --grad-cool: linear-gradient(135deg, var(--c1) 0%, var(--c5) 100%);
  --grad-border: linear-gradient(135deg, hsl(195 100% 55% / 0.45), hsl(280 90% 70% / 0.35) 40%, transparent 80%);

  --maxw: 1240px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle noise grain overlay (modern texture) */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(at 0% 0%, hsl(195 100% 55% / 0.06) 0px, transparent 50%),
    radial-gradient(at 100% 100%, hsl(280 90% 70% / 0.04) 0px, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--line-strong); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--c1); }

/* Typography */
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 0.5em; line-height: 1.08; font-weight: 700; letter-spacing: -0.035em; font-family: var(--font-display); }
h1 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -0.02em; line-height: 1.25; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* Containers */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section { padding: 96px 0; position: relative; z-index: 2; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Skip link */
.skip { position: absolute; left: -10000px; }
.skip:focus { position: fixed; left: 12px; top: 12px; background: var(--ink); color: var(--bg-0); padding: 10px 14px; border-radius: 8px; z-index: 99999; font-weight: 600; }

/* AURORA background — modern signature */
.aurora {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora::before, .aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: drift 18s ease-in-out infinite;
}
.aurora::before {
  top: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, hsl(195 100% 55% / 0.7), transparent 70%);
}
.aurora::after {
  bottom: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, hsl(280 85% 60% / 0.55), transparent 70%);
  animation-delay: -9s;
  animation-duration: 22s;
}
.aurora-3 {
  position: absolute;
  top: 30%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, hsl(232 90% 65% / 0.4), transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: drift 24s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .aurora::before, .aurora::after, .aurora-3 { animation: none; }
}

/* Subtle grid pattern */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, hsl(225 18% 18% / 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(225 18% 18% / 0.4) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Eyebrow / chips */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: hsl(228 25% 12% / 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  position: relative;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c1);
  box-shadow: 0 0 12px var(--c1);
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.eyebrow-light { background: hsl(0 0% 100% / 0.1); color: white; border-color: hsl(0 0% 100% / 0.2); }
.eyebrow-light::before { background: white; box-shadow: 0 0 12px white; }

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-mid);
  max-width: 720px;
  line-height: 1.6;
}

/* Answer card — left-aligned readable block for entity-first definitions (AEO) */
.answer-card {
  max-width: 768px;
  margin: 0 auto 44px;
  text-align: left;
  background: hsl(225 22% 9% / 0.5);
  border: 1px solid var(--line);
  border-left: 3px solid var(--c1);
  border-radius: var(--r-lg);
  padding: 28px 34px;
}
.answer-card p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-mid);
}
.answer-card p strong, .answer-card p b { color: var(--ink); }
@media (max-width: 560px) {
  .answer-card { padding: 22px 20px; }
  .answer-card p { font-size: 1rem; }
}

/* "What is" 2-column with an on-topic visual (text left, mockup right) */
.what-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px; align-items: center; margin-bottom: 56px;
}
.what-copy { text-align: left; }
.what-copy .eyebrow { margin-bottom: 18px; }
.what-copy h2 { margin-bottom: 18px; }
.what-copy p { font-size: 1.05rem; line-height: 1.7; color: var(--ink-mid); margin: 0; }
.what-visual { display: flex; justify-content: center; }

/* ChatGPT-answer mockup (illustrative, not a real screenshot) */
.chat-mock {
  position: relative; width: 100%; max-width: 460px;
  background: hsl(225 22% 9% / 0.75); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden;
}
.chat-mock::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  pointer-events: none; background: var(--grad-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.chat-mock-bar {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-bottom: 1px solid var(--line); background: hsl(225 24% 7% / 0.6);
}
.chat-mock-dots { display: inline-flex; gap: 6px; }
.chat-mock-dots i { width: 10px; height: 10px; border-radius: 50%; background: hsl(0 0% 100% / 0.18); }
.chat-mock-app { font-size: 0.8rem; font-weight: 600; color: var(--ink-low); letter-spacing: 0.02em; }
.chat-mock-body { padding: 18px 16px; display: flex; flex-direction: column; gap: 14px; }
.chat-row { display: flex; gap: 10px; align-items: flex-start; }
.chat-ava {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 700;
}
.chat-ava-u { background: hsl(0 0% 100% / 0.08); color: var(--ink-mid); }
.chat-ava-ai { background: var(--grad-brand); color: #fff; }
.chat-ava-ai svg { width: 15px; height: 15px; }
.chat-bubble {
  margin: 0; font-size: 0.9rem; color: var(--ink); background: hsl(0 0% 100% / 0.05);
  border-radius: 12px; padding: 10px 13px; line-height: 1.5;
}
.chat-ans { flex: 1; min-width: 0; }
.chat-ans p { margin: 0 0 10px; font-size: 0.9rem; line-height: 1.6; color: var(--ink-mid); }
.chat-ans p strong { color: var(--c1); }
.chat-cite {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600;
  color: var(--ink); padding: 5px 12px; border: 1px solid hsl(195 100% 55% / 0.4);
  border-radius: var(--r-pill); background: hsl(195 100% 55% / 0.08);
}
.chat-cite svg { width: 13px; height: 13px; }
.chat-mock-foot {
  padding: 8px 16px 12px; font-size: 0.72rem; color: var(--ink-low);
  text-align: right; border-top: 1px solid var(--line);
}
@media (max-width: 860px) {
  .what-grid { grid-template-columns: 1fr; gap: 32px; }
  .what-visual { order: 2; }
  .chat-mock { max-width: 420px; margin: 0 auto; }
}

/* HEADER — minimal, modern */
/* Top utility/ticker bar (proof + phone), scrolls away; the nav below stays sticky */
.topbar { background: hsl(228 28% 5% / 0.7); border-bottom: 1px solid hsl(225 14% 16% / 0.5); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 0; }
.topbar-proof { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.topbar-eyebrow { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-low); white-space: nowrap; }
.topbar-stat { font-size: 0.82rem; font-weight: 800; letter-spacing: -0.01em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }
.topbar-actions { display: flex; align-items: center; gap: 18px; }
.topbar-rating { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--ink-mid); white-space: nowrap; }
.topbar-rating svg { width: 13px; height: 13px; color: var(--c4); fill: var(--c4); }
.topbar-phone { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--ink); text-decoration: none; white-space: nowrap; }
.topbar-phone svg { width: 14px; height: 14px; }
.topbar-phone:hover { color: var(--c1); }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: hsl(228 28% 4% / 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid hsl(225 14% 18% / 0.6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
  position: relative;   /* positioning context for the centred dropdowns */
}
.brand-link {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.025em;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 0 24px hsl(195 100% 55% / 0.4);
  position: relative;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 1px;
  border-radius: 8px;
  background: linear-gradient(135deg, hsl(0 0% 100% / 0.1), transparent);
  pointer-events: none;
}

/* Mega menu */
.nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav > a, .nav-trigger {
  color: var(--ink-mid); font-weight: 500; font-size: 0.92rem;
  padding: 9px 14px; border-radius: 10px;
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: none; cursor: pointer;
  font-family: inherit; text-decoration: none;
  transition: all 200ms;
}
.nav > a:hover, .nav-trigger:hover { color: var(--ink); background: hsl(0 0% 100% / 0.04); }
.nav > a.active, .nav-trigger.active { color: var(--ink); background: hsl(0 0% 100% / 0.06); }
.nav-trigger::after { content: '▾'; font-size: 0.7em; opacity: 0.6; }

/* nav-group is static so dropdowns position against .header-inner (centred, never clipped) */
.nav-group { position: static; }
.mega {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: hsl(225 24% 8% / 0.96);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid hsl(225 14% 24% / 0.7);
  border-radius: var(--r-xl); padding: 18px;
  width: min(700px, 92vw);
  max-height: calc(100vh - 96px); overflow: hidden;
  display: none;
  box-shadow: var(--shadow-lg), 0 0 0 1px hsl(0 0% 100% / 0.02) inset;
  z-index: 90;
}
.mega-engage { width: min(740px, 94vw); }
/* Card grid + promo card side-by-side (How We Work / Company menus) */
.mega-with-promo { display: grid; grid-template-columns: 1fr minmax(200px, 240px); gap: 20px; align-items: start; }
.mega::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px; pointer-events: none;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.nav-group.open .mega {
  display: block;
  animation: megaIn 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes megaIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---- Category dropdown menus (Search & Visibility / Growth & Conversion / Engagement) ---- */
.mega-cat-menu { overflow-y: auto; }
.mega-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
.mega-svc-label { display: flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-low); padding: 4px 10px; margin: 2px 0 8px; border-bottom: 1px solid var(--line); }
.mega-svc-label .svc-ico { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 7px; background: hsl(195 100% 55% / 0.12); color: var(--c1); }
.mega-svc-label .svc-ico svg { width: 15px; height: 15px; }
/* WebFX-style wide services panel: 2 icon columns + promo card */
.mega-services { width: min(960px, 94vw); }
.mega-services-grid { display: grid; grid-template-columns: 1fr 1fr 240px; gap: 6px 28px; align-items: start; }
.mcol { min-width: 0; }
.mcol-head {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 11px; text-decoration: none;
  margin-bottom: 4px; transition: all 180ms;
}
.mcol-ico {
  display: flex; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px;
  align-items: center; justify-content: center;
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 4px 16px hsl(195 100% 55% / 0.3);
}
.mcol-ico svg { width: 17px; height: 17px; }
.mcol-htext { min-width: 0; line-height: 1.25; }
.mcol-htext strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.mcol-htext span { font-size: 0.74rem; color: var(--ink-low); }
.mcol-head:hover { background: hsl(195 100% 55% / 0.06); }
.mcol-head:hover .mcol-htext strong { color: var(--c1); }
.mcol-links { display: flex; flex-direction: column; }
.mega-foot {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; padding: 9px 12px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 600; color: var(--c1); text-decoration: none;
  background: hsl(195 100% 55% / 0.08); border: 1px solid hsl(195 100% 55% / 0.25);
  transition: all 180ms;
}
.mega-foot svg { width: 14px; height: 14px; }
.mega-foot:hover { background: hsl(195 100% 55% / 0.14); border-color: hsl(195 100% 55% / 0.5); gap: 9px; }

/* ---- Sub-page link rows (shared by the category columns) ---- */
.mega-vlink {
  display: block; padding: 8px 12px; border-radius: 9px;
  font-size: 0.84rem; color: var(--ink-mid); text-decoration: none;
  transition: all 160ms; position: relative;
}
.mega-vlink:hover { color: var(--c1); background: hsl(195 100% 55% / 0.09); padding-left: 16px; }

/* Engagement-models view */
.mega-model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mega-model-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 12px; text-decoration: none;
  background: hsl(0 0% 100% / 0.03); border: 1px solid hsl(225 14% 20% / 0.6);
  transition: all 180ms;
}
.mega-model-card:last-child { grid-column: 1 / -1; }
.mega-model-ico {
  display: flex; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px;
  align-items: center; justify-content: center;
  background: hsl(0 0% 100% / 0.05); color: var(--c1);
}
.mega-model-ico svg { width: 16px; height: 16px; }
.mega-model-text { line-height: 1.3; min-width: 0; }
.mega-model-text strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.mega-model-text span { font-size: 0.78rem; color: var(--ink-low); }
.mega-model-card:hover { border-color: hsl(195 100% 55% / 0.5); background: hsl(195 100% 55% / 0.06); transform: translateY(-1px); }
.mega-model-card:hover .mega-model-ico { background: var(--grad-brand); color: #fff; }

/* "All Services" overview grid */
.mega-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mega-hub-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 12px; text-decoration: none;
  background: hsl(0 0% 100% / 0.03); border: 1px solid hsl(225 14% 20% / 0.6);
  transition: all 180ms;
}
.mega-hub-ico {
  display: flex; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 9px;
  align-items: center; justify-content: center;
  background: hsl(0 0% 100% / 0.05); color: var(--c1); transition: all 180ms;
}
.mega-hub-ico svg { width: 17px; height: 17px; }
.mega-hub-text { line-height: 1.3; min-width: 0; }
.mega-hub-text strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.mega-hub-text span { font-size: 0.77rem; color: var(--ink-low); }
.mega-hub-card:hover { border-color: hsl(195 100% 55% / 0.5); background: hsl(195 100% 55% / 0.06); transform: translateY(-1px); }
.mega-hub-card:hover .mega-hub-ico { background: var(--grad-brand); color: #fff; box-shadow: 0 4px 16px hsl(195 100% 55% / 0.35); }

/* Popup lead-capture modal */
.lead-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lead-modal[hidden] { display: none; }
.lead-modal-overlay { position: absolute; inset: 0; background: hsl(228 30% 3% / 0.74); backdrop-filter: blur(6px); }
.lead-modal-card { position: relative; z-index: 1; width: min(480px, 100%); max-height: 92vh; overflow-y: auto; background: hsl(225 24% 8%); border: 1px solid var(--line-strong); border-radius: var(--r-2xl); padding: 30px 26px; box-shadow: var(--shadow-lg); animation: leadIn 280ms cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes leadIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.lead-modal-glow { position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; background: radial-gradient(circle, hsl(195 100% 55% / 0.3), transparent 70%); filter: blur(24px); pointer-events: none; }
.lead-modal-close { position: absolute; top: 10px; right: 12px; z-index: 2; background: none; border: none; color: var(--ink-mid); font-size: 1.9rem; line-height: 1; cursor: pointer; padding: 2px 10px; border-radius: 8px; }
.lead-modal-close:hover { color: var(--ink); background: hsl(0 0% 100% / 0.06); }
.lead-modal-card h2 { font-size: 1.4rem; margin: 8px 0; line-height: 1.2; }
.lead-modal-sub { color: var(--ink-mid); font-size: 0.9rem; line-height: 1.5; margin-bottom: 18px; }
.lead-modal-fine { font-size: 0.76rem; color: var(--ink-low); text-align: center; margin: 12px 0 0; }
.lead-modal-success { text-align: center; padding: 24px 4px; }
.lead-modal-check { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.lead-modal-check svg { width: 28px; height: 28px; }
.lead-modal .field { margin-bottom: 12px; }
body.lead-open { overflow: hidden; }

/* Free-tool widgets (calculators / checker) */
.tool-widget { max-width: 520px; margin: 0 auto; display: grid; gap: 14px; background: hsl(225 22% 9% / 0.5); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.tool-widget label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--ink-mid); }
.tool-widget input, .tool-widget select, .tool-widget textarea { padding: 11px 14px; border-radius: 10px; border: 1px solid var(--line-strong); background: hsl(225 22% 6% / 0.8); color: var(--ink); font-size: 1rem; font-family: inherit; resize: vertical; }
.tool-result { margin-top: 6px; padding: 16px; border-radius: 10px; background: hsl(195 100% 55% / 0.1); border: 1px solid hsl(195 100% 55% / 0.3); color: var(--ink); font-size: 1.15rem; font-weight: 700; text-align: center; line-height: 1.6; }
.tool-checklist { text-align: left; }
.tool-checklist label { flex-direction: row; align-items: flex-start; gap: 10px; cursor: pointer; font-weight: 500; color: var(--ink-mid); }
.tool-checklist input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }

/* Promo panel */
.mega-promo {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 18px; border-radius: 16px;
  background: linear-gradient(160deg, hsl(232 40% 14% / 0.8), hsl(225 30% 9% / 0.8));
  border: 1px solid hsl(225 14% 24% / 0.7);
}
.mega-promo-glow {
  position: absolute; top: -40px; right: -40px; width: 160px; height: 160px;
  background: radial-gradient(circle, hsl(195 100% 55% / 0.35), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.mega-promo-eyebrow {
  position: relative; align-self: flex-start;
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c1); padding: 4px 10px; border-radius: var(--r-pill);
  background: hsl(195 100% 55% / 0.12); border: 1px solid hsl(195 100% 55% / 0.3);
  margin-bottom: 12px;
}
.mega-promo-title {
  position: relative; font-size: 1.02rem; font-weight: 700; color: var(--ink);
  line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 6px;
}
.mega-promo-desc { position: relative; font-size: 0.82rem; color: var(--ink-mid); line-height: 1.5; margin: 0 0 16px; }
.mega-promo-cta { position: relative; width: 100%; justify-content: center; margin-top: auto; }
.mega-promo-meta {
  position: relative; display: flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 0.76rem; color: var(--ink-low); font-weight: 500;
}
.mega-promo-meta svg { width: 13px; height: 13px; color: var(--c4); fill: var(--c4); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.phone-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--ink-mid); padding: 8px;
  border-radius: 8px;
  transition: all 200ms;
}
.phone-link:hover { color: var(--c1); background: hsl(0 0% 100% / 0.04); }

/* BUTTONS — modern gradient */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; font-size: 0.92rem; font-weight: 600;
  border-radius: var(--r-pill);
  min-height: 44px; min-width: 44px;  /* WCAG 2.5.5 tap target ≥44px */
  cursor: pointer; font-family: inherit; text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg-0);
  box-shadow: 0 0 0 1px hsl(0 0% 100% / 0.1), 0 8px 24px hsl(195 100% 55% / 0.25);
}
.btn-primary:hover {
  background: white; color: var(--bg-0);
  box-shadow: 0 0 0 1px hsl(0 0% 100% / 0.2), 0 12px 32px hsl(195 100% 55% / 0.4);
  transform: translateY(-1px);
}
.btn-gradient {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 0 0 1px hsl(195 100% 55% / 0.3), 0 8px 32px hsl(195 100% 55% / 0.35);
}
.btn-gradient:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px hsl(195 100% 55% / 0.5), 0 12px 40px hsl(195 100% 55% / 0.5);
}
.btn-outline {
  background: hsl(0 0% 100% / 0.06);
  color: var(--ink);
  border-color: hsl(195 100% 55% / 0.45);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: hsl(195 100% 55% / 0.12);
  border-color: hsl(195 100% 55% / 0.75);
  color: var(--ink);
}
.btn-ghost { background: transparent; color: var(--ink-mid); }
.btn-ghost:hover { color: var(--ink); background: hsl(0 0% 100% / 0.04); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none; background: transparent; border: none;
  padding: 10px; cursor: pointer; color: var(--ink);
}
.hamburger svg { width: 22px; height: 22px; }

/* HERO — full modern treatment */
.hero {
  padding: 72px 0 60px;
  position: relative;
  min-height: min(600px, 80vh);
  display: flex;
  align-items: center;
}
.hero .container { width: 100%; }
.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
/* Drop the hero card so its top lines up with the H1, not the eyebrow above it */
.hero .glass-card { margin-top: 60px; }
.hero h1 {
  margin: 14px 0 20px;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.hero p.lead { margin: 0 0 36px; font-size: clamp(1.1rem, 1.4vw, 1.25rem); max-width: 580px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: hsl(228 25% 11% / 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 0.8rem; color: var(--ink-mid);
}
.trust-pill strong { color: var(--ink); font-weight: 600; }
.trust-pill svg { width: 12px; height: 12px; color: var(--c1); }

/* Modern glass results card */
.glass-card {
  position: relative;
  padding: 28px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, hsl(195 100% 55% / 0.08), transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 100%, hsl(280 85% 60% / 0.06), transparent 60%),
    hsl(225 22% 9% / 0.6);
  backdrop-filter: blur(20px) saturate(160%);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass-card::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse at 50% -50%, hsl(195 100% 55% / 0.25), transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

.results-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.results-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px hsl(195 100% 55% / 0.4);
}
.results-title { flex: 1; }
.results-title strong { display: block; color: var(--ink); font-weight: 600; font-size: 1rem; }
.results-title span { display: block; color: var(--ink-low); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: hsl(150 75% 50% / 0.15); color: var(--success);
  padding: 5px 11px; border-radius: var(--r-pill);
  font-size: 0.74rem; font-weight: 600;
  border: 1px solid hsl(150 75% 50% / 0.3);
}
.status-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: ping 2s ease-in-out infinite;
}

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.stat-tile {
  background: hsl(228 25% 11% / 0.6);
  border: 1px solid var(--line);
  padding: 18px; border-radius: var(--r-md);
  transition: all 250ms;
}
.stat-tile:hover { border-color: hsl(195 100% 55% / 0.4); }
.stat-num {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.85rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.stat-label { color: var(--ink-low); font-size: 0.78rem; margin-top: 6px; }
.results-breakdown { border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 8px; }
.breakdown-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-size: 0.85rem;
}
.breakdown-row strong { color: var(--ink); font-weight: 600; }
.breakdown-row span { color: var(--c1); font-weight: 600; font-size: 0.82rem; }

/* PAGE HEADER (inner pages) */
.page-header {
  padding: 100px 0 72px;
  text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 16px; }
.breadcrumb { color: var(--ink-low); font-size: 0.88rem; margin-top: 20px; }
.breadcrumb a { color: var(--ink-mid); }
.breadcrumb a:hover { color: var(--c1); }

/* MARQUEE (logo / trust scroll) */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 80px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-low); font-size: 0.92rem; font-weight: 500;
  white-space: nowrap;
}
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c1); opacity: 0.5; }

/* BENTO GRID (modern asymmetric layout) */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento-card {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, hsl(195 100% 55% / 0.06), transparent 50%),
    hsl(225 22% 9% / 0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), hsl(195 100% 55% / 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 250ms;
  pointer-events: none;
}
.bento-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.bento-card:hover::before { opacity: 1; }
.bento-card > * { position: relative; z-index: 1; }
.bento-card .icon-tile {
  width: 44px; height: 44px; border-radius: 11px;
  background: hsl(195 100% 55% / 0.1);
  color: var(--c1);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 1px solid hsl(195 100% 55% / 0.2);
}
.bento-card .icon-tile svg { width: 20px; height: 20px; }
.bento-card h3 { margin-bottom: 8px; }
.bento-card p { color: var(--ink-mid); font-size: 0.94rem; line-height: 1.55; margin: 0; }
.bento-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--c1); font-weight: 600; font-size: 0.88rem;
}
.bento-card .arrow::after { content: '→'; transition: transform 200ms; }
.bento-card:hover .arrow::after { transform: translateX(4px); }

/* Bento card sizes */
.bento-2 { grid-column: span 2; }
.bento-3 { grid-column: span 3; }
.bento-4 { grid-column: span 4; }
.bento-6 { grid-column: span 6; }

/* Featured bento card (bigger, with stat) */
.bento-feature {
  background:
    radial-gradient(circle at 100% 0%, hsl(195 100% 55% / 0.12), transparent 50%),
    radial-gradient(circle at 0% 100%, hsl(280 85% 60% / 0.08), transparent 50%),
    hsl(225 22% 9% / 0.7);
  padding: 36px;
}
.bento-feature h3 { font-size: 1.5rem; }
.bento-stat {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 16px 0 8px;
}

/* GRIDS */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* CARDS (basic) */
.card {
  position: relative;
  background: hsl(225 22% 9% / 0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: hsl(195 100% 55% / 0.1);
  color: var(--c1);
  border: 1px solid hsl(195 100% 55% / 0.2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 10px; }
.card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; font-size: 0.9rem;
  color: var(--c1);
}
.card .read-more::after { content: '→'; transition: transform 200ms; }
.card:hover .read-more::after { transform: translateX(4px); }

/* STATS strip — modern numerical display */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stats-strip .big-num {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stats-strip .label { color: var(--ink-low); font-size: 0.92rem; letter-spacing: -0.01em; }

/* PROCESS steps - modern numbered cards */
.process { counter-reset: step; display: grid; gap: 16px; }
.process-step {
  position: relative;
  background:
    linear-gradient(135deg, hsl(225 22% 9% / 0.8), hsl(225 22% 7% / 0.6));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 28px 92px;
  transition: all 300ms;
}
.process-step:hover { border-color: hsl(195 100% 55% / 0.3); }
.process-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 24px; top: 24px;
  width: 48px; height: 48px;
  background: var(--grad-brand);
  color: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 8px 20px hsl(195 100% 55% / 0.3);
}
.process-step h4 { margin: 0 0 8px; color: var(--ink); font-size: 1.15rem; }
.process-step p { margin: 0; color: var(--ink-mid); font-size: 0.95rem; line-height: 1.6; }

/* PRICING — modern tier cards */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card {
  position: relative;
  background: hsl(225 22% 9% / 0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, hsl(195 100% 55% / 0.05), transparent 60%);
  opacity: 0; transition: opacity 300ms;
  pointer-events: none;
}
.price-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.price-card:hover::before { opacity: 1; }
.price-card.featured {
  background:
    radial-gradient(circle at 50% 0%, hsl(195 100% 55% / 0.15), transparent 60%),
    hsl(225 22% 9% / 0.85);
  border-color: hsl(195 100% 55% / 0.35);
  box-shadow: 0 0 0 1px hsl(195 100% 55% / 0.15), var(--shadow-lg);
  overflow: visible;
  padding-bottom: 44px;
}
.price-card.featured::after {
  content: 'Most Popular';
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  background: var(--grad-brand);
  color: white;
  padding: 5px 14px; border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: 0 8px 24px hsl(195 100% 55% / 0.4);
}
.price-card > * { position: relative; }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }
.price-card h3 { color: var(--ink); margin-bottom: 6px; font-size: 1.2rem; }
.price-card .tier-desc { color: var(--ink-low); font-size: 0.85rem; margin-bottom: 20px; }
.price-amount {
  font-size: 2.5rem; font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.price-period { color: var(--ink-low); font-size: 0.85rem; margin-bottom: 28px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; display: grid; gap: 8px; }
.price-features li {
  padding: 0 0 0 26px; position: relative;
  color: var(--ink-mid); font-size: 0.88rem; line-height: 1.55;
}
.price-features li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: hsl(195 100% 55% / 0.12);
  border: 1px solid hsl(195 100% 55% / 0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300baff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.price-card .btn { width: 100%; justify-content: center; }

/* CASE STUDIES */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card {
  position: relative;
  background: hsl(225 22% 9% / 0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, hsl(195 100% 55% / 0.06), transparent 60%);
  opacity: 0; transition: opacity 300ms;
  pointer-events: none;
}
.case-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.case-card:hover::before { opacity: 1; }
.case-card > * { position: relative; }
.case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: hsl(195 100% 55% / 0.1);
  color: var(--c1);
  border: 1px solid hsl(195 100% 55% / 0.2);
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 11px; border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.case-metric {
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  margin: 6px 0 6px;
  line-height: 1;
}
.case-caption { color: var(--ink-low); font-size: 0.85rem; margin: 0 0 16px; }
.case-quote {
  color: var(--ink-mid); font-style: italic; font-size: 0.92rem;
  border-left: 2px solid var(--c1); padding-left: 14px;
  margin: 16px 0;
}
.case-author { color: var(--ink); font-weight: 600; font-size: 0.88rem; }
.case-author small { display: block; color: var(--ink-low); font-weight: 400; font-size: 0.78rem; margin-top: 2px; }

/* FAQ — modern accordion */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 8px; }
.faq-item {
  background: hsl(225 22% 9% / 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 250ms;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] {
  background:
    radial-gradient(circle at 0% 0%, hsl(195 100% 55% / 0.04), transparent 60%),
    hsl(225 22% 9% / 0.8);
  border-color: hsl(195 100% 55% / 0.3);
}
.faq-item summary {
  padding: 22px 26px; cursor: pointer; font-weight: 600;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.6rem; color: var(--c1);
  transition: transform 250ms; flex-shrink: 0; line-height: 1; font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 26px 24px; color: var(--ink-mid); font-size: 0.95rem; line-height: 1.7; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--ink); }
.faq-body a { color: var(--c1); }

/* CTA panel — premium */
.cta-panel {
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, hsl(195 100% 55% / 0.35), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, hsl(280 85% 60% / 0.3), transparent 70%),
    hsl(225 22% 9%);
  color: var(--ink);
  border: 1px solid hsl(195 100% 55% / 0.3);
  border-radius: var(--r-2xl);
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 40px 100px -30px hsl(195 100% 55% / 0.4);
}
.cta-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, hsl(280 85% 60% / 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, hsl(195 100% 55% / 0.15), transparent 50%);
  pointer-events: none;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: var(--ink); margin: 12px 0 16px; font-size: clamp(2rem, 4vw, 3.25rem); }
.cta-panel p { color: var(--ink-mid); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Two-column content */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col .glass-card { padding: 32px; }
.checklist { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.checklist li { padding: 4px 0 4px 36px; position: relative; color: var(--ink-mid); line-height: 1.6; }
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 24px; height: 24px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
  box-shadow: 0 4px 12px hsl(195 100% 55% / 0.3);
}

/* Section header (eyebrow + h2 + lead) */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head .eyebrow { margin: 0 auto 24px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-card {
  display: flex; gap: 18px; padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: hsl(195 100% 55% / 0.1);
  color: var(--c1);
  border: 1px solid hsl(195 100% 55% / 0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 { margin: 0 0 4px; font-size: 1rem; color: var(--ink); }
.contact-card p { margin: 0; color: var(--ink-mid); font-size: 0.92rem; }
.contact-card a { color: var(--c1); }

/* FORM */
.form {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, hsl(195 100% 55% / 0.08), transparent 60%),
    hsl(225 22% 9% / 0.8);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
}
.form .field { margin-bottom: 18px; }
.form label { display: block; font-weight: 500; font-size: 0.82rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.005em; }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 16px; font-size: 0.95rem;
  background: hsl(228 25% 6% / 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md); color: var(--ink);
  font-family: inherit; transition: all 200ms;
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-low); }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--c1);
  box-shadow: 0 0 0 3px hsl(195 100% 55% / 0.15);
  background: hsl(228 25% 8% / 0.8);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }

/* FOOTER */
/* ---- Pre-footer CTA band ---- */
.prefooter-cta { position: relative; z-index: 2; padding: 24px 0 0; }
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--r-xl);
  border: 1px solid hsl(225 14% 24% / 0.7);
  background: linear-gradient(160deg, hsl(225 24% 9% / 0.97), hsl(228 28% 6% / 0.97));
  padding: 60px 32px;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px; pointer-events: none; background: var(--grad-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.cta-band-glow {
  position: absolute; top: -45%; left: 50%; transform: translateX(-50%);
  width: 620px; height: 620px; max-width: 120%; pointer-events: none;
  background: radial-gradient(circle, hsl(195 100% 55% / 0.18), transparent 62%);
}
.cta-band-eyebrow {
  position: relative; display: inline-block; margin-bottom: 16px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c1); padding: 6px 14px; border-radius: var(--r-pill);
  background: hsl(195 100% 55% / 0.1); border: 1px solid hsl(195 100% 55% / 0.25);
}
.cta-band-title {
  position: relative; margin: 0 auto 14px; max-width: 700px;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--ink);
}
.cta-band-title em {
  font-style: normal; background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-band-sub {
  position: relative; margin: 0 auto 28px; max-width: 580px;
  color: var(--ink-low); font-size: 1.02rem; line-height: 1.6;
}
.cta-band-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band-trust { position: relative; margin: 22px 0 0; color: var(--ink-mid); font-size: 0.84rem; }

.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  margin-top: 80px;
  position: relative; z-index: 2;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-low); font-size: 0.9rem; max-width: 300px; line-height: 1.65; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: hsl(225 22% 12% / 0.6);
  border: 1px solid var(--line);
  border-radius: 50%; color: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms;
}
.footer-socials a:hover {
  background: var(--c1); color: white; border-color: var(--c1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsl(195 100% 55% / 0.4);
}
.site-footer h4 {
  color: var(--ink); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-list a {
  color: var(--ink-low); font-size: 0.9rem;
  transition: color 180ms;
}
.footer-list a:hover { color: var(--c1); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  color: var(--ink-low); font-size: 0.85rem;
}
.footer-bottom a { color: var(--ink-mid); margin: 0 10px; }
.footer-bottom a:hover { color: var(--c1); }

/* ---- Footer proof line, markets, trust row ---- */
.footer-proof {
  margin-top: 16px; color: var(--ink-mid); font-size: 0.85rem; line-height: 1.5;
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.footer-proof svg { width: 15px; height: 15px; color: var(--c1); flex: 0 0 auto; }
.footer-h4-spaced { margin-top: 24px; }
.footer-markets { color: var(--ink-low); font-size: 0.85rem; }
.footer-trust {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-trust + .footer-bottom { margin-top: 28px; }
.footer-trust-chips { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer-trust-chips span {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink-mid); font-size: 0.84rem; font-weight: 500;
}
.footer-trust-chips svg { width: 15px; height: 15px; color: var(--c1); flex: 0 0 auto; }
.footer-crypto {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: hsl(195 100% 55% / 0.08); border: 1px solid hsl(195 100% 55% / 0.28);
  color: var(--c1); font-size: 0.85rem; font-weight: 600; transition: all 180ms;
}
.footer-crypto svg { width: 16px; height: 16px; }
.footer-crypto:hover { background: hsl(195 100% 55% / 0.16); border-color: hsl(195 100% 55% / 0.5); transform: translateY(-1px); }

@media (max-width: 640px) {
  .cta-band { padding: 40px 22px; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .footer-trust { flex-direction: column; align-items: flex-start; }
}

/* MOBILE STICKY CTA */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: hsl(228 28% 4% / 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  z-index: 90;
  gap: 8px;
}
.sticky-cta .btn { flex: 1; padding: 13px; font-size: 0.9rem; }

/* Mobile */
/* Header/nav collapses to the hamburger earlier than the rest of the layout,
   because three category menus need more room than a single "Services" item. */
@media (max-width: 1100px) {
  .hamburger { display: inline-flex; }
  .nav {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: hsl(228 28% 4% / 0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 16px; gap: 4px;
    box-shadow: var(--shadow-lg); align-items: stretch;
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav > a, .nav-trigger { padding: 14px 16px; font-size: 1rem; width: 100%; }
  .nav > a { justify-content: flex-start; }
  .nav-trigger { justify-content: space-between; }
  .mega {
    position: static; transform: none; opacity: 1;
    display: none; width: auto; max-height: none; overflow: visible;
    box-shadow: none; border: none; padding: 4px 0 6px 6px;
    min-width: 0; background: transparent; animation: none;
  }
  .mega::before { display: none; }
  .nav-trigger.open + .mega,
  .nav-group.open .mega { display: block; animation: none; }
  /* Stack the category columns into one list; drop the icon-row blurbs */
  .mega-cols, .mega-model-grid, .mega-services-grid, .mega-with-promo { display: block; }
  .mega-promo { display: none; }
  .topbar { display: none; }
  .mcol { margin-bottom: 8px; }
  .mcol-head { margin-bottom: 0; }
  .mcol-htext span, .mega-model-text span { display: none; }
  .mega-vlink { padding: 11px 12px; min-height: 44px; display: flex; align-items: center; }
  .mega-model-card { border: none; background: transparent; padding: 10px 12px; }
  .mega-model-card:last-child { grid-column: auto; }
  .mega-foot { margin: 8px 0 4px; }
  .header-actions .phone-link { display: none; }
}
@media (max-width: 960px) {
  .hero { padding: 56px 0 64px; min-height: 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero .glass-card { order: -1; max-width: 480px; margin: 0 auto; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-2, .bento-3, .bento-4 { grid-column: span 2; }
  .grid-3, .grid-4, .case-grid, .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .cta-panel { padding: 48px 28px; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-2, .bento-3, .bento-4 { grid-column: span 1; }
  .grid-3, .grid-4, .case-grid, .stats-strip, .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .card, .price-card { padding: 24px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .glass-card { padding: 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--c1);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection { background: hsl(195 100% 55% / 0.3); color: var(--ink); }

/* Comparison table (pay-with-crypto and future compare blocks) */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: hsl(225 22% 9% / 0.6);
}
.compare-table { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 0.95rem; }
.compare-table caption { text-align: left; padding: 16px 18px 4px; color: var(--ink-low); font-size: 0.82rem; line-height: 1.5; }
.compare-table th,
.compare-table td { padding: 14px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare-table thead th { color: var(--ink); font-weight: 700; font-size: 1rem; border-bottom: 1px solid var(--line-strong); }
.compare-table tbody th { color: var(--ink-mid); font-weight: 600; white-space: nowrap; }
.compare-table td { color: var(--ink-mid); }
.compare-table thead th:last-child { background: hsl(195 100% 55% / 0.14); color: var(--ink); }
.compare-table tbody td:last-child {
  background: hsl(195 100% 55% / 0.07);
  color: var(--ink);
  font-weight: 600;
  border-left: 1px solid hsl(195 100% 55% / 0.25);
  border-right: 1px solid hsl(195 100% 55% / 0.25);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:last-child td:last-child { border-bottom: 1px solid hsl(195 100% 55% / 0.25); }

/* Key takeaways (TL;DR answer block) */
.takeaways {
  max-width: 880px; margin: 0 auto; background: hsl(225 22% 9% / 0.5);
  border: 1px solid var(--line); border-left: 3px solid var(--c1);
  border-radius: var(--r-lg); padding: 26px 32px;
}
.takeaways .eyebrow { margin-bottom: 14px; }
.takeaways-list { margin: 0; padding-left: 22px; display: grid; gap: 10px; }
.takeaways-list li { color: var(--ink-mid); line-height: 1.55; }
.takeaways-list li::marker { color: var(--c1); }

/* At a glance — quick facts */
.quick-facts {
  margin: 0; max-width: 880px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
}
.qf-row {
  display: flex; flex-direction: column; gap: 3px; padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.qf-row:nth-child(odd) { border-right: 1px solid var(--line); }
.qf-row dt { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-low); margin: 0; }
.qf-row dd { margin: 0; color: var(--ink); font-size: 0.98rem; font-weight: 500; }

/* Reviews / rating */
.reviews-card {
  max-width: 880px; margin: 0 auto; text-align: center;
  background: radial-gradient(circle at 50% 0%, hsl(195 100% 55% / 0.1), transparent 65%), hsl(225 22% 9% / 0.6);
  border: 1px solid var(--line); border-radius: var(--r-2xl); padding: 40px 32px;
}
.reviews-stars { display: inline-flex; gap: 4px; color: var(--c4); margin-bottom: 12px; }
.reviews-stars svg { width: 22px; height: 22px; fill: var(--c4); }
.reviews-score { font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; }
.reviews-score strong { font-size: 1.5rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.reviews-note { color: var(--ink-mid); max-width: 520px; margin: 0 auto 20px; line-height: 1.6; }

/* E-E-A-T line */
.eeat-line { text-align: center; color: var(--ink-low); font-size: 0.88rem; max-width: 880px; margin: 0 auto; }

@media (max-width: 560px) {
  .quick-facts { grid-template-columns: 1fr; }
  .qf-row:nth-child(odd) { border-right: none; }
  .takeaways { padding: 22px 20px; }
}

/* Who it's for */
.whofor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
.whofor-card { background: hsl(225 22% 9% / 0.6); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 26px 28px; }
.whofor-card h3 { font-size: 1.1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.whofor-card ul { margin: 0; padding-left: 20px; display: grid; gap: 9px; }
.whofor-card li { color: var(--ink-mid); line-height: 1.55; }
.whofor-yes { border-left: 3px solid var(--success); }
.whofor-yes h3::before { content: '✓'; color: var(--success); font-weight: 700; }
.whofor-yes li::marker { color: var(--success); }
.whofor-no { border-left: 3px solid var(--ink-low); }
.whofor-no h3::before { content: '—'; color: var(--ink-low); font-weight: 700; }
.whofor-no li { color: var(--ink-low); }

/* Common mistake callout */
.mistake-card {
  max-width: 880px; margin: 0 auto; background: hsl(20 100% 65% / 0.06);
  border: 1px solid hsl(20 100% 65% / 0.25); border-left: 3px solid var(--c4);
  border-radius: var(--r-lg); padding: 24px 30px;
}
.mistake-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c4); margin-bottom: 8px; }
.mistake-card p { margin: 0; color: var(--ink-mid); line-height: 1.7; }

/* Related guides / posts */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.guide-card {
  display: flex; flex-direction: column; gap: 8px; padding: 22px 22px 18px;
  background: hsl(225 22% 9% / 0.6); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.guide-card:hover { border-color: hsl(195 100% 55% / 0.4); transform: translateY(-3px); }
.guide-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c1); }
.guide-card strong { color: var(--ink); font-size: 1.02rem; line-height: 1.35; }
.guide-go { margin-top: auto; color: var(--ink-low); font-size: 0.85rem; font-weight: 600; }
.guide-card:hover .guide-go { color: var(--c1); }
.rel-hubs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.rel-hub {
  font-size: 0.9rem; font-weight: 600; color: var(--ink); padding: 9px 16px;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: hsl(225 22% 9% / 0.6);
}
.rel-hub:hover { color: var(--c1); border-color: hsl(195 100% 55% / 0.4); }
@media (max-width: 760px) {
  .whofor-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
}

/* Blog */
.hero-post { padding: 72px 0 48px; min-height: 0; }
.post-head { max-width: 820px; margin: 0 auto; text-align: center; }
.post-head h1 { margin-bottom: 16px; }
.post-meta { color: var(--ink-low); font-size: 0.9rem; }
.post-intro { margin-top: 28px; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { margin-bottom: 16px; }
.post-body p { color: var(--ink-mid); line-height: 1.8; font-size: 1.05rem; }
.post-body a { color: var(--c1); text-decoration: underline; text-underline-offset: 2px; }
.post-body a:hover { color: var(--ink); }

/* "What is" left column — modern, scannable (overrides the bulky single paragraph) */
.what-grid { align-items: center; }
.what-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem); line-height: 1.12;
  letter-spacing: -0.03em; text-wrap: balance; margin-bottom: 18px;
}
.what-lead-strong {
  font-size: 1.16rem; line-height: 1.55; color: var(--ink); font-weight: 500; margin: 0 0 20px;
}
.what-points { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 13px; }
.what-points li { position: relative; padding-left: 28px; color: var(--ink-mid); line-height: 1.55; font-size: 0.98rem; }
.what-points li::before {
  content: ''; position: absolute; left: 2px; top: 8px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--c1); box-shadow: 0 0 10px hsl(195 100% 55% / 0.8);
}
.what-stat {
  margin: 0; padding-top: 16px; border-top: 1px solid var(--line);
  color: var(--ink-low); font-size: 0.95rem; line-height: 1.6;
}

/* Subtle modern hover glow on benefit + feature cards */
.card:hover { box-shadow: 0 18px 40px hsl(228 28% 2% / 0.5), 0 0 0 1px hsl(195 100% 55% / 0.12); }
.bento-card:hover { box-shadow: 0 18px 40px hsl(228 28% 2% / 0.5); border-color: hsl(195 100% 55% / 0.25); }
