@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #10B981;
  --primary-dark: #0F172A;
  --primary-light: #34D399;
  --accent: #10B981;
  --accent-light: #34D399;
  --bg: radial-gradient(circle at top right, #F8FAFC, #F1F5F9);
  --bg-alt: #F1F5F9;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.01);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --gradient-accent: linear-gradient(135deg, #10B981 0%, #0F172A 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, 0.9); }
.nav-logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.25rem; color: var(--primary-dark); }
.nav-logo img { width: 36px; height: 36px; border-radius: 10px; }
.nav-logo .badge { background: var(--gradient); color: #fff; font-size: .6rem; font-weight: 800; padding: 3px 8px; border-radius: 20px; letter-spacing: .05em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .95rem; font-weight: 600; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 100px;
  font-size: .95rem; font-weight: 700; cursor: pointer;
  border: none; transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2), 0 4px 6px -2px rgba(16, 185, 129, 0.1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3), 0 10px 10px -5px rgba(16, 185, 129, 0.2); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.15); }
.btn-accent { background: var(--gradient-accent); color: #fff; box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15); }
.btn-lg { padding: .95rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(155deg, #F0FDF8 0%, #ECFDF5 35%, #F0F9FF 65%, #F8FAFC 100%);
  padding: 2rem 2rem 6rem;
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
}

/* Background animated glows */
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0.55;
}
.hero-glow-1 {
  top: -120px; right: -80px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(16,185,129,.18) 0%, transparent 70%);
  animation: heroGlowPulse 8s ease-in-out infinite;
}
.hero-glow-2 {
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
  animation: heroGlowPulse 10s ease-in-out infinite reverse;
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image: linear-gradient(var(--primary) 1px, transparent 1px),
                    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 48px 48px;
}
@keyframes heroGlowPulse {
  0%,100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.15); opacity: 0.75; }
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem; align-items: center; position: relative; z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(16,185,129,.1); color: var(--primary);
  border-radius: 50px; padding: .45rem 1.2rem;
  font-size: .82rem; font-weight: 700; margin-bottom: 1.6rem;
  border: 1px solid rgba(16,185,129,.2);
  box-shadow: 0 0 0 4px rgba(16,185,129,.05);
}
.eyebrow-pulse {
  width: 8px; height: 8px; background: var(--primary);
  border-radius: 50%; flex-shrink: 0;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* Headline */
.hero h1 {
  font-size: clamp(2.0rem, 4.2vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--primary-dark); margin-bottom: 1.4rem;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #10B981 0%, #0EA5E9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub text */
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted);
  margin-bottom: 1.75rem; line-height: 1.8; max-width: 540px;
}
.hero-sub strong { color: var(--primary-dark); font-weight: 700; }

/* Audience badges row */
.hero-audiences {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.25rem;
}
.audience-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #fff; border: 1.5px solid #E2E8F0;
  border-radius: 50px; padding: .38rem 1rem;
  font-size: .8rem; font-weight: 700; color: var(--primary-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: all .2s ease;
}
.audience-badge:hover {
  border-color: var(--primary); color: var(--primary);
  background: rgba(16,185,129,.04); transform: translateY(-1px);
}

/* CTA buttons */
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.75rem; align-items: center; }

/* Ghost button */
.btn-ghost {
  background: rgba(15,23,42,.05); color: var(--primary-dark);
  border: 1.5px solid rgba(15,23,42,.12);
  transition: all .25s cubic-bezier(0.4,0,0.2,1);
}
.btn-ghost:hover {
  background: var(--primary-dark); color: #fff;
  border-color: var(--primary-dark); transform: translateY(-2px);
}

/* ── Keyword highlights in sub text ── */
.hero-highlight {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(14,165,233,.08));
  color: var(--primary);
  font-weight: 800;
  border-radius: 6px;
  padding: 0 .32rem;
  border-bottom: 2px solid rgba(16,185,129,.4);
  transition: background .2s;
}

/* ── Download store buttons ── */
.hero-dl-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .75rem 1.5rem; min-width: 168px;
}
.hero-dl-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,.18); border-radius: 10px;
  backdrop-filter: blur(4px);
}
.hero-dl-text {
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2;
}
.hero-dl-label {
  font-size: .7rem; font-weight: 600; opacity: .82; text-transform: uppercase; letter-spacing: .04em;
}
.hero-dl-name {
  font-size: 1.05rem; font-weight: 800;
}

/* Dark / Android button */
.btn-dark {
  background: #0F172A; color: #fff;
  border: 1.5px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 15px -3px rgba(15,23,42,.15);
}
.btn-dark:hover {
  background: #1E293B; transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(15,23,42,.2);
}
.btn-dark .hero-dl-icon { background: rgba(255,255,255,.12); }



/* Stats */
.hero-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block; font-size: 1.5rem; font-weight: 900;
  color: var(--primary-dark); line-height: 1;
}
.hero-stat span { font-size: .8rem; color: var(--text-muted); font-weight: 600; }
.hero-stat-sep {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, #CBD5E1, transparent);
}

/* Visual */
.hero-visual { position: relative; }
.hero-visual-glow {
  position: absolute; inset: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-visual img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) scale(1.01);
  transition: all .6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; z-index: 1;
}
.hero-visual:hover img {
  transform: perspective(1200px) rotateY(0) rotateX(0) scale(1.03);
}

/* Floating badges */
.hero-float-badge {
  position: absolute; background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  padding: .8rem 1.15rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: .82rem; font-weight: 700;
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(12px);
  z-index: 2;
}
.hero-float-badge strong { display: block; font-size: .85rem; color: var(--primary-dark); font-weight: 800; }
.hero-float-badge span { font-size: .74rem; color: var(--text-muted); font-weight: 600; display: block; }
.hfb1 { bottom: -16px; left: -24px; animation: float 4s ease-in-out infinite; }
.hfb2 { top: 28px; right: -20px; animation: float 4s ease-in-out infinite; animation-delay: 1.5s; }
.hfb3 { bottom: 80px; right: -24px; animation: float 4s ease-in-out infinite; animation-delay: 3s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hfb-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
.dot-teal  { background: #0D9488; box-shadow: 0 0 0 3px rgba(13,148,136,.2); }
.dot-amber { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,.2); }

/* ── WHO IT'S FOR ── */
.section-who { background: linear-gradient(160deg, #F8FAFC 0%, #F0FDF8 50%, #F8FAFC 100%); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.who-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 2rem 2rem 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.who-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--gradient); border-radius: 4px 0 0 4px;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s ease;
}
.who-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,.25); }
.who-card:hover::after { transform: scaleY(1); }
.who-card-icon {
  font-size: 2.2rem; line-height: 1; flex-shrink: 0;
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(16,185,129,.04));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(16,185,129,.12);
}
.who-card-body h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--primary-dark);
  margin-bottom: .5rem;
}
.who-card-body p {
  font-size: .9rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: .9rem;
}
/* ── WHO LIST — Base ── */
.who-list { list-style: none; padding: 0; margin: 0; }

.wl-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  padding: .5rem .75rem; /* Spacious padding for a clean capsule look */
  margin-bottom: .2rem;
  position: relative;
  border-radius: 6px;
  background: transparent;
  opacity: 1; /* Fully bright by default for maximum readability */
  transition: background-color .35s ease;
}

/* Animating left vertical line indicator */
.wl-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: #10B981;
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ✔ check icon */
.wl-check {
  font-size: .78rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: .15rem;
  color: #64748B; /* Darker, highly-readable checkmark by default */
  transition: color .25s ease, transform .25s ease;
}

/* wl-text wrapper */
.wl-text {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.5;
  color: #334155; /* Highly readable dark slate fallback */
}

/* ── TEXT SWEEP CORE — INDIVIDUAL WORDS ──
   Each word is animated sequentially to look like actual reading.
*/
.wl-word {
  display: inline-block;
  white-space: nowrap;
  
  /* Two-tone sweep gradient — starts fully dark charcoal/slate */
  background: linear-gradient(
    to right,
    #10B981 50%,
    #334155 50%
  );
  background-size: 200% 100%;
  background-position: 100% 0; /* bold dark slate side showing */

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── READING STATE: active capsule, left line grows, check icon pops, text sweeps ── */
.wl-item.wl-reading {
  opacity: 1;
  background-color: rgba(16, 185, 129, 0.06); /* ultra-soft emerald tint */
}
.wl-item.wl-reading::before {
  transform: scaleY(1); /* Line animates in vertically */
}
.wl-item.wl-reading .wl-check {
  color: #10B981;
  transform: scale(1.2);
}
.wl-item.wl-reading .wl-word {
  background-position: 0% 0; /* sweep to green */
  transition: background-position 0.25s linear;
  transition-delay: calc(var(--word-index) * 0.12s);
}

/* ── DONE STATE: stays green, fades capsule background, maintains readability ── */
.wl-item.wl-done {
  opacity: 1; /* Fully bright */
  background-color: transparent;
}
.wl-item.wl-done::before {
  transform: scaleY(0); /* Line retreats */
}
.wl-item.wl-done .wl-check {
  color: #34D399;
  transform: scale(1);
}
.wl-item.wl-done .wl-word {
  background-position: 0% 0; /* locked green */
}


/* Card entry animation */
.who-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.who-animate.wl-card-visible {
  opacity: 1;
  transform: translateY(0);
}



/* ── SECTIONS ── */
.section { padding: 6rem 2rem; position: relative; }
.section-alt { background: radial-gradient(circle at bottom left, #F1F5F9, #F8FAFC); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-label { display: inline-block; background: rgba(16,185,129,.08); color: var(--primary); border-radius: 50px; padding: .4rem 1.1rem; font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; border: 1px solid rgba(16,185,129,.15); }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--primary-dark); line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.01em; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; }

/* ── FEATURE GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.25rem;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(16,185,129,.06));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.6rem;
  transition: transform .3s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
.feature-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .6rem; color: var(--primary-dark); }
.feature-card p { font-size: .95rem; color: var(--text-muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2.5px; background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0.6;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
  position: relative; z-index: 1;
}
.step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .6rem; color: var(--primary-dark); }
.step p { font-size: .95rem; color: var(--text-muted); line-height: 1.65; }

/* ── TRUST BADGES ── */
.trust-strip { background: var(--gradient); padding: 2.5rem 2rem; box-shadow: var(--shadow-md); }
.trust-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 3rem; }
.trust-badge { display: flex; align-items: center; gap: .75rem; color: #fff; }
.trust-badge-icon { font-size: 1.6rem; opacity: .95; }
.trust-badge-text strong { display: block; font-size: .95rem; font-weight: 800; }
.trust-badge-text span { font-size: .8rem; opacity: .85; font-weight: 500; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #0F172A 0%, #111827 50%, #059669 100%);
  border-radius: var(--radius-xl); padding: 5rem 3rem;
  text-align: center; position: relative; overflow: hidden; margin: 0 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.05);
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.03); pointer-events: none;
}
.cta-banner h2 { font-size: clamp(2rem,3.5vw,2.6rem); font-weight: 800; color: #fff; margin-bottom: 1rem; letter-spacing: -0.01em; }
.cta-banner p { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 2.25rem; }
.cta-banner .btn-white { background: #fff; color: var(--primary-dark); box-shadow: 0 10px 15px -3px rgba(255,255,255,.1); }
.cta-banner .btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 25px -5px rgba(255,255,255,.2); }

/* ── PRICING CARD OVERHAUL ── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border: 2.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 3rem 2.5rem;
  position: relative; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,.2); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; font-size: .75rem; font-weight: 800; padding: .4rem 1.25rem; border-radius: 50px; letter-spacing: .05em; white-space: nowrap; box-shadow: var(--shadow-md); }
.pricing-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: .5rem; color: var(--primary-dark); }
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--primary); margin: 1rem 0 .25rem; line-height: 1; letter-spacing: -0.02em; }
.pricing-price sup { font-size: 1.3rem; vertical-align: super; font-weight: 700; }
.pricing-price sub { font-size: .95rem; color: var(--text-muted); font-weight: 600; }
.pricing-period { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.75rem; font-weight: 500; }
.pricing-features { list-style: none; margin-bottom: 2.25rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; padding: .65rem 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-weight: 500; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--primary); font-weight: 800; flex-shrink: 0; }
.pricing-features li .cross { color: #CBD5E1; font-weight: 800; flex-shrink: 0; }
.trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 3rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-muted); font-weight: 600; }
.trust-item span { font-size: 1.2rem; color: var(--primary); }

/* ── CHECKOUT & CONTAINER PANELS ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 2.5rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.checkout-form-wrap, .order-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.checkout-form-wrap h2, .order-summary h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); color: var(--primary-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--text-muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--text);
  background: var(--bg-alt); transition: all .25s ease-in-out;
  outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12); background: #fff; }
.payment-methods { display: flex; gap: .75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pay-method {
  flex: 1; min-width: 90px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: .85rem .5rem; text-align: center; cursor: pointer; font-size: .85rem; font-weight: 700;
  transition: all .2s; color: var(--text-muted);
}
.pay-method.active, .pay-method:hover { border-color: var(--primary); color: var(--primary); background: rgba(16, 185, 129, 0.05); }
.pay-method-icon { font-size: 1.5rem; margin-bottom: .3rem; }
.order-item { display: flex; justify-content: space-between; padding: .85rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; color: var(--text-muted); font-weight: 500; }
.order-item:last-of-type { border-bottom: none; }
.order-total { display: flex; justify-content: space-between; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 2px solid var(--border); font-weight: 900; font-size: 1.25rem; color: var(--primary-dark); }
.order-total .amount { color: var(--primary); }

/* ── SUPPORT / FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-md); margin-bottom: 1.2rem; overflow: hidden; transition: all .25s ease; box-shadow: var(--shadow-sm); }
.faq-item:hover { box-shadow: var(--shadow-md); border-color: rgba(16, 185, 129, 0.2); }
.faq-question {
  width: 100%; text-align: left; background: var(--bg-card);
  border: none; padding: 1.35rem 1.75rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: inherit; font-size: 1.05rem; font-weight: 800; color: var(--primary-dark);
  transition: background .2s;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question .faq-icon { font-size: 1.4rem; font-weight: 500; color: var(--primary); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-answer-inner { padding: 0 1.75rem 1.35rem; font-size: .95rem; color: var(--text-muted); line-height: 1.75; font-weight: 500; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── LEGAL & POLICY STYLING ── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; font-weight: 800; margin: 2rem 0 .75rem; color: var(--primary-dark); }
.legal-content h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--primary-dark); }
.legal-content p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .75rem; font-weight: 500; }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; }
.legal-content ul li { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .4rem; font-weight: 500; }
.legal-content .legal-date { background: var(--bg-alt); border-left: 4px solid var(--primary); padding: .85rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .9rem; color: var(--text-muted); margin-bottom: 2rem; font-weight: 600; }

/* ── FOOTER ── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,.8); padding: 5rem 2rem 3rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-top: .75rem; max-width: 300px; font-weight: 500; }
.footer-logo { display: flex; align-items: center; gap: .6rem; font-weight: 900; font-size: 1.25rem; color: #fff; }
.footer-logo img { width: 32px; height: 32px; border-radius: 8px; }
.footer-col h4 { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .75rem; }
.footer-col ul li a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color .2s; font-weight: 600; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.35); font-weight: 500; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .85rem; color: rgba(255,255,255,.35); transition: color .2s; font-weight: 600; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(160deg, #F0FDF4, #ECFDF5, #F8FAFC); padding: 2rem 2rem; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; margin-bottom: .75rem; color: var(--primary-dark); letter-spacing: -0.02em; }
.page-hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 4rem 2rem 5rem; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 3.5rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-visual img { transform: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-audiences { gap: .4rem; }
  .audience-badge { font-size: .75rem; padding: .32rem .85rem; }
  .hero-stats { gap: .75rem; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-stat-sep { height: 26px; }
  .hero-actions { gap: .65rem; }
  .hero-dl-btn { min-width: 0; flex: 1; justify-content: center; }
  .hero-dl-name { font-size: .95rem; }

  .hfb3 { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .who-card { flex-direction: column; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip-inner { gap: 1.5rem; }
  .trust-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { margin: 0 1rem; padding: 4rem 1.5rem; }
}

/* ── MOBILE NAV ACTIVE PANEL ── */
.nav-mobile-open .nav-links {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 1.75rem 2rem; gap: 1.35rem;
  box-shadow: var(--shadow-md); z-index: 999;
}

/* ── STYLE UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.pill { display: inline-block; padding: .3rem .9rem; border-radius: 50px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.pill-green { background: rgba(16,185,129,.1); color: #059669; border: 1px solid rgba(16,185,129,.2); }
.pill-teal { background: rgba(16,185,129,.08); color: var(--primary); border: 1px solid rgba(16,185,129,.15); }
