/* ═══════════════════════════════════════════════════
   OTT Bot — Dark Theme + Neon Green
   Landing + Auth + Pricing Styles
   ═══════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────── */
:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #0a0e14;
  --border: #30363d;
  --border2: #21262d;
  --accent: #00ff88;
  --accent2: #00cc6a;
  --text: #e6edf3;
  --text2: #8b949e;
  --text3: #6e7681;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-accent: 0 0 24px rgba(0,255,136,.15);
  --transition: .2s ease;
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; }

/* ─── Accent ──────────────────────────────────────── */
.accent { color: var(--accent); }

/* ─── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,255,136,.3);
}
.btn-primary svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text2);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-svg { width: 36px; height: 36px; }
.logo-text {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -.2px;
}
.logo-text strong { color: var(--accent); font-weight: 800; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 8px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { background: var(--accent2) !important; box-shadow: 0 0 16px rgba(0,255,136,.3) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all .3s ease;
}
.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); }

/* ─── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 90px 20px 80px;
  text-align: center;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(0,255,136,.07) 0%, rgba(0,255,136,.02) 40%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(48,54,61,.6) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .3px;
}
.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-sub {
  color: var(--text2);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(22,27,34,.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  backdrop-filter: blur(8px);
}
.h-stat { text-align: center; padding: 0 24px; }
.h-stat-num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; }
.h-stat-lbl { color: var(--text3); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.h-stat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ─── Trust Bar ──────────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label { color: var(--text3); font-size: 12px; white-space: nowrap; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.trust-pills span {
  background: rgba(0,255,136,.06);
  border: 1px solid rgba(0,255,136,.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── Sections ───────────────────────────────────── */
.section { padding: 80px 20px; }
.section-alt { background: var(--bg2); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text2);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Features ───────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feat-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(0,255,136,.1);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(0,255,136,.15), rgba(0,255,136,.05));
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { color: var(--text2); font-size: 13.5px; line-height: 1.6; }

/* ─── How It Works ───────────────────────────────── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  counter-reset: step;
}
.step {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
}
.step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 99px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text2); font-size: 13.5px; line-height: 1.6; }
.step-arrow {
  font-size: 22px;
  color: var(--accent);
  opacity: .4;
  padding-top: 44px;
  flex-shrink: 0;
}

/* ─── Testimonials ───────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.testi-featured {
  border-color: rgba(0,255,136,.3);
  background: linear-gradient(135deg, rgba(0,255,136,.04), var(--bg2));
  box-shadow: 0 0 0 1px rgba(0,255,136,.1);
}
.testi-stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.testi-card > p { color: var(--text2); font-size: 14px; line-height: 1.65; flex: 1; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { color: var(--text3); font-size: 12px; margin-top: 2px; }

/* ─── Pricing ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.price-popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(0,255,136,.1);
}
.price-popular:hover { box-shadow: 0 12px 40px rgba(0,255,136,.15); }
.popular-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 4px 18px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.price-top { margin-bottom: 24px; }
.price-top h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.price-val { font-size: 40px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.price-val span { font-size: 15px; font-weight: 400; color: var(--text2); }
.price-caption { color: var(--text3); font-size: 12px; }
.price-feats {
  list-style: none;
  margin-bottom: 16px;
  flex: 1;
}
.price-feats li {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text2);
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 9px;
}
.price-feats li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; font-size: 12px; }
.feat-no::before { content: '✗' !important; color: var(--text3) !important; }
.feat-no { color: var(--text3) !important; }
.price-more-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0 14px;
  transition: opacity var(--transition);
}
.price-more-btn:hover { opacity: .75; }
.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
}

/* ─── CTA ────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,255,136,.07), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 14px; }
.cta-inner p { color: var(--text2); font-size: 16px; margin-bottom: 32px; }

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border2);
  padding: 40px 20px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.footer-brand .logo-svg { width: 32px; height: 32px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: var(--text2); font-size: 13px; font-weight: 500; transition: color var(--transition); }
.footer-nav a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border2); padding-top: 20px; }
.footer-bottom p { color: var(--text3); font-size: 12px; text-align: center; }

/* ─── WhatsApp Float ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}

/* ─── Animations ─────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { opacity: .6; transform: translate(-50%, -60%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -60%) scale(1.05); }
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered animations */
.anim-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.anim-up.visible { opacity: 1; transform: translateY(0); }
.feat-grid .anim-up:nth-child(2)  { transition-delay: .05s; }
.feat-grid .anim-up:nth-child(3)  { transition-delay: .10s; }
.feat-grid .anim-up:nth-child(4)  { transition-delay: .15s; }
.feat-grid .anim-up:nth-child(5)  { transition-delay: .20s; }
.feat-grid .anim-up:nth-child(6)  { transition-delay: .25s; }
.feat-grid .anim-up:nth-child(7)  { transition-delay: .30s; }
.feat-grid .anim-up:nth-child(8)  { transition-delay: .35s; }
.feat-grid .anim-up:nth-child(9)  { transition-delay: .40s; }
.feat-grid .anim-up:nth-child(10) { transition-delay: .45s; }
.feat-grid .anim-up:nth-child(11) { transition-delay: .50s; }
.feat-grid .anim-up:nth-child(12) { transition-delay: .55s; }
.testi-grid .anim-up:nth-child(2) { transition-delay: .1s; }
.testi-grid .anim-up:nth-child(3) { transition-delay: .2s; }
.pricing-grid .anim-up:nth-child(2) { transition-delay: .1s; }
.pricing-grid .anim-up:nth-child(3) { transition-delay: .2s; }

/* ─── Enhancement: Neon glow + heading shimmer (v4) ─── */
@keyframes drift {
  0%   { transform: translate(-50%, -60%) scale(1); }
  33%  { transform: translate(-46%, -64%) scale(1.04); }
  66%  { transform: translate(-54%, -56%) scale(0.98); }
  100% { transform: translate(-50%, -60%) scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes neon-breath {
  0%, 100% { box-shadow: 0 0 22px rgba(0,255,136,.10), 0 0 44px rgba(0,255,136,.04); }
  50%      { box-shadow: 0 0 32px rgba(0,255,136,.20), 0 0 70px rgba(0,255,136,.10); }
}

/* Hero glow drifts slowly */
.hero-glow { animation: drift 22s ease-in-out infinite, pulse-glow 6s ease-in-out infinite; }

/* Section heading accent shimmers — but NOT on .typewriter (it changes text
   ~20x/sec, forcing a full gradient repaint each frame and choppy animation). */
.section-head h2 .accent,
.cta-section .accent,
.hero h1 .accent:not(.typewriter) {
  background: linear-gradient(90deg, var(--accent) 0%, #7df8b6 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

/* Typewriter: solid color + GPU-promoted layer for smooth text updates. */
.hero h1 .typewriter {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent); /* override any inherited transparent */
  background: none;
  will-change: contents;
  contain: layout style; /* prevent reflow leaking outside */
}
.hero h1 .typewriter::after {
  /* Caret was already glowing — keep it but reduce filter cost */
  box-shadow: none;
  background: var(--accent);
}

/* Cards get a subtle neon ring + glow on hover */
.feat-card,
.testi-card,
.price-card,
.step {
  transition: transform .35s cubic-bezier(.2,.7,.3,1),
              box-shadow .35s ease,
              border-color .35s ease;
}
.feat-card:hover,
.testi-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,136,.45);
  box-shadow: 0 0 0 1px var(--accent),
              0 14px 36px rgba(0,0,0,.45),
              0 0 60px rgba(0,255,136,.18);
}
.feat-card:hover .feat-icon { transform: scale(1.08) rotate(-4deg); }
.feat-icon { transition: transform .35s cubic-bezier(.2,.7,.3,1); }

/* Featured pricing card breathes (calls attention to "Pro") */
.price-card.price-popular { animation: neon-breath 5s ease-in-out infinite; }

/* Trust pills glow on hover */
.trust-pills span {
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
  cursor: default;
}
.trust-pills span:hover {
  background: rgba(0,255,136,.12);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(0,255,136,.18);
  transform: translateY(-2px);
}

/* CTA buttons get a neon halo on hover */
.btn-primary { transition: background .2s, box-shadow .25s, transform .2s; }
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(0,255,136,.35), 0 6px 20px rgba(0,0,0,.4);
  transform: translateY(-2px);
}

/* Better focus outlines for keyboard users */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Smooth in-page anchor scrolling */
html { scroll-behavior: smooth; }

/* Light theme — soften the glow so it doesn't look neon on white */
[data-theme="light"] .feat-card:hover,
[data-theme="light"] .testi-card:hover,
[data-theme="light"] .price-card:hover {
  box-shadow: 0 0 0 1px var(--accent),
              0 8px 22px rgba(10,143,74,.14),
              0 0 36px rgba(10,143,74,.08);
}
[data-theme="light"] .price-card.price-popular,
[data-theme="light"] .hero-glow { animation: none; }
[data-theme="light"] .section-head h2 .accent,
[data-theme="light"] .hero h1 .accent,
[data-theme="light"] .cta-section .accent {
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}

/* Disable hover-lifts on touch devices (avoids stuck hover on tap) */
@media (hover: none) {
  .feat-card:hover, .testi-card:hover, .price-card:hover { transform: none; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .15s !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════
   v6 — hero card, browser mockups, perf fixes
   ═══════════════════════════════════════════════════ */

/* ─── Hero card (glassmorphic, sitecraft-style) ─── */
.hero-card {
  position: relative;
  margin: 0 auto;
  padding: 56px 40px 44px;
  max-width: 920px;
  background: linear-gradient(160deg, rgba(22,27,34,.85) 0%, rgba(13,17,23,.92) 60%);
  border: 1px solid rgba(0,255,136,.18);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 30px 80px rgba(0,0,0,.55),
    0 0 60px rgba(0,255,136,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
/* Top edge accent line */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
/* Subtle corner glows inside the card */
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%,   rgba(0,255,136,.08), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(0,255,136,.06), transparent 35%);
  pointer-events: none;
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }

[data-theme="light"] .hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,.95) 0%, rgba(246,248,250,.98) 60%);
  border-color: rgba(10,143,74,.18);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.02) inset,
    0 24px 60px rgba(31,35,40,.10),
    0 0 40px rgba(10,143,74,.06);
}
[data-theme="light"] .hero-card::after {
  background:
    radial-gradient(circle at 0% 0%,   rgba(10,143,74,.06), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(10,143,74,.05), transparent 35%);
}

/* ─── Browser mockup frame (macOS-style) ─── */
.mockup {
  position: relative;
  background: #0a0e14;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(0,255,136,.08);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease;
}
.mockup:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 0 1px var(--accent), 0 0 50px rgba(0,255,136,.18); }
.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #161b22;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; }
.mockup-dot.y { background: #febc2e; }
.mockup-dot.g { background: #28c840; }
.mockup-url {
  margin-left: 10px;
  flex: 1;
  font: 11px/1 'SF Mono', Consolas, monospace;
  color: var(--text3);
  background: var(--bg);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-body { padding: 18px; min-height: 180px; }

/* WhatsApp chat mockup */
.wa-mock {
  background: #0d1117;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.wa-mock-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #1f2c33;
  border-bottom: 1px solid #2a3942;
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.wa-mock-name { font-size: 14px; font-weight: 700; color: #e6edf3; }
.wa-mock-status { font-size: 11px; color: #8b949e; }
.wa-mock-body {
  padding: 16px 14px;
  background: #0b141a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='8' cy='8' r='1' fill='%231a2730'/><circle cx='28' cy='22' r='1' fill='%231a2730'/></svg>");
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px;
}
.wa-bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  position: relative;
  word-wrap: break-word;
}
.wa-bubble.in {
  background: #1f2c33;
  color: #e6edf3;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.wa-bubble.out {
  background: #005c4b;
  color: #e9ecef;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.wa-bubble small { display: block; margin-top: 2px; font-size: 9px; color: rgba(255,255,255,.5); text-align: right; }

/* Floating animation for mockups (sitecraft style) */
@keyframes mock-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mockup-float { animation: mock-float 5s ease-in-out infinite; }
.mockup-float.delay-1 { animation-delay: 0.6s; }
.mockup-float.delay-2 { animation-delay: 1.2s; }

/* Side-by-side feature mockup section */
.feat-show {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.feat-show-text h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}
.feat-show-text h3 span { color: var(--accent); }
.feat-show-text p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.feat-show-text ul {
  list-style: none;
  margin: 0; padding: 0;
}
.feat-show-text li {
  font-size: 13.5px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat-show-text li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(0,255,136,.15);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-card { padding: 36px 22px 28px; border-radius: 18px; }
  .feat-show { grid-template-columns: 1fr; gap: 24px; }
  .feat-show-text h3 { font-size: 22px; }
  .mockup-float { animation: none; } /* save battery on mobile */
}

/* ═══════════════════════════════════════════════════
   v5 — typewriter, marquee, boxed steps, count-up
   ═══════════════════════════════════════════════════ */

/* ─── Typewriter rotator caret ─── */
@keyframes caret-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.typewriter {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  min-height: 1.2em;
}
.typewriter::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.95em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: -0.12em;
  animation: caret-blink 1s step-end infinite;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0,255,136,.5);
}

/* Hero h1 needs to wrap nicely with the typewriter on mobile */
.hero h1 .typewriter { word-break: keep-all; }

/* ─── Marquee strip (infinite horizontal scroll) ─── */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-strip {
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  animation: marquee-scroll 50s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.m-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.2px;
  transition: color .2s;
}
.m-item:hover { color: var(--accent); }
.m-dot {
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
  opacity: 0.6;
}

/* ─── Boxed "Go Live in 5 Minutes" steps ─── */
.steps-box {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(155deg, rgba(0,255,136,.04), rgba(0,255,136,.01) 60%);
  border: 1px solid rgba(0,255,136,.22);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 0 0 1px rgba(0,255,136,.05),
              0 18px 50px rgba(0,0,0,.35),
              0 0 80px rgba(0,255,136,.06);
  position: relative;
  overflow: hidden;
}
.steps-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%,   rgba(0,255,136,.10), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(0,255,136,.08), transparent 40%);
  pointer-events: none;
}
.steps-box .steps-row { position: relative; z-index: 1; }

/* Steps inside the box get cards too */
.steps-box .step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
}
.steps-box .step:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,136,.45);
  box-shadow: 0 0 0 1px var(--accent),
              0 10px 28px rgba(0,0,0,.35),
              0 0 40px rgba(0,255,136,.18);
}

/* Hero stats — let 4 stats fit cleanly */
.hero-stats {
  flex-wrap: wrap;
  justify-content: center;
}

/* Smooth tabular numerals so count-up doesn't jiggle */
.h-stat-num,
[data-counter] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ─── Mobile tweaks for the new bits ─── */
@media (max-width: 768px) {
  .typewriter::after { width: 2px; }
  .marquee-strip { padding: 10px 0; }
  .m-item { font-size: 12.5px; }
  .marquee-track { animation-duration: 38s; gap: 10px; }
  .steps-box { padding: 24px 16px; border-radius: 14px; }
  .steps-box .step { padding: 18px 16px; }
}
@media (max-width: 480px) {
  .hero h1 .typewriter { display: block; margin: 4px 0 2px; }
}

/* ─── Auth Forms ─────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: var(--bg); }
.auth-box { background: var(--bg2); padding: 40px; border-radius: var(--radius-lg); width: 100%; max-width: 420px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.auth-box h1 { text-align: center; font-size: 26px; margin-bottom: 6px; color: var(--text); }
.auth-box h1 span { color: var(--accent); }
.auth-sub { text-align: center; color: var(--text2); margin-bottom: 28px; font-size: 13px; }
.auth-fg { margin-bottom: 16px; }
.auth-fg label { display: block; margin-bottom: 5px; font-size: 13px; color: var(--text2); font-weight: 600; }
.auth-fg input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; transition: border-color .2s, box-shadow .2s; background: var(--bg); color: var(--text); }
.auth-fg input::placeholder { color: var(--text3); }
.auth-fg input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,255,136,.15); }
.auth-btn { width: 100%; padding: 14px; background: var(--accent); color: var(--bg); border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s, box-shadow .2s; }
.auth-btn:hover { background: var(--accent2); box-shadow: 0 0 16px rgba(0,255,136,.3); }
.auth-err { color: #f85149; text-align: center; margin-top: 10px; font-size: 13px; display: none; }
.auth-link { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text2); }
.auth-link a { color: var(--accent); font-weight: 600; }

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }
::selection { background: rgba(0,255,136,.25); color: var(--text); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-row { flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
  .step-arrow { transform: rotate(90deg); padding: 0 0 4px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 15px; color: var(--text2); border-bottom: 1px solid var(--border2); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin: 8px 16px 4px; border-radius: 8px; text-align: center; padding: 12px 20px !important; }
  .hero { padding: 60px 16px 60px; min-height: auto; }
  .hero-stats { flex-direction: row; padding: 16px 20px; gap: 0; }
  .h-stat { padding: 0 16px; }
  .h-stat-num { font-size: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 340px; margin: 0 auto 40px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; justify-content: center; }
  .section { padding: 56px 16px; }
  .section-head { margin-bottom: 40px; }
  .feat-grid { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 12px; padding: 16px; }
  .h-stat-sep { display: none; }
  .h-stat { padding: 4px 12px; }
  .trust-bar { padding: 12px 16px; }
  .feat-card { padding: 22px; }
  .testi-card { padding: 22px; }
  .price-card { padding: 24px 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .section-head h2 { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   v7 — Multi-colour palette + full-width hero + richer card animations
   Appended last so it overrides the v6 single-green styles above.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --c-green:  #00ff88;
  --c-purple: #b78bff;
  --c-blue:   #58c4ff;
  --c-pink:   #ff7ac6;
  --c-orange: #ffb151;
  --c-cyan:   #5ef3e3;
  --c-yellow: #ffd166;
}

/* ─── 1a. Hero card full-width ───────────────────────
   Edge-to-edge: drop the 920px clamp + tighten padding for
   small screens. Border-radius drops to 0 because there's no
   "outside" anymore. Adds a richer multi-colour rim. */
.hero { padding: 90px 0 80px; }
.hero-inner { max-width: none; padding: 0; }
.hero-card {
  max-width: none;
  margin: 0;
  padding: clamp(40px, 8vw, 90px) clamp(20px, 8vw, 90px);
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid rgba(183,139,255,.18);
  border-bottom: 1px solid rgba(88,196,255,.18);
}
.hero-card::before {
  /* Top accent line — now a multi-colour sweep */
  left: 0; right: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--c-purple) 20%,
    var(--c-green) 40%,
    var(--c-cyan) 60%,
    var(--c-pink) 80%,
    transparent 100%);
  opacity: .85;
  background-size: 200% 100%;
  animation: rim-sweep 8s linear infinite;
}
.hero-card::after {
  /* Corner glows — now use 3 colours instead of 2 greens */
  background:
    radial-gradient(circle at 0% 0%,    rgba(183,139,255,.10), transparent 38%),
    radial-gradient(circle at 100% 0%,  rgba(0,255,136,.08),   transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(88,196,255,.09),  transparent 42%);
}

/* ─── 2. Multi-colour hero glow ─────────────────────── */
.hero-glow {
  background: radial-gradient(circle,
    rgba(0,255,136,.06)   0%,
    rgba(183,139,255,.05) 30%,
    rgba(88,196,255,.04)  55%,
    transparent 75%);
  animation:
    pulse-glow      6s ease-in-out infinite,
    glow-rotate-hue 18s linear infinite;
}
@keyframes glow-rotate-hue {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
@keyframes rim-sweep {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}

/* ─── 3d. Rich card hover + scroll-in animations ─────
   Per-card accent colour cycled via :nth-child so the
   page reads as multicolour without making each card a
   special case. Hover: lift + tilt + coloured glow + shimmer. */

.feat-card, .testi-card, .price-card, .step {
  --c: var(--c-green);
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    box-shadow .35s ease,
    border-color .35s ease;
  will-change: transform;
}

/* Cycle colours across cards in a grid */
.feat-grid > *:nth-child(6n+1) { --c: var(--c-green); }
.feat-grid > *:nth-child(6n+2) { --c: var(--c-purple); }
.feat-grid > *:nth-child(6n+3) { --c: var(--c-blue); }
.feat-grid > *:nth-child(6n+4) { --c: var(--c-pink); }
.feat-grid > *:nth-child(6n+5) { --c: var(--c-orange); }
.feat-grid > *:nth-child(6n+6) { --c: var(--c-cyan); }
.testi-grid > *:nth-child(3n+1) { --c: var(--c-purple); }
.testi-grid > *:nth-child(3n+2) { --c: var(--c-green); }
.testi-grid > *:nth-child(3n+3) { --c: var(--c-pink); }
.pricing-grid > *:nth-child(3n+1) { --c: var(--c-blue); }
.pricing-grid > *:nth-child(3n+2) { --c: var(--c-green); }
.pricing-grid > *:nth-child(3n+3) { --c: var(--c-purple); }
.steps-row > .step:nth-child(2n+1) { --c: var(--c-green); }
.steps-row > .step:nth-child(2n+3) { --c: var(--c-purple); }
.steps-row > .step:nth-child(2n+5) { --c: var(--c-pink); }
.steps-row > .step:nth-child(2n+7) { --c: var(--c-blue); }

/* feat-card override: per-card colour for icon, top border, glow */
.feat-card { border-top: 3px solid transparent; }
.feat-card:hover {
  border-top-color: var(--c);
  transform: translateY(-8px) rotateX(2deg);
  box-shadow:
    0 18px 48px rgba(0,0,0,.45),
    0 0 0 1px color-mix(in oklab, var(--c) 35%, transparent),
    0 0 60px color-mix(in oklab, var(--c) 25%, transparent);
}
.feat-card::before {
  background: linear-gradient(90deg, transparent, var(--c), transparent);
}
.feat-icon {
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--c) 22%, transparent),
    color-mix(in oklab, var(--c) 6%,  transparent));
  border: 1px solid color-mix(in oklab, var(--c) 30%, transparent);
  color: var(--c);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.feat-card:hover .feat-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 24px color-mix(in oklab, var(--c) 40%, transparent);
}

/* Testimonial cards */
.testi-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: color-mix(in oklab, var(--c) 40%, transparent);
  box-shadow:
    0 16px 40px rgba(0,0,0,.4),
    0 0 50px color-mix(in oklab, var(--c) 18%, transparent);
}
.testi-stars { color: var(--c); }
.testi-avatar {
  background: linear-gradient(135deg, var(--c),
    color-mix(in oklab, var(--c) 60%, #000));
}
.testi-featured {
  border-color: color-mix(in oklab, var(--c-green) 30%, transparent);
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--c-green) 5%, transparent),
    var(--bg2));
}

/* Pricing cards */
.price-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in oklab, var(--c) 40%, transparent);
  box-shadow:
    0 16px 40px rgba(0,0,0,.4),
    0 0 50px color-mix(in oklab, var(--c) 20%, transparent);
}
.price-card .price-feats li::before { color: var(--c); }
.price-popular { border-color: color-mix(in oklab, var(--c) 60%, transparent); }
.popular-pill {
  background: linear-gradient(135deg, var(--c),
    color-mix(in oklab, var(--c) 55%, #000));
}

/* Step cards (How It Works) */
.step { border-radius: var(--radius-lg); transition: background .35s ease, transform .35s ease; }
.step:hover {
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--c) 8%, transparent),
    transparent);
  transform: translateY(-6px);
}
.step-num {
  color: var(--c);
  background: color-mix(in oklab, var(--c) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--c) 25%, transparent);
  transition: transform .35s ease, box-shadow .35s ease;
}
.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 0 18px color-mix(in oklab, var(--c) 40%, transparent);
}
.step-arrow { color: var(--c-purple); }

/* ─── Shimmer-on-hover overlay (works for any card) ── */
.feat-card, .testi-card, .price-card {
  position: relative;
  overflow: hidden;
}
.feat-card .shimmer-on-hover, .testi-card .shimmer-on-hover, .price-card .shimmer-on-hover { display: none; }
.feat-card::after, .price-card::after, .testi-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    color-mix(in oklab, var(--c) 8%, transparent) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.feat-card:hover::after,
.price-card:hover::after,
.testi-card:hover::after { transform: translateX(100%); }
.feat-card > *, .price-card > *, .testi-card > * { position: relative; z-index: 2; }

/* ─── Stats row in hero — multi-colour numbers ─────── */
.hero-stats .h-stat:nth-child(1) .h-stat-num { color: var(--c-green); }
.hero-stats .h-stat:nth-child(3) .h-stat-num { color: var(--c-purple); }
.hero-stats .h-stat:nth-child(5) .h-stat-num { color: var(--c-blue); }
.hero-stats .h-stat:nth-child(7) .h-stat-num { color: var(--c-pink); }

/* ─── Section headings — multi-stop gradient on .accent ─ */
.section-head h2 .accent {
  background: linear-gradient(90deg, var(--c-green), var(--c-cyan), var(--c-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── Improved scroll-in animation: stagger + slight scale ─ */
.anim-up {
  opacity: 0;
  transform: translateY(30px) scale(.985);
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
}
.anim-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── Trust pills — multi-colour rotation ──────────── */
.trust-pills span:nth-child(6n+1) { color: var(--c-green);  border-color: color-mix(in oklab, var(--c-green) 25%, transparent);  background: color-mix(in oklab, var(--c-green) 6%, transparent); }
.trust-pills span:nth-child(6n+2) { color: var(--c-purple); border-color: color-mix(in oklab, var(--c-purple) 25%, transparent); background: color-mix(in oklab, var(--c-purple) 6%, transparent); }
.trust-pills span:nth-child(6n+3) { color: var(--c-blue);   border-color: color-mix(in oklab, var(--c-blue) 25%, transparent);   background: color-mix(in oklab, var(--c-blue) 6%, transparent); }
.trust-pills span:nth-child(6n+4) { color: var(--c-pink);   border-color: color-mix(in oklab, var(--c-pink) 25%, transparent);   background: color-mix(in oklab, var(--c-pink) 6%, transparent); }
.trust-pills span:nth-child(6n+5) { color: var(--c-orange); border-color: color-mix(in oklab, var(--c-orange) 25%, transparent); background: color-mix(in oklab, var(--c-orange) 6%, transparent); }
.trust-pills span:nth-child(6n+6) { color: var(--c-cyan);   border-color: color-mix(in oklab, var(--c-cyan) 25%, transparent);   background: color-mix(in oklab, var(--c-cyan) 6%, transparent); }

/* ─── Marquee strip — colourful items ──────────────── */
.m-item:nth-child(8n+1)  { color: var(--c-green); }
.m-item:nth-child(8n+3)  { color: var(--c-purple); }
.m-item:nth-child(8n+5)  { color: var(--c-blue); }
.m-item:nth-child(8n+7)  { color: var(--c-pink); }
.m-item:nth-child(8n+9)  { color: var(--c-orange); }
.m-item:nth-child(8n+11) { color: var(--c-cyan); }

/* ─── Reduced motion: kill the heavy animations ─────── */
@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .hero-card::before {
    animation: none !important;
  }
  .anim-up,
  .feat-card, .testi-card, .price-card, .step,
  .feat-icon {
    transition: none !important;
    transform: none !important;
  }
  .feat-card::after, .price-card::after, .testi-card::after {
    display: none !important;
  }
}

/* ─── Mobile tweaks for the new full-width hero ────── */
@media (max-width: 600px) {
  .hero { padding: 56px 0 56px; }
  .hero-card { padding: 36px 20px 30px; }
  .hero-card::before { left: 0; right: 0; }
}
