/* ═══════════════════════════════════════════════════════════
   KWIKH — Design System
   Mobile-first · Conversion-optimised · SEO/AEO ready
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  /* Brand */
  --brand: linear-gradient(120deg, #6E1D1F 0%, #D32F2F 28%, #E7353A 46%, #B5256B 72%, #6C248F 100%);
  --grad-text: linear-gradient(120deg, #C62828 0%, #D8345B 40%, #B5256B 65%, #7B2A98 100%);
  --accent: #C62828;
  --accent-dk: #A51C1C;

  /* Neutrals */
  --bg: #FFFDF9;
  --surface: #F7F4F0;
  --surface-2: #EEEAE4;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --text: #2D2D2D;
  --text-2: #555555;
  --muted: #767676;
  --border: #E8E3DC;
  --white: #FFFFFF;

  /* Functional */
  --wa: #25D366;
  --wa-dk: #1DAD53;

  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 100px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --sh-md: 0 4px 20px rgba(0,0,0,.08);
  --sh-lg: 0 12px 40px rgba(0,0,0,.10);
  --sh-card: 0 2px 12px rgba(110,29,31,.06), 0 1px 3px rgba(0,0,0,.04);

  /* Spacing */
  --container-pad: 20px;
  --section-py: 72px;

  /* Z-index */
  --z-sticky: 100;
  --z-nav: 200;
  --z-menu: 300;
  --z-float: 400;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── LAYOUT ────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: var(--section-py) 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark .text-muted { color: rgba(255,255,255,.6); }
.section--gradient {
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--dark);
  font-weight: 700;
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--gradient h1, .section--gradient h2, .section--gradient h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2.5px;
  background: var(--brand);
  border-radius: 2px;
}
.section--dark .eyebrow,
.section--gradient .eyebrow { color: rgba(255,255,255,.7); }
.section--dark .eyebrow::before,
.section--gradient .eyebrow::before { background: rgba(255,255,255,.4); }

.display {
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.h2 {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.h3 { font-size: 18px; font-weight: 700; }
.lead { font-size: 17px; line-height: 1.7; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

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

.section-head {
  margin-bottom: 36px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow { justify-content: center; }
.section-head .lead { margin-top: 12px; }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-md);
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .2s, background .2s, filter .2s;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
.btn:active { transform: scale(.97); }
.btn .ph { font-size: 20px; }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(198,40,40,.25);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(181,37,107,.35); filter: brightness(1.06); }

.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.25);
}
.btn-wa:hover { background: var(--wa-dk); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-white {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: #FFF5F3; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

.btn-group { display: flex; flex-direction: column; gap: 10px; }

/* ─── TOPBAR ────────────────────────────────────────── */
.topbar {
  background: var(--brand);
  color: var(--white);
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  line-height: 1.4;
  font-family: var(--font-head);
}
.topbar a { text-decoration: underline; text-underline-offset: 2px; }

/* ─── NAV ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255,253,249,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }

.nav__inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo img { height: 30px; width: auto; }

/* Hamburger */
.nav__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: calc(var(--z-menu) + 1);
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 320px;
  background: var(--white);
  z-index: var(--z-menu);
  padding: 76px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,.16);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav__menu.open { transform: translateX(0); }

/* Close button inside menu */
.nav__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  transition: background .15s, transform .12s;
}
.nav__close:active { transform: scale(.92); }
.nav__close:hover { background: var(--surface-2); }
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: calc(var(--z-menu) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.nav__overlay.open { opacity: 1; visibility: visible; }

.nav__menu a:not(.btn) {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color .15s;
}
.nav__menu a:not(.btn):hover { color: var(--accent); }
.nav__menu a:not(.btn).active { color: var(--accent); }

.nav__menu-cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav__phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__phone .ph { color: var(--accent); font-size: 18px; }

/* Desktop nav links (hidden on mobile) */
.nav__links { display: none; }
.nav__right-desktop { display: none; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  padding: 40px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,37,107,.08), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,40,40,.06), transparent 65%);
  pointer-events: none;
}

.hero__eyebrow { position: relative; z-index: 1; }
.hero__headline {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.hero__headline h1 {
  font-size: clamp(28px, 7.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero__sub {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 24px;
  max-width: 540px;
}

/* Fact strip */
.hero__facts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--sh-xs);
}
.fact-pill .ph { font-size: 16px; color: var(--accent); }

.hero__cta {
  position: relative;
  z-index: 1;
}
.hero__cta .btn-group { max-width: 360px; }
.hero__cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.hero__cta-note b { color: var(--accent); font-weight: 600; }

/* Inner page hero (shorter) */
.hero--inner {
  padding: 32px 0 40px;
  text-align: center;
}
.hero--inner::before, .hero--inner::after { display: none; }
.hero--inner .hero__headline h1 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero--inner .hero__sub {
  margin-left: auto;
  margin-right: auto;
}
.hero--inner .breadcrumb { justify-content: center; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── MARQUEE ───────────────────────────────────────── */
.marquee {
  background: var(--dark);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--dark), transparent); }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 4px;
}
.marquee__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 16px;
  flex-shrink: 0;
  opacity: .6;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ─── CARDS — GENERIC ───────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--sh-card);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

/* Icon cards (package at a glance) */
.icon-card {
  text-align: center;
  padding: 24px 16px;
}
.icon-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin: 0 auto 14px;
}
.icon-card h3 { font-size: 15px; margin-bottom: 6px; }
.icon-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Feature cards (detailed, with icon left) */
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}
.feature-card h3 { font-size: 16px; margin-bottom: 4px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.feature-grid { display: flex; flex-direction: column; gap: 14px; }

/* Villain cards (problem section) */
.villain-card {
  padding: 24px 20px;
  border-left: 3px solid var(--accent);
}
.villain-card h3 { font-size: 17px; margin-bottom: 6px; color: var(--dark); }
.villain-card p { font-size: 14.5px; color: var(--text-2); }

/* ─── COMPARISON SECTION ────────────────────────────── */
.compare-grid { display: flex; flex-direction: column; gap: 14px; }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-cell {
  padding: 18px 16px;
  font-size: 14px;
  line-height: 1.55;
}
.compare-cell--old {
  background: #F0EDEA;
  color: var(--muted);
}
.compare-cell--old .compare-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.compare-cell--new {
  background: var(--dark);
  color: var(--white);
}
.compare-cell--new .compare-label {
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

/* ─── PROOF OF CONCEPT ──────────────────────────────── */
.proof { text-align: center; }
.proof__quote {
  font-family: var(--font-head);
  font-size: clamp(20px, 4.5vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--white);
}
.proof__pages {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.proof__page {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.proof__page:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); }
.proof__page .ph { font-size: 15px; }
.proof__page.active { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.35); color: var(--white); }
.proof__sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
}

/* ─── PROCESS / TIMELINE ────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }

.step__marker {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__day {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  white-space: nowrap;
}
.step__content h3 { font-size: 17px; margin-bottom: 6px; }
.step__content p { font-size: 14.5px; color: var(--text-2); line-height: 1.65; }

/* ─── CHECKLIST ─────────────────────────────────────── */
.checklist {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--sh-card);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist .ph { font-size: 18px; color: var(--wa); flex-shrink: 0; margin-top: 2px; }
.checklist-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}

/* ─── PRICING CARD ──────────────────────────────────── */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 22px 24px;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
  max-width: 520px;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
}
.price-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 4px;
}
.price-card__label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-card__badge {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 20px;
}
.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.price-card__big {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
}
.price-card__was {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}
.price-card__note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.price-list li .ph { font-size: 17px; flex-shrink: 0; }
.price-list li .ph-check-fat { color: var(--wa); }
.price-list li .ph-gift { color: #B5256B; }
.price-list .primary-item {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.price-card__fine {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.price-card__fine b { color: var(--accent); }

/* ─── ADD-ON PRICING TABLES ─────────────────────────── */
.addon-section { margin-bottom: 40px; }
.addon-section:last-child { margin-bottom: 0; }
.addon-section__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: var(--sh-xs);
}
.addon-card:last-child { margin-bottom: 0; }
.addon-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.addon-card__price {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.addon-card__price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}
.addon-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── FAQ ACCORDION ─────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}
.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-2);
  transition: transform .3s, background .3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1), padding .35s;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-2);
  padding: 0 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 0 20px; }

/* ─── AEO Q&A BLOCK ─────────────────────────────────── */
.aeo-block { max-width: 720px; margin-left: auto; margin-right: auto; }
.aeo-block p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.aeo-block p:last-child { margin-bottom: 0; }

.aeo-qa { margin-top: 32px; max-width: 720px; margin-left: auto; margin-right: auto; }
.aeo-q {
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.aeo-q h3 { font-size: 16px; margin-bottom: 6px; }
.aeo-q p { font-size: 14.5px; color: var(--text-2); line-height: 1.65; }

/* ─── AUDIENCE / WHO IS THIS FOR ────────────────────── */
.aud-section { margin-bottom: 28px; }
.aud-section__title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.aud-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.aud-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 14px;
  box-shadow: var(--sh-xs);
}

/* ─── SERVICE AREAS ─────────────────────────────────── */
.area-card {
  background: var(--brand);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.area-card h2 {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.area-card p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}
.area-chips span {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
}

/* ─── GROW WITH YOU (soft cards) ────────────────────── */
.grow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.grow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--sh-xs);
}
.grow-card .ph { font-size: 28px; color: var(--accent); margin-bottom: 8px; }
.grow-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.grow-card p { font-size: 12.5px; color: var(--text-2); line-height: 1.5; }

/* ─── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(198,40,40,.15), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  position: relative;
}
.cta-banner .btn-group {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 48px 0 120px; /* extra bottom for sticky bar */
}
.footer__logo { margin-bottom: 16px; }
.footer__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer__tag {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: 4px;
}
.footer__sub { font-size: 13px; margin-bottom: 20px; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
}
.footer__nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer__nav a:hover { color: var(--white); }
.footer__contact {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer__contact a:hover { color: var(--white); }
.footer__contact .ph { font-size: 16px; }
.footer__legal { font-size: 12px; margin-bottom: 12px; }
.footer__legal a { transition: color .15s; }
.footer__legal a:hover { color: var(--white); }
.footer__copy { font-size: 12px; }

/* ─── STICKY BOTTOM CTA ────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 10px var(--container-pad);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.06);
}
.sticky-price {
  flex-shrink: 0;
  font-family: var(--font-head);
  line-height: 1.2;
}
.sticky-price b { font-size: 18px; font-weight: 800; color: var(--dark); display: block; }
.sticky-price small { font-size: 10px; color: var(--muted); font-weight: 600; }
.sticky-cta .btn { flex: 1; padding: 12px 10px; font-size: 13px; }
.sticky-cta .btn-ghost { flex: 0 0 auto; padding: 12px 14px; }

/* ─── FLOATING WHATSAPP ─────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: var(--z-float);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: none; /* shown on desktop */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.45); }
.float-wa svg { width: 26px; height: 26px; }

/* ─── ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Stagger children */
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* ─── UTILITY ───────────────────────────────────────── */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 28px; }
.mb-lg { margin-bottom: 40px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 720px; }
.link-arrow {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }
.link-arrow .ph { font-size: 16px; }

/* ─── RESPONSIVE — TABLET ───────────────────────────── */
@media (min-width: 640px) {
  :root { --container-pad: 32px; --section-py: 80px; }
  .icon-grid { gap: 16px; }
  .grow-grid { gap: 16px; }
  .btn-group { flex-direction: row; }
  .price-card { padding: 32px 28px 28px; }
  .price-card { margin: 0 auto; }
}

/* ─── RESPONSIVE — DESKTOP ──────────────────────────── */
@media (min-width: 1024px) {
  :root { --section-py: 96px; }

  /* Nav desktop */
  .nav__toggle { display: none; }
  .nav__menu { display: none; }
  .nav__overlay { display: none; }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav__links a {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    transition: color .15s;
    position: relative;
  }
  .nav__links a:hover { color: var(--accent); }
  .nav__links a.active { color: var(--accent); }

  .nav__right-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav__right-desktop .nav__phone { font-size: 14px; }
  .nav__right-desktop .btn { padding: 10px 18px; font-size: 13px; }

  /* Hero */
  .hero { padding: 56px 0 64px; }
  .hero__headline h1 { max-width: 780px; }
  .hero__sub { font-size: 17px; }
  .hero__facts { gap: 10px; }

  /* Grids */
  .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grow-grid { grid-template-columns: repeat(4, 1fr); }
  .compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .compare-row { grid-template-columns: 1fr; }

  /* Proof */
  .proof__pages { gap: 12px; }

  /* Sticky bar: hide on desktop */
  .sticky-cta { display: none; }

  /* Floating WA: show on desktop */
  .float-wa { display: flex; }

  /* Footer */
  .footer { padding-bottom: 48px; }

  /* Steps — horizontal on desktop */
  .steps { gap: 0; }
  .step { gap: 24px; }

  /* FAQ */
  .faq-btn { font-size: 16px; }

  /* CTA banner */
  .cta-banner { padding: 56px 40px; }
}
