/* =========================================
   1. CSS VARIABLES
========================================= */
:root {
  --accent:       #22C55E;
  --accent-hover: #16A34A;
  --accent-rgb:   34, 197, 94;

  --bg:           #ffffff;
  --bg-alt:       #F8FAFC;
  --bg-card:      #F1F5F9;
  --bg-dark:      #0F172A;

  --text:         #0F172A;
  --text-sub:     #475569;
  --text-muted:   #94A3B8;
  --text-on-dark: #F1F5F9;

  --border:       #E2E8F0;
  --radius:       12px;
  --radius-sm:    8px;

  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.10);

  --container:    1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-wrap: break-word;
  max-width: 100%;
}

a      { color: inherit; text-decoration: none; }
img    { max-width: 100%; display: block; }
ul     { list-style: none; }
strong { font-weight: 600; }

/* =========================================
   3. LAYOUT
========================================= */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.sec       { padding: 96px 0; }
.sec--alt  { background: var(--bg-alt); }
.sec--dark { background: var(--bg-dark); color: var(--text-on-dark); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* =========================================
   4. TYPOGRAPHY
========================================= */
h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem);   font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-sub);
  line-height: 1.8;
}

.accent { color: var(--accent); }
.center { text-align: center; }
.muted  { color: var(--text-sub); }

/* =========================================
   5. BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),.30);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 28px rgba(var(--accent-rgb),.45);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--ghost:hover { background: var(--accent); color: #fff; }

.btn--lg { padding: 18px 40px; font-size: 1.05rem; }

/* =========================================
   6. NAVBAR
========================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 12px 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo      { font-size: 1.2rem; font-weight: 900; letter-spacing: -.5px; flex-shrink: 0; color: var(--text); text-decoration: none; }
.logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-sub);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav__link:hover  { color: var(--accent); background: rgba(var(--accent-rgb),.08); }
.nav__link.active { color: var(--accent); background: rgba(var(--accent-rgb),.10); }

.nav__cta { padding: 10px 20px; font-size: .875rem; flex-shrink: 0; }

/* =========================================
   7. HERO — 2 COLUMN
========================================= */
.hero {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .grid-2 { grid-template-columns: minmax(0, 60fr) minmax(0, 40fr); }

.hero__text { display: flex; flex-direction: column; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb),.10);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb),.25);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 24px;
  width: fit-content;
}

.hero__title    { margin-bottom: 14px; }

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.hero__body {
  color: var(--text-sub);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-sub);
}

.hero__note::before { content: '✓'; color: var(--accent); font-weight: 700; }

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat__num { font-size: 1.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat__lbl { font-size: .78rem; color: var(--text-sub); margin-top: 4px; }

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__img-wrap {
  width: 100%;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

/* Mock dashboard shared styles */
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #EF4444; }
.mock-dot:nth-child(2) { background: #F59E0B; }
.mock-dot:nth-child(3) { background: #22C55E; }

.mock-bar {
  flex: 1;
  height: 10px;
  background: var(--border);
  border-radius: 100px;
}

.mock-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mock-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.mock-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}

.mock-metric__val {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.mock-metric__lbl {
  font-size: .65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.mock-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 16px;
}

.mock-bar-item {
  flex: 1;
  background: rgba(var(--accent-rgb),.20);
  border-radius: 3px 3px 0 0;
  transition: background .2s;
}

.mock-bar-item:hover { background: rgba(var(--accent-rgb),.40); }
.mock-bar-item.hi    { background: var(--accent); }

.mock-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--accent-rgb),.08);
  border: 1px solid rgba(var(--accent-rgb),.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.mock-lead__icon {
  width: 32px; height: 32px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.mock-lead__text { font-size: .75rem; line-height: 1.4; }
.mock-lead__name { font-weight: 700; font-size: .8rem; }

.hero__float {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.hero__float-icon { font-size: 1.4rem; }
.hero__float-num  { font-size: 1.1rem; font-weight: 800; color: var(--accent); }
.hero__float-lbl  { font-size: .7rem; color: var(--text-sub); }

/* =========================================
   8. PROBLEM SECTION
========================================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 40px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 500;
}

.icon-box {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}

.icon-box--red { background: rgba(239,68,68,.10); }
.icon-box--grn { background: rgba(var(--accent-rgb),.12); }

.callout {
  margin-top: 36px;
  padding: 28px 32px;
  background: rgba(var(--accent-rgb), .08);
  border: 2px solid rgba(var(--accent-rgb), .30);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), .08);
}

/* =========================================
   9. WHY IT FAILS — FLOW
========================================= */
.flow-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.flow-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.flow-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.flow-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  min-width: 34px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
}

.flow-card__icon { font-size: 2rem; line-height: 1; }
.flow-card h3    { margin-bottom: 8px; }
.flow-card p     { font-size: .875rem; color: var(--text-sub); }

.flow-result {
  margin-top: 28px;
  padding: 24px;
  text-align: center;
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.18);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
}

/* =========================================
   10. METHOD
========================================= */
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  border-top: 3px solid var(--accent);
}

.method-step {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}

.method-card h3 { margin-bottom: 10px; }
.method-card p  { font-size: .875rem; color: var(--text-sub); }

/* =========================================
   11. POSITIONING BAND
========================================= */
.positioning {
  padding: 72px 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.positioning__hl {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.35;
  color: #F1F5F9;
  margin-bottom: 12px;
}

.positioning__sub { font-size: 1rem; color: #94A3B8; }

/* =========================================
   12. SERVICE CARDS
========================================= */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card__emoji { font-size: 2rem; margin-bottom: 16px; }
.service-card h3     { margin-bottom: 10px; }
.service-card p      { font-size: .875rem; color: var(--text-sub); }

/* =========================================
   13. PROCESS STEPS
========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: var(--border);
}

.step { text-align: center; position: relative; }

.step__dot {
  width: 56px; height: 56px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  transition: border-color .2s;
  position: relative;
  z-index: 1;
}

.step:hover .step__dot { border-color: var(--accent); }

.step__num   { font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.step__title { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step__desc  { font-size: .8rem; color: var(--text-sub); }

/* =========================================
   14. RESULTS
========================================= */
.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  font-weight: 500;
}

.results-list li:last-child { border-bottom: none; }

.check {
  width: 26px; height: 26px; min-width: 26px;
  background: rgba(var(--accent-rgb),.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}

.metric-big     { font-size: 3.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.metric-label   { font-size: .85rem; color: var(--text-sub); margin-top: 6px; }
.metric-divider { height: 1px; background: var(--border); margin: 24px 0; }

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-mini .metric-big { font-size: 2rem; }

/* =========================================
   15. FILTER (WHO IT'S FOR)
========================================= */
.filter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.filter-card--yes { border-top: 4px solid var(--accent); }
.filter-card--no  { border-top: 4px solid #EF4444; }

.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.filter-badge--yes { background: rgba(var(--accent-rgb),.12); color: var(--accent); }
.filter-badge--no  { background: rgba(239,68,68,.10); color: #EF4444; }

.filter-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

.filter-list li:last-child { border-bottom: none; }

/* =========================================
   16. OFFER
========================================= */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.offer-item__icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(var(--accent-rgb),.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.offer-item h3 {
  font-size: .95rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.offer-item h3::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: rgba(var(--accent-rgb), .15);
  color: var(--accent);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
}

.offer-item p  { font-size: .82rem; color: var(--text-sub); }

/* =========================================
   17. FINAL CTA
========================================= */
.final-cta      { text-align: center; }
.final-cta h2   { color: #F1F5F9; margin-bottom: 16px; }
.final-cta p    { font-size: 1.1rem; color: #94A3B8; max-width: 460px; margin: 0 auto 36px; }
.final-note     { font-size: .85rem !important; color: #64748B !important; margin-top: 16px !important; }

/* =========================================
   18. FOOTER
========================================= */
.footer {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__logo      { font-size: 1.3rem; font-weight: 900; margin-bottom: 10px; }
.footer__logo span { color: var(--accent); }
.footer p          { font-size: .85rem; color: var(--text-sub); }
.footer a          { color: var(--accent); }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 4px;
  margin: 20px 0 8px;
}

.footer__nav-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-sub);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
}

.footer__nav-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), .05);
}

.footer__divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto;
  opacity: .4;
}

/* =========================================
   19. STICKY CONTACT BUTTON
========================================= */
.contact-sticky {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
}

.contact-fab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 13px 22px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb),.40);
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.contact-fab:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 32px rgba(var(--accent-rgb),.50);
}

.contact-fab svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact-pulse {
  position: absolute;
  top: -3px; right: -3px;
  width: 13px; height: 13px;
  background: #EF4444;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}

/* =========================================
   20. ANIMATIONS
========================================= */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}

.anim.in { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s ease, transform .4s ease;
}

.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: .08s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .24s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(6) { transition-delay: .40s; }

/* =========================================
   21. RESPONSIVE — TABLET (≤960px)
========================================= */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .sec  { padding: 72px 0; }

  .hero__float  { display: none; }
  .nav__links   { display: none; }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .process-grid::before { display: none; }
}

/* =========================================
   22. RESPONSIVE — MOBILE (≤600px)
========================================= */
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .sec  { padding: 60px 0; }

  .hero {
    padding-top: 88px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero__visual   { order: 2; }
  .hero__cta-wrap { align-items: flex-start; }
  .hero__stats    { display: none; }

  .btn--lg       { padding: 12px 22px; font-size: .9rem; max-width: 100%; }
  .btn--w-mobile { width: auto; }

  .hero__img-wrap   { padding: 16px; }
  .mock-metric__val { font-size: 1rem; }
  .mock-lead__text  { font-size: .7rem; overflow-wrap: break-word; word-break: break-word; }
  .hero__badge      { white-space: normal; word-break: break-word; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.6rem; }

  .grid-2,
  .hero .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3       { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid   { grid-template-columns: 1fr; }
  .filter-grid  { grid-template-columns: 1fr; }
  .metric-row   { grid-template-columns: 1fr; }
  .flow-row     { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .contact-fab span { display: none; }
  .contact-fab {
    width: 54px; height: 54px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .nav__cta { display: none; }
}

/* =========================================
   23. CENTER ALIGN — ALL NON-HERO SECTIONS
========================================= */
.sec:not(.hero) .label {
  display: block;
  text-align: center;
}

.sec:not(.hero) h2,
.sec:not(.hero) h3,
.sec:not(.hero) p,
.sec:not(.hero) .callout,
.sec:not(.hero) .flow-result { text-align: center; }

.sec:not(.hero) .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sec:not(.hero) .problem-item,
.sec:not(.hero) .offer-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sec:not(.hero) .results-list li { justify-content: center; }

/* =========================================
   24. FLYOVER MENU
========================================= */

/* Hamburger button — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Flyover overlay */
.flyover-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  -webkit-tap-highlight-color: transparent;
}

.flyover-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Flyover panel */
.flyover-panel {
  position: fixed;
  top: 0;
  right: -85%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  z-index: 1050;
  background: #0F0F0F;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.4);
  overflow-y: auto;
}

.flyover-panel.open {
  right: 0;
}

/* Flyover header */
.flyover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.flyover-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #fff;
}

.flyover-logo span {
  color: var(--accent);
}

.flyover-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.flyover-close:hover {
  background: rgba(255,255,255,0.15);
}

/* Flyover nav links */
.flyover-nav {
  flex: 1;
  padding: 16px 0;
}

.flyover-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.7);
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s, color .2s;
  border-left: 3px solid transparent;
}

.flyover-link:hover,
.flyover-link.active {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.flyover-link.active {
  border-left-color: var(--accent);
}

.flyover-link-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Flyover divider */
.flyover-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 24px;
}

/* Flyover CTA */
.flyover-cta {
  padding: 20px 24px 32px;
}

.flyover-cta .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: .9rem;
}

/* Flyover social */
.flyover-social {
  padding: 0 24px 24px;
  display: flex;
  gap: 12px;
}

.flyover-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: background .2s, color .2s;
}

.flyover-social a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* Show hamburger on mobile */
@media (max-width: 960px) {
  .nav__hamburger { display: flex; }
}

.filter-card,
.filter-card h3,
.filter-card p,
.filter-card .filter-badge,
.filter-card .filter-list li { text-align: left; justify-content: flex-start; }

.filter-card .filter-badge  { display: inline-flex; }
.filter-card .filter-list li { justify-content: flex-start; }

/* =========================================
   24. FILTER GRID (comparison section)
========================================= */
.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}

.filter-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.filter-x {
  color: #EF4444;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 600px) {
  .filter-grid { grid-template-columns: 1fr; }
}

/* =========================================
   25. PROBLEM CARDS
========================================= */
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(239,68,68,.10);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* =========================================
   26. METHOD / STEP NUMBER ICONS
========================================= */
.method-num-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-num {
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.method-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* =========================================
   27. FLOW ROW — 4-COLUMN PROCESS
========================================= */
.flow-row--4 {
  grid-template-columns: repeat(4, minmax(0,1fr));
}

@media (max-width: 960px) {
  .flow-row--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 600px) {
  .flow-row--4 { grid-template-columns: 1fr; }
}

.flow-num-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 12px;
}

.flow-num {
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.flow-icon {
  font-size: 1.25rem;
  line-height: 1;
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
