/* ─── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  color-scheme: light;
  --bg:          #FFFFFF;
  --bg-2:        #F9F7FF;
  --bg-3:        #FFF8F3;
  --surface:     #F3EEFF;
  --surface-2:   #FFF1E6;
  --surface-3:   #E9DFFF;
  --border:      rgba(91,33,182,0.10);
  --border-2:    rgba(91,33,182,0.18);
  --border-3:    rgba(91,33,182,0.06);
  --text:        #0F0A1E;
  --text-2:      #5B6B8A;
  --muted:       #9BA8C0;
  --accent:      #5B21B6;
  --accent-2:    #4C1D95;
  --accent-soft: rgba(91,33,182,0.08);
  --accent-glow: rgba(91,33,182,0.15);
  --orange:      #F97316;
  --orange-2:    #EA6A0B;
  --orange-soft: rgba(249,115,22,0.09);
  --green:       #059669;
  --green-soft:  rgba(5,150,105,0.09);
  --red:         #EF4444;
  --red-soft:    rgba(239,68,68,0.08);
  --amber:       #D97706;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 3px rgba(91,33,182,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(91,33,182,0.10), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 20px 48px rgba(91,33,182,0.14);
  --shadow-card: 0 2px 8px rgba(91,33,182,0.08), 0 0 0 1px rgba(91,33,182,0.06);
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,p,ul { margin: 0; }
li { list-style: none; }
img { max-width: 100%; }
button { border: none; cursor: pointer; background: none; font: inherit; color: inherit; }

/* ─── Layout helpers ────────────────────────────────────────── */
.section { padding: 96px clamp(20px,5vw,80px); }

.section-heading { display: grid; gap: 14px; margin-bottom: 56px; }
.section-heading.centered { text-align: center; place-items: center; }

.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.eyebrow-onpurple { color: rgba(255,255,255,0.7); }
.eyebrow-onpurple::before { background: rgba(255,255,255,0.5); }

h2 {
  font-size: clamp(2rem,4vw,3.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--text);
}

h3 { font-size: 1.0rem; font-weight: 700; line-height: 1.35; color: var(--text); }

code {
  font-family: "SF Mono", Consolas, "Cascadia Code", monospace;
  font-size: 0.85em;
  color: var(--accent);
  background: var(--surface);
  padding: 0.1em 0.4em;
  border-radius: 5px;
  border: 1px solid var(--border);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 150ms ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(91,33,182,0.30);
}
.button-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,33,182,0.35);
}

.button-outline {
  border: 1.5px solid var(--border-2);
  color: var(--text);
  background: var(--bg);
}
.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.button-cta-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-weight: 800;
}
.button-cta-primary:hover {
  background: #f0e8ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.button-cta-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.button-cta-ghost:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}

.button-lg { height: 54px; padding: 0 28px; font-size: 0.95rem; }
.full-width { width: 100%; }

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 clamp(20px,5vw,80px);
  border-bottom: 1px solid rgba(91,33,182,0.06);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 200ms ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 24px rgba(91,33,182,0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
}

nav { display: flex; align-items: center; gap: 2px; }

nav a {
  padding: 7px 13px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 120ms, background 120ms;
}
nav a:hover { color: var(--text); background: var(--surface); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 9px !important;
  box-shadow: 0 2px 10px rgba(91,33,182,0.25) !important;
}
.nav-cta:hover {
  background: var(--accent-2) !important;
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 8px 6px;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 200ms ease;
}

/* ─── Mobile nav ────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  padding: 24px clamp(20px,5vw,40px);
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 200ms ease;
  backdrop-filter: blur(20px);
}

.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }

.mobile-nav nav { flex-direction: column; align-items: flex-start; gap: 4px; }
.mobile-nav nav a { width: 100%; font-size: 1rem; padding: 12px 16px; color: var(--text-2); }
.mobile-nav nav a:hover { color: var(--text); background: var(--surface); }

.mobile-cta {
  margin-top: 12px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 700px;
  height: 500px;
  top: -80px;
  right: -80px;
  background: radial-gradient(ellipse, rgba(91,33,182,0.10) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px;
  height: 400px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px clamp(20px,5vw,80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { display: grid; gap: 28px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(91,33,182,0.20);
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  width: fit-content;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(5,150,105,0.20); }
  50%      { box-shadow: 0 0 0 6px rgba(5,150,105,0.06); }
}

h1 {
  font-size: clamp(2.6rem,5.5vw,4.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--text);
}

.hero-accent { color: var(--accent); }

.hero-copy {
  color: var(--text-2);
  font-size: clamp(1rem,1.8vw,1.15rem);
  line-height: 1.72;
  max-width: 520px;
}

/* Hero result proof bar */
.hero-result-proof {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, var(--surface) 0%, #fff8f0 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hrp-item {
  display: grid;
  gap: 3px;
  text-align: center;
  padding: 14px 20px;
  flex: 1;
}

.hrp-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hrp-label {
  font-size: 0.68rem;
  color: var(--text-2);
  font-weight: 500;
}

.hrp-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: -4px;
}

.proof-avatars { display: flex; }
.proof-avatars span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--surface-3);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  margin-right: -8px;
}

/* ─── Dashboard mockup (light) ───────────────────────────────── */
.hero-visual { position: relative; }

.dash-card {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-3);
  background: var(--bg-2);
}

.dash-card-dots { display: flex; gap: 5px; }
.dash-card-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e5e5e5; }
.dash-card-dots span:nth-child(1) { background: #FCA5A5; }
.dash-card-dots span:nth-child(2) { background: #FCD34D; }
.dash-card-dots span:nth-child(3) { background: #6EE7B7; }

.dash-card-title { font-size: 0.75rem; font-weight: 600; color: var(--text-2); flex: 1; text-align: center; }

.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid var(--border-3);
}

.dash-stat-mini {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  position: relative;
}
.dash-stat-mini:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border-3);
}

.dsm-val { font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1; }
.dsm-label { font-size: 0.65rem; color: var(--text-2); }
.dsm-change { font-size: 0.63rem; font-weight: 700; padding: 1px 6px; border-radius: 4px; width: fit-content; }
.dsm-change.up { background: rgba(5,150,105,0.10); color: var(--green); }
.dsm-change.stable { color: var(--muted); }

.dash-chart { padding: 14px 16px 10px; border-bottom: 1px solid var(--border-3); }
.dc-label { font-size: 0.62rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }

.dc-bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; }

.dc-bar {
  flex: 1;
  height: var(--h);
  background: var(--surface-3);
  border-radius: 3px 3px 0 0;
}
.dc-bar.hi {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(249,115,22,0.35);
}

.dash-events { padding: 12px 16px; }
.de-head { font-size: 0.62rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }

.de-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-3);
}
.de-row:last-child { border-bottom: none; }

.de-badge { font-size: 0.60rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; }
.de-badge.purchase { background: rgba(5,150,105,0.10); color: var(--green); border: 1px solid rgba(5,150,105,0.18); }
.de-badge.cart     { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--border); }
.de-badge.view     { background: var(--orange-soft); color: var(--orange); border: 1px solid rgba(249,115,22,0.18); }

.de-meta { font-size: 0.68rem; color: var(--text-2); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.de-time { font-size: 0.60rem; color: var(--muted); flex-shrink: 0; }

/* Floating tags */
.hero-float-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.hero-float-1 { bottom: -14px; left: -20px; animation: floatA 4s ease-in-out infinite; }
.hero-float-2 { top: -14px; right: -16px; animation: floatB 4s ease-in-out infinite 1.5s; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ─── Trust bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border-3);
  border-bottom: 1px solid var(--border-3);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(20px,5vw,80px);
  flex-wrap: wrap;
}

.trust-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.trust-items { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-2);
  background: #fff;
}
.trust-badge.bkash { border-color: rgba(228,0,115,.25); color: #C10068; background: rgba(228,0,115,.06); }
.trust-badge.nagad  { border-color: rgba(247,130,0,.25);  color: #B85400; background: rgba(247,130,0,.06); }
.trust-badge.sm     { font-size: 0.66rem; padding: 3px 8px; }
.footer-tb { border-color: var(--border) !important; color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.07) !important; }

.trust-divider { width: 1px; height: 16px; background: var(--border); }
.trust-check { display: flex; align-items: center; gap: 5px; font-size: 0.74rem; font-weight: 600; color: var(--green); }

/* ─── Stats strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--bg);
  padding: 40px clamp(20px,5vw,80px);
  border-bottom: 1px solid var(--border-3);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item { display: grid; gap: 6px; text-align: center; padding: 16px 48px; }
.stat-item strong { display: block; font-size: 2.1rem; font-weight: 900; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.stat-item span { font-size: 0.78rem; color: var(--text-2); }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ─── Outcome / Results ─────────────────────────────────────── */
.outcome-section { background: var(--bg-2); }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.outcome-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  transition: transform 200ms, box-shadow 200ms;
}
.outcome-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.outcome-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--oc);
  letter-spacing: -0.04em;
  line-height: 1;
}

.outcome-card h3 { font-size: 0.95rem; color: var(--text); }
.outcome-card p  { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }

.outcome-disclaimer {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
  justify-content: center;
}

/* ─── Problem section ───────────────────────────────────────── */
.problem-section { background: var(--bg); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.problem-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
  transition: border-color 200ms, transform 200ms;
}
.problem-card:hover { border-color: var(--border-2); transform: translateY(-2px); }

.problem-icon-wrap {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
}

.problem-card p { color: var(--text-2); font-size: 0.88rem; line-height: 1.7; }

.problem-solution {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(5,150,105,0.06);
  border: 1px solid rgba(5,150,105,0.20);
  border-radius: var(--radius-lg);
}

.solution-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.problem-solution p { color: var(--text); font-size: 0.95rem; line-height: 1.6; flex: 1; }

/* ─── How it works ──────────────────────────────────────────── */
.how-section { background: var(--bg-2); }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.step-card {
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: border-color 200ms, box-shadow 200ms;
}
.step-card:hover { border-color: var(--border-2); box-shadow: var(--shadow); }

.step-num-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }

.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}

.step-line { flex: 1; width: 2px; background: linear-gradient(to bottom, rgba(91,33,182,0.25), transparent); min-height: 20px; }

.step-body { display: grid; gap: 10px; align-content: start; padding-top: 8px; }
.step-body p { color: var(--text-2); font-size: 0.88rem; line-height: 1.7; }

.how-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 24px;
  background: rgba(5,150,105,0.07);
  border: 1px solid rgba(5,150,105,0.18);
  border-radius: var(--radius-lg);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Features ──────────────────────────────────────────────── */
.feature-band { background: var(--bg); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.feature-card:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: var(--shadow); }

.feature-icon-wrap {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--fi-bg);
  border: 1px solid var(--fi-border);
}

.feature-card p { color: var(--text-2); font-size: 0.88rem; line-height: 1.7; }

/* ─── Comparison table ──────────────────────────────────────── */
.comparison-section { background: var(--bg-2); }

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: #fff; }

.comparison-table th,
.comparison-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border-3); }

.comparison-table thead th {
  background: var(--bg-2);
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--bg-2); }

.col-tagioo { background: rgba(91,33,182,0.04) !important; }
thead .col-tagioo { color: var(--accent) !important; }

.tbl-yes { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-weight: 600; }
.tbl-yes-muted { color: var(--text-2); font-weight: 500; }
.tbl-no { color: var(--red); }
.tbl-neutral { color: var(--muted); }
.price-cell { font-weight: 700; color: var(--text); }

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing-section { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0;
  transition: border-color 200ms, box-shadow 200ms;
}
.pricing-card:hover { border-color: var(--border-2); }

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(91,33,182,0.04) 0%, #fff 50%);
  box-shadow: 0 0 0 1px rgba(91,33,182,0.15), var(--shadow-lg);
  transform: scale(1.02);
}

.plan-popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.plan-tier-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tb);
  margin-bottom: 14px;
}

.plan-header {
  display: grid;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-3);
}

.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price strong { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.03em; color: var(--text); }
.plan-price span { font-size: 0.82rem; color: var(--muted); }
.plan-header p { font-size: 0.83rem; color: var(--text-2); line-height: 1.5; }

.plan-features { display: grid; gap: 10px; padding: 0; margin: 0 0 24px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-2); line-height: 1.4; }

.pf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pf-dash  { color: var(--muted); flex-shrink: 0; }

.pricing-footer { text-align: center; margin-top: 36px; display: grid; gap: 8px; }
.pricing-footer p { color: var(--muted); font-size: 0.83rem; }
.pricing-footer a { color: var(--accent); }
.pricing-footer a:hover { text-decoration: underline; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { background: var(--bg-2); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 180ms;
}
.faq-item[open] { border-color: var(--border-2); }

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--muted); flex-shrink: 0; transition: transform 200ms; font-weight: 300; }
.faq-item[open] summary::after { content: "−"; color: var(--accent); }

.faq-item p { padding: 0 22px 20px; color: var(--text-2); font-size: 0.88rem; line-height: 1.75; }

/* ─── Final CTA ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #3B0764 0%, var(--accent) 50%, #7C3AED 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(249,115,22,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  place-items: center;
}

.cta-inner h2 { color: #fff; }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.cta-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}
.cta-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #1A0533;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding: 60px clamp(20px,5vw,80px) 40px;
}

.footer-brand { display: grid; gap: 14px; align-content: start; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.84rem; line-height: 1.65; max-width: 320px; }

.brand-light { color: #fff !important; }
.brand-mark-light { background: rgba(255,255,255,0.15) !important; }

.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }

.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col strong { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.35); font-size: 0.84rem; transition: color 120ms; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px,5vw,80px);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

/* ─── WhatsApp float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform 200ms, box-shadow 200ms;
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* ─── Legal pages ───────────────────────────────────────────── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 120px clamp(20px,5vw,80px) 80px; }
.legal-page h1 { font-size: 2.4rem; margin-bottom: 8px; }
.legal-page .legal-meta { color: var(--muted); font-size: 0.84rem; margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal-page h2 { font-size: 1.2rem; margin-top: 40px; margin-bottom: 12px; }
.legal-page p, .legal-page li { color: var(--text-2); font-size: 0.92rem; line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; }
.legal-page ul li { list-style: disc; }
.legal-page a { color: var(--accent); }
.legal-page a:hover { text-decoration: underline; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .outcome-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-card.featured { transform: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 820px) {
  .site-header { padding: 0 20px; }
  nav { display: none; }
  .menu-btn { display: flex; }
  .mobile-nav { display: block; }

  h1 { font-size: clamp(2.2rem,9vw,3.4rem); }
  h2 { font-size: clamp(1.7rem,6vw,2.4rem); }

  .step-grid { grid-template-columns: 1fr; }
  .step-card { margin: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { padding: 14px 24px; }
  .stat-divider { width: 1px; height: 32px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .comparison-table th:nth-child(3),
  .comparison-table td:nth-child(3),
  .comparison-table th:nth-child(4),
  .comparison-table td:nth-child(4) { display: none; }

  .cta-trust-row { gap: 12px; }
  .trust-inner { gap: 12px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .button { width: 100%; }
  .stat-divider { display: none; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid var(--border-3); }
  .hero-float-1, .hero-float-2 { display: none; }
  .hero-result-proof { flex-direction: column; }
  .hrp-sep { width: 60%; height: 1px; }
}
