/* ============================================================
   LaunchFlow — style.css
   Theme: Dark Luxury × Electric Green
   Fonts: Manrope (display) · Inter (body) — professional SaaS
   Strategy: Mobile-first → desktop scale-up
   ============================================================ */

/* ─── MOBILE PERFORMANCE: Reduce paint layers on glows ─── */
.glow, .vid-bg-glow, .fcta-glow, .lc-glow {
  will-change: transform;
}
/* ─── PERFORMANCE: system font stack while web fonts load ─── */
@font-face { font-family: 'Manrope'; font-display: swap; }
@font-face { font-family: 'Inter'; font-display: swap; }

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

/* ── CRITICAL FIX: horizontal scroll prevention ── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;          /* prevents left/right swipe on mobile */
  width: 100%;
}

img, video { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; }

/* ─── TOKENS ─── */
:root {
  /* Colors */
  --bg:        #060a10;
  --bg-2:      #0b1420;
  --bg-card:   #0f1c28;
  --bg-hover:  #132030;
  --accent:    #00e676;
  --accent-2:  #00bcd4;
  --accent-dim: #00c853;
  --glow-sm:   rgba(0,230,118,.07);   /* reduced from .08 */
  --glow-md:   rgba(0,230,118,.13);   /* reduced from .18 */
  --glow-lg:   rgba(0,230,118,.24);   /* reduced from .32 */
  --border:    rgba(255,255,255,.07);
  --border-a:  rgba(0,230,118,.18);   /* reduced from .22 */
  --red:       rgba(255,75,75,.10);
  --red-t:     #ff6b6b;
  --tx-1:      #eef2f7;
  --tx-2:      #7b8fa6;
  --tx-3:      #4a5d70;
  /* Gradients */
  --grad-accent: linear-gradient(135deg, #00e676, #00bcd4);
  --grad-card:   linear-gradient(145deg, #0f1c28, #0b1420);
  /* Shadows — slightly reduced */
  --sh-card:  0 4px 32px rgba(0,0,0,.4);
  --sh-glow:  0 0 28px rgba(0,230,118,.12);   /* reduced from .18 */
  /* Shape */
  --r:    16px;
  --r-sm: 10px;
  --r-pill: 50px;
  /* Typography — Manrope + Inter */
  --ff-d: 'Manrope', sans-serif;
  --ff-b: 'Inter', sans-serif;
  /* Transition */
  --ease: all .28s cubic-bezier(.4,0,.2,1);
}

/* ─── BASE ─── */
body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--tx-1);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;          /* double lock — both html & body needed */
  width: 100%;
  position: relative;
}

/* ─── LAYOUT ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-d); font-weight: 700; font-size: 15px;
  border-radius: var(--r-pill); padding: 13px 28px; border: none;
  transition: var(--ease); white-space: nowrap; position: relative; overflow: hidden;
  letter-spacing: -.01em;
}
.btn-primary {
  background: var(--grad-accent); color: #050b0f;
  box-shadow: 0 0 22px var(--glow-lg), 0 4px 14px rgba(0,0,0,.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 40px rgba(0,230,118,.45), 0 8px 22px rgba(0,0,0,.4);
}
.btn-outline {
  background: transparent; color: var(--tx-2);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--glow-sm); }
.btn-outline-green {
  background: var(--glow-sm); color: var(--accent);
  border: 1.5px solid var(--border-a);
}
.btn-outline-green:hover { background: var(--glow-md); transform: translateY(-2px); }
.btn-nav {
  background: var(--glow-sm); color: var(--accent);
  border: 1.5px solid var(--border-a); font-size: 14px; padding: 10px 22px;
}
.btn-nav:hover { background: var(--glow-md); }
.btn-lg { padding: 17px 38px; font-size: 16px; }
.btn-xl { padding: 20px 52px; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }

/* Pulse on primary CTA — slightly softer */
.pulse-btn { animation: pulse 2.8s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 22px var(--glow-lg), 0 4px 14px rgba(0,0,0,.4); }
  50%      { box-shadow: 0 0 44px rgba(0,230,118,.5), 0 0 70px rgba(0,230,118,.15), 0 4px 14px rgba(0,0,0,.4); }
}

/* Ripple on click */
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.18); transform: scale(0);
  animation: ripple .5s linear; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  background: var(--glow-sm); border: 1px solid var(--border-a);
  padding: 6px 16px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.sec-h2 {
  font-family: var(--ff-d);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.03em; color: var(--tx-1); margin-bottom: 18px;
}
.sec-sub {
  font-size: 17px; color: var(--tx-2);
  max-width: 560px; margin: 0 auto; font-weight: 300;
}
.left-align { text-align: left; }

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px); z-index: 9000;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%);
  z-index: 9001; background: var(--bg-card);
  border: 1px solid var(--border-a); border-radius: var(--r);
  padding: 44px 40px; max-width: 500px; width: calc(100% - 40px);
  text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 60px var(--glow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.exit-popup.show { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
.popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--tx-3); font-size: 20px;
  transition: var(--ease);
}
.popup-close:hover { color: var(--tx-1); }
.popup-icon { font-size: 44px; margin-bottom: 16px; }
.exit-popup h3 {
  font-family: var(--ff-d); font-size: 22px; font-weight: 800;
  color: var(--tx-1); margin-bottom: 12px;
}
.exit-popup p { font-size: 14px; color: var(--tx-2); margin-bottom: 24px; line-height: 1.7; }
.popup-cta { width: 100%; margin-bottom: 16px; }
.popup-dismiss {
  background: none; border: none; color: var(--tx-3); font-size: 12px;
  text-decoration: underline; transition: var(--ease);
}
.popup-dismiss:hover { color: var(--tx-2); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  background: rgba(6,10,16,.82); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: var(--ease);
}
.navbar.scrolled { background: rgba(6,10,16,.97); box-shadow: 0 4px 40px rgba(0,0,0,.5); }
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  height: 68px; display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-d); font-weight: 800; font-size: 19px;
  color: var(--tx-1); letter-spacing: -.02em; flex-shrink: 0;
}
.logo-mark { font-size: 20px; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-size: 14px; color: var(--tx-2); font-weight: 500; transition: var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--tx-2); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 900; background: var(--bg);
  padding: 0 24px 40px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0 24px; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.mobile-close { background: none; border: none; color: var(--tx-2); font-size: 22px; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-link {
  display: block; padding: 15px 0; font-family: var(--ff-d);
  font-size: 20px; font-weight: 700; color: var(--tx-1);
  border-bottom: 1px solid var(--border); transition: var(--ease);
}
.mobile-link:hover { color: var(--accent); padding-left: 10px; }
.mobile-cta { margin-top: 32px; text-align: center; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-start;
  padding: 110px 0 60px;
  overflow: hidden;            /* contains all glow children */
  width: 100%;
}
.glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(110px);
}
/* ── CRITICAL FIX: glow blobs must never cause overflow ── */
.glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(110px);
  max-width: 100vw;            /* never wider than screen */
  overflow: hidden;
}
.glow-a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,.09) 0%, transparent 70%);
  top: -100px; left: -150px;  /* pulled in from edge */
}
.glow-b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,188,212,.05) 0%, transparent 70%);
  bottom: 0; right: -80px;    /* pulled in from edge */
}
.glow-c {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,230,118,.04) 0%, transparent 70%);
  top: 55%; left: 50%; transform: translate(-50%,-50%);
}

.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%;
}

/* Social proof pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glow-sm); border: 1px solid var(--border-a);
  border-radius: var(--r-pill); padding: 8px 20px;
  font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 28px;
  font-family: var(--ff-d);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-h1 {
  font-family: var(--ff-d);
  font-size: clamp(30px, 5.2vw, 64px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  color: var(--tx-1); margin-bottom: 24px;
}
.hero-h1 em { font-style: normal; }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--tx-2);
  max-width: 600px; line-height: 1.75; margin-bottom: 40px; font-weight: 400;
}
.hero-sub strong { color: var(--tx-1); font-weight: 600; }

/* Hero CTAs — upgraded for more dominance */
.hero-ctas {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  justify-content: center; margin-bottom: 28px;
}
/* Group: primary btn + no-card note stacked */
.hero-cta-group {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-no-card {
  font-size: 12px; color: var(--tx-3); font-weight: 500; letter-spacing: .01em;
}

/* 4-badge micro trust row */
.micro-trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  justify-content: center; margin-bottom: 24px;
}
.mt-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--tx-2); font-weight: 500;
}
.mt-chk { color: var(--accent); font-size: 14px; }


/* Mini FAQ */
.hero-minifaq {
  display: flex; flex-wrap: wrap; gap: 8px 0;
  justify-content: center; margin-bottom: 48px;
  background: var(--glow-sm); border: 1px solid var(--border-a);
  border-radius: var(--r); padding: 18px 20px;
  max-width: 680px; width: 100%;
}
.mfaq-item {
  display: flex; align-items: flex-start; gap: 6px;
  padding: 6px 12px; font-size: 13px; flex-wrap: wrap;
}
.mfaq-q { color: var(--tx-2); font-weight: 500; white-space: nowrap; }
.mfaq-sep { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.mfaq-a { color: var(--tx-1); font-weight: 500; }

/* ── Mockup ── */
.mockup-wrap { width: 100%; max-width: 860px; }
.mockup-chrome {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 60px rgba(0,230,118,.07);
}
/* Browser chrome bar */
.chrome-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.cdot { width: 12px; height: 12px; border-radius: 50%; }
.cdot.red { background: #ff5f57; }
.cdot.yel { background: #febc2e; }
.cdot.grn { background: #28c840; }
.chrome-url {
  margin-left: 10px; font-size: 12px; color: var(--tx-3);
  background: rgba(255,255,255,.05); padding: 3px 14px; border-radius: 20px;
}
/* Tabs */
.mock-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;  /* smooth iOS scroll */
  max-width: 100%;                    /* never overflow parent */
}
.mock-tabs::-webkit-scrollbar { display: none; }
.mtab {
  flex-shrink: 0; padding: 10px 18px; font-size: 12px; font-weight: 600;
  color: var(--tx-3); background: none; border: none;
  border-bottom: 2px solid transparent; transition: var(--ease);
}
.mtab:hover { color: var(--tx-2); }
.mtab.active { color: var(--accent); border-bottom-color: var(--accent); }
/* Panels */
.mock-panel { display: none; }
.mock-panel.active { display: block; }

/* Dashboard panel */
.dash-layout { display: flex; height: 290px; }
.dash-sidebar {
  width: 160px; padding: 14px 0; border-right: 1px solid var(--border); flex-shrink: 0;
}
.si {
  padding: 9px 18px; font-size: 11.5px; color: var(--tx-3);
  border-left: 2px solid transparent; transition: var(--ease); cursor: default;
}
.si.active, .si:hover { color: var(--accent); background: var(--glow-sm); border-left-color: var(--accent); }
.dash-main { flex: 1; padding: 20px; overflow: hidden; min-width: 0; }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.kpi { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px; text-align: center; }
.kpi-n { font-family: var(--ff-d); font-size: 20px; font-weight: 700; color: var(--accent); }
.kpi-l { font-size: 10px; color: var(--tx-3); margin-top: 3px; }
.chart-box { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px; }
.chart-label { font-size: 11px; color: var(--tx-2); margin-bottom: 14px; font-weight: 600; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 72px; }
.cbar {
  flex: 1; height: var(--h); background: rgba(0,230,118,.2);
  border-radius: 4px 4px 0 0; position: relative;
  transition: height 1.4s cubic-bezier(.4,0,.2,1);
}
.cbar.hi { background: var(--accent); }
.cbar span { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-size: 9px; color: var(--tx-3); }

/* Funnel panel */
.funnel-ui { padding: 24px; }
.fui-head { font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: var(--tx-1); margin-bottom: 20px; }
.flive { background: rgba(0,230,118,.1); color: var(--accent); font-size: 11px; padding: 2px 10px; border-radius: 20px; margin-left: 8px; }
.fui-steps { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.fui-step {
  flex: 1; min-width: 80px; padding: 14px 10px; text-align: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--r-sm);
}
.fui-step.hi { border-color: var(--border-a); background: var(--glow-sm); }
.fui-ico { font-size: 22px; margin-bottom: 6px; }
.fui-name { font-size: 11px; color: var(--tx-2); font-weight: 600; }
.fui-cr { font-size: 10px; color: var(--accent); margin-top: 4px; }
.fui-arrow { color: var(--tx-3); font-size: 16px; flex-shrink: 0; }
.fui-footer { font-size: 12px; color: var(--tx-3); display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.fui-add { color: var(--accent); font-weight: 600; cursor: pointer; }
.fui-mobile-note { font-size: 11px; color: var(--accent-dim); background: var(--glow-sm); border: 1px solid var(--border-a); border-radius: 6px; padding: 6px 12px; display: inline-block; }

/* Email panel */
.email-ui { padding: 20px 24px; }
.eui-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-family: var(--ff-d); font-size: 13px; font-weight: 700; color: var(--tx-1); }
.elive { font-size: 11px; color: var(--accent); background: var(--glow-sm); border: 1px solid var(--border-a); border-radius: 20px; padding: 3px 10px; }
.eui-seq { display: flex; flex-direction: column; gap: 8px; }
.eui-row {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--r-sm);
}
.eui-row.sent { border-color: rgba(0,230,118,.12); }
.eui-row.active-row { border-color: var(--border-a); background: var(--glow-sm); }
.eui-num { width: 22px; height: 22px; border-radius: 50%; background: var(--glow-sm); color: var(--accent); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.eui-info { flex: 1; }
.eui-info strong { font-size: 12.5px; color: var(--tx-1); }
.eui-meta { font-size: 11px; color: var(--tx-3); margin-top: 2px; }
.eui-check { color: var(--accent); font-size: 14px; font-weight: 700; }
.eui-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: blink 1s infinite; }

/* Automation panel */
.auto-ui { padding: 20px 24px; }
.aui-head { font-family: var(--ff-d); font-size: 13px; font-weight: 700; color: var(--tx-1); margin-bottom: 16px; }
.aui-flow { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.aui-node {
  padding: 10px 18px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
  word-break: break-word; white-space: normal;
}
.aui-node.trigger  { background: rgba(0,188,212,.1); border: 1px solid rgba(0,188,212,.3); color: #00bcd4; }
.aui-node.action   { background: var(--glow-sm); border: 1px solid var(--border-a); color: var(--accent); }
.aui-node.condition { background: rgba(255,193,7,.08); border: 1px solid rgba(255,193,7,.25); color: #ffc107; }
.aui-node.yes      { background: rgba(0,230,118,.08); border: 1px solid var(--border-a); color: var(--accent); font-size: 11px; }
.aui-node.no       { background: rgba(255,152,0,.08); border: 1px solid rgba(255,152,0,.2); color: #ff9800; font-size: 11px; }
.aui-line { width: 2px; height: 18px; background: var(--border-a); margin: 2px 0 2px 28px; }
.aui-split { display: flex; gap: 12px; margin-top: 4px; padding-left: 0; flex-wrap: wrap; }
.aui-branch { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.aui-note { margin-top: 16px; font-size: 11px; color: var(--accent-dim); background: var(--glow-sm); border: 1px solid var(--border-a); border-radius: 6px; padding: 8px 14px; }

/* Mobile badge */
.mobile-badge {
  text-align: center; font-size: 12px; color: var(--tx-3);
  margin-top: 12px; padding: 8px;
  background: var(--glow-sm); border: 1px solid var(--border-a); border-radius: var(--r-sm);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding: 64px 0;
  background: linear-gradient(to bottom, var(--bg), var(--bg-2));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat {
  padding: 28px 20px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); transition: var(--ease);
}
.stat:hover { border-color: var(--border-a); box-shadow: var(--sh-glow); transform: translateY(-4px); }
.stat-n {
  font-family: var(--ff-d); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--accent); letter-spacing: -.02em;
  line-height: 1; margin-bottom: 8px;
}
.stat-l { font-size: 13px; color: var(--tx-2); line-height: 1.4; }
.free-stat .stat-n, .free-label { color: var(--accent); }

/* ============================================================
   USE CASES
   ============================================================ */
.usecases { padding: 90px 0; background: var(--bg-2); }
.uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.uc-card {
  padding: 28px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: var(--ease); cursor: default;
}
.uc-card:hover { border-color: var(--border-a); transform: translateY(-5px); box-shadow: var(--sh-card); }
.uc-ico { font-size: 34px; margin-bottom: 14px; }
.uc-card h4 { font-family: var(--ff-d); font-size: 17px; font-weight: 700; color: var(--tx-1); margin-bottom: 10px; }
.uc-card p { font-size: 14px; color: var(--tx-2); line-height: 1.65; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 90px 0; background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 48px; }
.feat-card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px 22px;
  transition: var(--ease); position: relative; overflow: hidden; cursor: default;
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-accent); transform: scaleX(0); transition: var(--ease); transform-origin: left;
}
.feat-card:hover { border-color: var(--border-a); transform: translateY(-6px); box-shadow: var(--sh-card), var(--sh-glow); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-ico { font-size: 30px; margin-bottom: 14px; }
.feat-card h3 { font-family: var(--ff-d); font-size: 15px; font-weight: 700; color: var(--tx-1); margin-bottom: 9px; }
.feat-card p { font-size: 13px; color: var(--tx-2); line-height: 1.65; margin-bottom: 14px; }
.feat-tag { font-size: 11px; color: var(--accent-dim); background: var(--glow-sm); border: 1px solid var(--border-a); border-radius: 20px; padding: 3px 10px; display: inline-block; font-weight: 600; }
.feat-cta { text-align: center; }

/* ============================================================
   BEGINNERS SECTION
   ============================================================ */
.beginners { padding: 90px 0; background: var(--bg-2); }
.beg-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.beg-intro { font-size: 16px; color: var(--tx-2); line-height: 1.75; margin-bottom: 28px; }
.beg-list { list-style: none; margin-bottom: 32px; }
.beg-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; font-size: 15px; color: var(--tx-1); font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.beg-list li:last-child { border-bottom: none; }
.beg-list li span { font-size: 16px; flex-shrink: 0; }

.steps-card {
  background: var(--bg-card); border: 1px solid var(--border-a);
  border-radius: var(--r); padding: 32px; box-shadow: var(--sh-glow);
}
.steps-title {
  font-family: var(--ff-d); font-size: 14px; font-weight: 700;
  color: var(--tx-2); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.step { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 24px; }
.step:last-child { margin-bottom: 0; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-accent); color: var(--bg); font-family: var(--ff-d);
  font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 0 16px var(--glow-md);
}
.step-body strong { font-family: var(--ff-d); font-size: 15px; font-weight: 700; color: var(--tx-1); display: block; margin-bottom: 4px; }
.step-body p { font-size: 13px; color: var(--tx-2); line-height: 1.6; }

/* ============================================================
   WHY / COMPARISON
   ============================================================ */
.why { padding: 90px 0; background: var(--bg); }
.diff-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 56px; }
.diff-card {
  display: flex; gap: 16px; padding: 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  transition: var(--ease);
}
.diff-card:hover { border-color: var(--border-a); transform: translateY(-3px); }
.diff-chk {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--glow-sm); border: 1px solid var(--border-a);
  color: var(--accent); font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.diff-card strong { font-family: var(--ff-d); font-size: 15px; font-weight: 700; color: var(--tx-1); display: block; margin-bottom: 6px; }
.diff-card p { font-size: 13px; color: var(--tx-2); line-height: 1.6; }

.cmp-wrap { display: flex; gap: 20px; align-items: stretch; max-width: 860px; margin: 0 auto; }
.cmp-col {
  flex: 1; min-width: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.cmp-col.new { border-color: var(--border-a); box-shadow: 0 0 50px rgba(0,230,118,.1); }
.cmp-head { padding: 26px; text-align: center; border-bottom: 1px solid var(--border); }
.cmp-badge {
  display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 20px; margin-bottom: 12px; letter-spacing: .05em;
}
.cmp-badge.bad { background: var(--red); color: var(--red-t); border: 1px solid rgba(255,75,75,.2); }
.cmp-badge.good { background: var(--glow-sm); color: var(--accent); border: 1px solid var(--border-a); }
.cmp-price { font-family: var(--ff-d); font-size: 34px; font-weight: 800; color: var(--tx-1); }
.cmp-price.green { color: var(--accent); }
.cmp-price small { font-size: 15px; color: var(--tx-2); font-weight: 400; }
.cmp-note { font-size: 12px; color: var(--tx-3); margin-top: 6px; }
.cmp-rows { padding: 18px 24px; }
.cmp-row { display: flex; align-items: center; gap: 10px; padding: 11px 0; font-size: 13.5px; color: var(--tx-2); border-bottom: 1px solid rgba(255,255,255,.04); word-break: break-word; min-width: 0; }
.cmp-row:last-child { border-bottom: none; }
.cmp-x, .cmp-ok { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.cmp-x { background: var(--red); color: var(--red-t); }
.cmp-ok { background: var(--glow-sm); color: var(--accent); }
.cmp-vs { display: flex; align-items: center; justify-content: center; font-family: var(--ff-d); font-size: 18px; font-weight: 800; color: var(--tx-3); padding: 0 8px; flex-shrink: 0; }

/* ============================================================
   VIDEO SECTION — Premium lazy-load YouTube embed
   ============================================================ */
.video-sec {
  padding: 90px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;            /* prevents glow blobs from causing scroll */
  width: 100%;
}

/* Ambient background glow blobs */
.vid-bg-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(120px); z-index: 0;
}
.vid-bg-l {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,.07) 0%, transparent 70%);
  top: -80px; left: -150px;
}
.vid-bg-r {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,188,212,.05) 0%, transparent 70%);
  bottom: -60px; right: -100px;
}

/* Section sub headline */
.vid-sub { max-width: 600px; }

/* Outer wrapper — centered, max-width, relative z-index */
.vid-outer {
  position: relative; max-width: 820px; margin: 0 auto; z-index: 1;
}

/* Glowing border frame around the player */
.vid-frame {
  position: relative; border-radius: 20px;
  /* Premium shadow + subtle accent glow */
  box-shadow:
    0 0 0 1px var(--border-a),
    0 30px 80px rgba(0,0,0,.6),
    0 0 50px rgba(0,230,118,.08);
  background: var(--bg-card);
  overflow: hidden;
  transition: box-shadow .35s ease;
}
.vid-frame:hover {
  box-shadow:
    0 0 0 1px rgba(0,230,118,.35),
    0 32px 90px rgba(0,0,0,.65),
    0 0 70px rgba(0,230,118,.14);
}

/* 16:9 ratio — intrinsic sizing trick */
.vid-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

/* ── Thumbnail cover ── */
.vid-cover {
  position: absolute; inset: 0;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  border-radius: 20px; overflow: hidden;
}
.vid-cover:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Thumbnail image — fills container, slight scale on hover */
.vid-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s ease;
  border-radius: 20px;
}
.vid-cover:hover .vid-thumb-img { transform: scale(1.03); }

/* Dark cinematic overlay */
.vid-overlay {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(
    to bottom,
    rgba(6,10,16,.25) 0%,
    rgba(6,10,16,.1) 40%,
    rgba(6,10,16,.55) 100%
  );
  transition: background .3s ease;
}
.vid-cover:hover .vid-overlay {
  background: linear-gradient(
    to bottom,
    rgba(6,10,16,.2) 0%,
    rgba(6,10,16,.06) 40%,
    rgba(6,10,16,.48) 100%
  );
}

/* ── Animated play button ── */
.vid-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%); /* slight upward to sit above caption */
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}

/* Outer ripple pulse ring */
.vid-play-pulse {
  position: absolute;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(0,230,118,.15);
  animation: vid-pulse 2.2s ease-out infinite;
}
@keyframes vid-pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Mid ring */
.vid-play-ring {
  position: absolute;
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid rgba(0,230,118,.4);
  animation: vid-ring 2.2s ease-out infinite .4s;
}
@keyframes vid-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Core play button */
.vid-play-btn {
  position: relative; z-index: 2;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: #050b0f;
  box-shadow: 0 0 32px rgba(0,230,118,.5), 0 6px 20px rgba(0,0,0,.5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vid-cover:hover .vid-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 48px rgba(0,230,118,.7), 0 8px 24px rgba(0,0,0,.55);
}
.vid-play-btn svg { margin-left: 4px; } /* optical center for play icon */

/* ── "Free Demo" badge (top-left) ── */
.vid-badge {
  position: absolute; top: 16px; left: 16px; z-index: 4;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(6,10,16,.75); backdrop-filter: blur(8px);
  border: 1px solid var(--border-a); border-radius: var(--r-pill);
  padding: 5px 14px; font-size: 12px; font-weight: 600;
  color: var(--accent); font-family: var(--ff-d);
}
.vid-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
}

/* ── Caption strip (bottom) ── */
.vid-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 20px 22px 18px;
  background: linear-gradient(to top, rgba(6,10,16,.9) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 3px;
  transform: translateY(4px); opacity: .9;
  transition: transform .3s ease, opacity .3s ease;
}
.vid-cover:hover .vid-caption { transform: none; opacity: 1; }
.vid-cap-title {
  font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: var(--tx-1);
}
.vid-cap-sub { font-size: 12px; color: var(--tx-2); }

/* ── iframe (injected by JS after click) ── */
.vid-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; border-radius: 20px;
  background: #000;
}

/* ── Feature chips row ── */
.vid-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 20px;
}
.vid-chip {
  background: var(--glow-sm); border: 1px solid var(--border-a);
  border-radius: var(--r-pill); padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: var(--tx-2);
  transition: var(--ease);
}
.vid-chip:hover { background: var(--glow-md); color: var(--accent); }

/* ── CTA row below video ── */
.vid-cta {
  text-align: center; margin-top: 40px;
}
.vid-cta p {
  font-size: 15px; color: var(--tx-2); margin-bottom: 18px;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 90px 0; background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; transition: var(--ease); position: relative;
}
.tcard::before {
  content: '"'; position: absolute; top: 12px; right: 18px;
  font-family: Georgia, serif; font-size: 52px; color: var(--accent); opacity: .1; line-height: 1;
}
.tcard:hover { border-color: var(--border-a); transform: translateY(-3px); box-shadow: var(--sh-card); }
.tcard-stars { color: #ffc107; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
/* Smaller, more natural-feeling text — less AI-polished */
.tcard p {
  font-size: 13px; color: var(--tx-2); line-height: 1.7; margin-bottom: 20px;
  font-style: normal; font-weight: 400;
}
/* ============================================================
   TESTIMONIAL AVATARS — Photo-Ready System
   ============================================================

   HOW TO ADD REAL PERSON PHOTOS — 3 Simple Steps:
   ─────────────────────────────────────────────────
   STEP 1: Create an "images" folder next to your index.html
           Your folder structure should look like:
           ├── index.html
           ├── style.css
           ├── script.js
           └── images/
               ├── marcus-j.jpg
               ├── sarah-k.jpg
               ├── devon-l.jpg
               ├── aisha-p.jpg
               ├── tyler-w.jpg
               └── rachel-l.jpg

   STEP 2: Save each person's photo with the correct filename
           ✅ Best size: 200×200px or 400×400px (square crop)
           ✅ Best format: JPG or WebP
           ✅ Keep file size under 50KB each (compress at squoosh.app)
           ✅ Use a tight face crop — head and shoulders only

   STEP 3: Done! Photos will appear automatically.
           If any photo is missing, the colored initials fallback
           will show instead — so it always looks great.

   PHOTO SOURCES (free, license-free options):
   ─────────────────────────────────────────────
   • Pexels.com   → search "portrait smiling person"
   • Unsplash.com → search "professional headshot"
   • Generated.photos → AI-generated, no real person issues
   • UIFaces.co   → free avatars for UI mockups
   • thispersondoesnotexist.com → AI faces (refresh for new one)

   IMPORTANT: Use royalty-free images only. Do not use
   real people's photos without their permission.
   ──────────────────────────────────────────────────── */

/* ── Avatar wrapper — shared base ── */
.tavatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;

  /* Thin colored ring that matches the gradient color */
  outline: 2px solid rgba(255,255,255,.12);
  outline-offset: 1px;
}

/* ── Photo img — fills the circle perfectly ── */
.tavatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crops to fill — never squished */
  object-position: center top; /* focus on face, not shoulders */
  border-radius: 50%;
  display: block;
  transition: transform .3s ease;
}
.tcard:hover .tavatar-photo { transform: scale(1.06); }

/* ── Initials fallback — shows only when image fails to load ── */
.tavatar-initials {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 13px;
  font-weight: 700;
  color: #050b0f;
  letter-spacing: -.01em;
}

/* ── Per-person gradient rings & fallback backgrounds ──
   These apply to both the outline ring color AND the
   initials fallback background. One class per person.   */
.c1 { outline-color: rgba(0,230,118,.35); }
.c1 .tavatar-initials { background: linear-gradient(135deg,#00e676,#00acc1); }

.c2 { outline-color: rgba(124,77,255,.35); }
.c2 .tavatar-initials { background: linear-gradient(135deg,#7c4dff,#e040fb); }

.c3 { outline-color: rgba(255,109,0,.35); }
.c3 .tavatar-initials { background: linear-gradient(135deg,#ff6d00,#ffca28); }

.c4 { outline-color: rgba(240,98,146,.35); }
.c4 .tavatar-initials { background: linear-gradient(135deg,#f06292,#ce93d8); }

.c5 { outline-color: rgba(41,182,246,.35); }
.c5 .tavatar-initials { background: linear-gradient(135deg,#29b6f6,#00e5ff); }

.c6 { outline-color: rgba(102,187,106,.35); }
.c6 .tavatar-initials { background: linear-gradient(135deg,#66bb6a,#aed581); }

/* ── Author row layout ── */
.tcard-author { display: flex; align-items: center; gap: 12px; }
.t-name { font-family: var(--ff-d); font-size: 13px; font-weight: 700; color: var(--tx-1); }
.t-role { font-size: 11px; color: var(--tx-3); margin-top: 2px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 90px 0; background: var(--bg-2); }
.price-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 22px; max-width: 960px; margin: 0 auto 36px; align-items: start; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 34px 28px; transition: var(--ease); position: relative;
}
.price-card:hover:not(.featured) { border-color: var(--border-a); transform: translateY(-4px); }

/* FREE PLAN — DOMINANT CARD — slightly reduced glow */
.free-card {
  border-color: var(--border-a) !important;
  box-shadow: 0 0 44px rgba(0,230,118,.1);
  background: linear-gradient(160deg, #0e1f14, #0c1a10);
}
.pop-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-accent); color: var(--bg);
  font-family: var(--ff-d); font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-family: var(--ff-d); font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--tx-2); margin-bottom: 12px; }
.plan-price { font-family: var(--ff-d); font-size: 48px; font-weight: 800; color: var(--tx-1); line-height: 1; margin-bottom: 8px; }
.free-card .plan-price { color: var(--accent); }
.plan-price span { font-size: 18px; font-weight: 400; color: var(--tx-2); }
.plan-tagline { font-size: 13px; color: var(--tx-3); margin-bottom: 20px; }
.free-bar {
  background: var(--glow-sm); border: 1px solid var(--border-a);
  border-radius: var(--r-sm); padding: 10px 14px; font-size: 13px; font-weight: 600;
  color: var(--accent); margin-bottom: 22px; text-align: center;
}
.plan-feats { list-style: none; margin-bottom: 28px; }
.plan-feats li {
  font-size: 13.5px; color: var(--tx-2); padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 10px;
}
.plan-feats li:last-child { border-bottom: none; }
.plan-feats li::before { content: ''; }
.free-note { text-align: center; font-size: 12px; color: var(--tx-3); }
.price-note { text-align: center; font-size: 13px; color: var(--tx-3); }
.price-note a { color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 90px 0; background: var(--bg); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 10px; overflow: hidden; transition: var(--ease); }
.faq-item.open { border-color: var(--border-a); }
.faq-q {
  width: 100%; background: var(--bg-card); border: none;
  padding: 20px 26px; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-d); font-size: 15px; font-weight: 600; color: var(--tx-1);
  text-align: left; gap: 16px; transition: var(--ease); min-height: 64px;
}
.faq-q:hover { background: var(--bg-hover); color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); background: rgba(0,230,118,.03); }
.faq-arr { font-size: 18px; color: var(--tx-3); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-arr { transform: rotate(180deg); color: var(--accent); }
.faq-ans { background: var(--bg-card); max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-ans p { padding: 20px 26px; font-size: 14px; color: var(--tx-2); line-height: 1.75; border-top: 1px solid var(--border); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; padding: 110px 0; background: var(--bg-2); overflow: hidden; }
/* Reduced glow on final CTA */
.fcta-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(0,230,118,.08) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.fcta-inner { text-align: center; position: relative; z-index: 1; }
.fcta-h2 { font-family: var(--ff-d); font-size: clamp(28px, 5vw, 56px); font-weight: 800; letter-spacing: -.03em; color: var(--tx-1); line-height: 1.15; margin-bottom: 20px; }
.fcta-sub { font-size: 18px; color: var(--tx-2); max-width: 520px; margin: 0 auto 44px; font-weight: 400; }
.fcta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.fcta-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; font-size: 14px; color: var(--tx-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 0; }
.foot-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 48px; }
.foot-brand p { font-size: 13px; color: var(--tx-3); margin: 16px 0 18px; line-height: 1.7; max-width: 320px; }
.foot-email a { font-size: 13px; color: var(--accent); margin-bottom: 20px; display: inline-block; }
.foot-email a:hover { text-decoration: underline; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.soc-link {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--tx-2);
  font-size: 15px; transition: var(--ease);
}
.soc-link:hover { border-color: var(--accent); color: var(--accent); background: var(--glow-sm); }
.foot-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.foot-col h5 { font-family: var(--ff-d); font-size: 12px; font-weight: 700; color: var(--tx-1); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.foot-col a { display: block; font-size: 13.5px; color: var(--tx-3); margin-bottom: 10px; transition: var(--ease); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid var(--border); padding: 24px 0 32px; }
/* Footer mini trust row */
.foot-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: center; margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--tx-3); font-weight: 500;
}
.foot-disc { font-size: 12px; color: var(--tx-3); line-height: 1.65; margin-bottom: 10px; }
.foot-disc strong { color: var(--tx-2); }
.foot-copy { font-size: 12px; color: var(--tx-3); margin-top: 14px; }

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.float-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  padding: 12px 16px; background: rgba(6,10,16,.96);
  backdrop-filter: blur(12px); border-top: 1px solid var(--border-a);
  display: none; /* shown via JS on mobile */
  animation: slideUp .35s ease;
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } }
.float-btn { width: 100%; font-size: 15px; border-radius: 12px; }

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; }
  .free-card { order: -1; }
}

@media (max-width: 900px) {
  .uc-grid { grid-template-columns: repeat(2,1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .beg-inner { grid-template-columns: 1fr; gap: 40px; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .foot-cols { grid-template-columns: repeat(2,1fr); }
  .cmp-wrap { flex-direction: column; align-items: stretch; max-width: 100%; }
  .cmp-col { width: 100%; }
  .cmp-vs { padding: 10px 0; text-align: center; }
}

@media (max-width: 768px) {
  /* ── Hide Android WebView scrollbar track — the "mini side panel" ── */
  html, body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar { display: none !important; width: 0 !important; }

  /* ── CRITICAL: stop ALL horizontal scroll on mobile ──
     NOTE: overflow-x on section elements causes Android WebView to render
     a scrollbar track (the "mini panel" strip). Use width/max-width only. ── */
  .container,
  .hero-inner,
  .mockup-wrap,
  .mockup-chrome,
  .vid-outer,
  .vid-frame,
  .cmp-wrap,
  .beg-inner,
  .feat-grid,
  .testi-grid,
  .uc-grid,
  .price-grid,
  .fui-steps,
  .eui-seq,
  .aui-flow {
    max-width: 100%;
    width: 100%;
    overflow-x: clip; /* clip vs hidden — does NOT create scroll container on mobile */
  }

  /* Sections: width 100%, NO overflow property (avoids scrollbar track) */
  section {
    max-width: 100%;
    width: 100%;
    position: relative;
  }

  /* Cards: remove overflow:hidden which can create scrollbar track artifacts */
  .feat-card,
  .uc-card,
  .tcard,
  .price-card,
  .steps-card,
  .diff-card {
    overflow: visible;
  }
  /* Keep feat-card ::after clipped without overflow:hidden using clip-path */
  .feat-card { clip-path: inset(0 0 0 0 round var(--r)); }

  /* ── PERFORMANCE: disable expensive effects on mobile ── */
  .glow, .vid-bg-glow, .fcta-glow, .lc-glow {
    filter: blur(60px); /* cheaper blur on mobile */
  }
  /* Disable parallax glow movement on mobile (no mousemove) */
  .glow-a { top: -60px; left: -80px; width: 300px; height: 300px; }
  .glow-b { width: 260px; height: 260px; right: -50px; }
  .glow-c { display: none; } /* remove center glow — not visible anyway */

  /* Nav */
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-container { gap: 0; }

  /* Hero */
  .hero { padding: 90px 0 48px; }
  .hero-h1 { font-size: clamp(26px, 8vw, 38px); line-height: 1.15; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .micro-trust { gap: 8px 12px; }
  .mt-badge { font-size: 12px; }

  /* Mini FAQ — stack vertically, no word cuts */
  .hero-minifaq {
    flex-direction: column;
    padding: 14px 16px;
    gap: 2px;
    width: calc(100% - 0px);
  }
  .mfaq-item {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 7px 4px;
    font-size: 13px;
    align-items: baseline;
    border-bottom: 1px solid var(--border);
  }
  .mfaq-item:last-child { border-bottom: none; }
  .mfaq-q { font-size: 12.5px; flex-shrink: 0; }
  .mfaq-sep { flex-shrink: 0; }
  .mfaq-a { font-size: 12.5px; }

  /* ── MOCKUP: Dashboard — FIX double-panel issue ── */
  /* Hide sidebar completely — no phantom space */
  .dash-sidebar { display: none !important; width: 0 !important; padding: 0 !important; border: none !important; }
  .dash-layout { height: auto; min-height: 200px; }
  /* dash-main takes full width with no left remnant */
  .dash-main { width: 100%; padding: 14px; flex: 1 1 100%; }
  .kpi-n { font-size: 16px; }
  .kpi-row { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .kpi { padding: 10px 6px; }
  .kpi-l { font-size: 9px; }

  /* ── FUNNEL PANEL: no horizontal scroll, steps wrap cleanly ── */
  .funnel-ui { padding: 16px 14px; }
  .fui-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }
  .fui-arrow { display: none; } /* hidden on mobile, grid handles layout */
  .fui-step { min-width: 0; padding: 12px 8px; }
  .fui-ico { font-size: 18px; }
  .fui-name { font-size: 10px; }
  .fui-cr { font-size: 9px; }
  .fui-footer { font-size: 11px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .fui-mobile-note { font-size: 10px; }

  /* ── EMAIL PANEL ── */
  .email-ui { padding: 14px; }
  .eui-info strong { font-size: 12px; }
  .eui-meta { font-size: 10px; }

  /* ── AUTOMATION PANEL: fix overflow ── */
  .auto-ui { padding: 14px; }
  .aui-node { font-size: 11px; padding: 8px 12px; width: 100%; }
  .aui-split {
    flex-direction: column;
    gap: 4px;
    padding-left: 0;
    margin-left: 0;
  }
  .aui-branch { width: 100%; }
  .aui-line { margin-left: 16px; }
  .aui-note { font-size: 10px; }

  /* ── MOCK TABS: scrollable, no overflow ── */
  .mock-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .mtab { font-size: 11px; padding: 9px 12px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Sections spacing */
  .usecases, .features, .beginners, .why, .video-sec,
  .testimonials, .pricing, .faq, .final-cta { padding: 64px 0; }
  .sec-head { margin-bottom: 36px; }

  /* Grid → 1 col */
  .uc-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-grid { grid-template-columns: 1fr; }

  /* ── COMPARISON: stack fully, fix text clipping ── */
  .cmp-wrap { flex-direction: column; align-items: stretch; max-width: 100%; gap: 0; }
  .cmp-col { width: 100%; border-radius: 0; }
  .cmp-col:first-child { border-radius: var(--r) var(--r) 0 0; }
  .cmp-col:last-child { border-radius: 0 0 var(--r) var(--r); border-top: none; }
  .cmp-vs {
    padding: 14px 0; font-size: 15px;
    text-align: center; background: var(--bg);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .cmp-rows { padding: 14px 16px; }
  .cmp-row { font-size: 13px; gap: 8px; padding: 9px 0; }
  .cmp-head { padding: 20px 16px; }
  .cmp-price { font-size: 26px; }

  /* Buttons full width on mobile */
  .feat-cta .btn,
  .fcta-btns .btn { width: 100%; }
  .fcta-btns { flex-direction: column; align-items: center; max-width: 340px; margin-left: auto; margin-right: auto; }
  .fcta-trust { flex-direction: column; align-items: center; gap: 10px; }

  /* Footer */
  .foot-cols { grid-template-columns: 1fr 1fr; }
  /* Prevent footer trust text clipping */
  .foot-trust-row { font-size: 11px; gap: 6px 12px; }
  .foot-trust-row span { flex: 1 1 calc(50% - 12px); text-align: center; }

  /* Hero CTA group full-width on mobile */
  .hero-cta-group { width: 100%; }
  .hero-cta-group .btn { width: 100%; }

  /* Show floating CTA on mobile */
  .float-cta { display: block; }
  /* Pad body so floating CTA doesn't overlap content */
  .footer { padding-bottom: 80px; }

  /* Video responsive */
  .vid-outer { max-width: 100%; }
  .vid-play-btn { width: 58px; height: 58px; }
  .vid-play-pulse { width: 76px; height: 76px; }
  .vid-play-ring { width: 64px; height: 64px; }
  .vid-play-btn svg { width: 24px; height: 24px; }
  .vid-cap-title { font-size: 13px; }
  .vid-chips { gap: 6px; }
  .vid-chip { font-size: 11px; padding: 5px 11px; }

  /* Beginners section — steps card full width */
  .steps-card { padding: 24px 18px; }
  .step { gap: 14px; }
  .step-body strong { font-size: 14px; }

  /* Diff cards — 1 col */
  .diff-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
  .diff-card { padding: 18px 16px; }

  /* Sec head text */
  .sec-h2 { font-size: clamp(22px, 6vw, 32px); }
  .sec-sub { font-size: 15px; }

  /* Final CTA trust items */
  .fcta-trust span { font-size: 13px; }

  /* Popup — full width safe area */
  .exit-popup { padding: 32px 20px; width: calc(100% - 32px); }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(22px, 7.5vw, 30px); }
  .hero-pill { font-size: 11.5px; padding: 7px 14px; }
  .hero-sub { font-size: 14px; }
  .sec-h2 { font-size: 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 12px; }
  .stat-n { font-size: 28px; }

  /* Footer columns — stack fully on small phones */
  .foot-cols { grid-template-columns: 1fr; gap: 24px; }
  .foot-trust-row { font-size: 11px; gap: 6px 16px; }
  .foot-trust-row span { flex: 1 1 100%; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 16px 18px; min-height: 56px; }
  .faq-ans p { padding: 16px 18px; }

  /* Cards */
  .feat-card, .uc-card, .tcard { padding: 20px 16px; }
  .price-card { padding: 28px 20px; }
  .plan-feats li { padding: 10px 0; font-size: 13px; }

  /* Comparison */
  .cmp-row { font-size: 12px; }
  .cmp-head { padding: 16px 14px; }
  .cmp-price { font-size: 22px; }

  /* Video on very small screens */
  .vid-badge { top: 10px; left: 10px; font-size: 11px; padding: 4px 10px; }
  .vid-caption { padding: 14px 14px 12px; }
  .vid-cap-title { font-size: 12px; }
  .vid-cap-sub { display: none; }
  .vid-play-btn { width: 52px; height: 52px; }
  .vid-play-btn svg { width: 20px; height: 20px; }

  /* Funnel steps — keep 2-col grid on small phones */
  .fui-steps { grid-template-columns: 1fr 1fr; gap: 6px; }
  .fui-arrow { display: none; }

  /* Buttons */
  .btn-xl { padding: 16px 28px; font-size: 16px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; }

  /* Popup safe */
  .exit-popup { padding: 28px 16px; }
  .exit-popup h3 { font-size: 19px; }
}

/* ============================================================
   LEAD CAPTURE SECTION — Brevo Form (Mobile-First)
   ============================================================ */

/* ── Section shell ── */
.lead-capture {
  position: relative;
  padding: 80px 0;
  background: var(--bg-2);
  overflow: hidden;
}

/* Ambient glows */
.lc-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.lc-glow-l {
  background: rgba(0, 230, 118, .06);
  top: -80px; left: -100px;
}
.lc-glow-r {
  background: rgba(0, 188, 212, .05);
  bottom: -80px; right: -100px;
}

/* ── Inner layout — stacks on mobile, side-by-side on desktop ── */
.lc-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

/* ── Left copy column ── */
.lc-copy {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.lc-h2 {
  font-family: var(--ff-d);
  font-size: clamp(1.65rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--tx-1);
  margin: 12px 0 16px;
}

.lc-sub {
  font-size: 1rem;
  color: var(--tx-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lc-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 340px;
  margin: 0 auto;
}

.lc-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--tx-2);
  line-height: 1.5;
}

.lc-chk {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* ── Right form column ── */
.lc-form-wrap {
  width: 100%;
  max-width: 460px;
}

.lc-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-a);
  border-radius: var(--r);
  padding: 36px 28px 32px;
  box-shadow: var(--sh-card), var(--sh-glow);
}

/* Form header */
.lc-form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.lc-form-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.lc-form-label {
  font-size: .85rem;
  color: var(--tx-3);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Field groups */
.lc-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.lc-label {
  font-family: var(--ff-d);
  font-size: .82rem;
  font-weight: 600;
  color: var(--tx-2);
  letter-spacing: .02em;
}

.lc-input {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--ff-b);
  font-size: 1rem;           /* 16px — prevents iOS auto-zoom */
  color: var(--tx-1);
  transition: var(--ease);
  outline: none;
  -webkit-appearance: none;  /* remove iOS default styles */
  appearance: none;
}

.lc-input::placeholder {
  color: var(--tx-3);
}

.lc-input:focus {
  border-color: var(--accent);
  background: var(--bg-hover);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, .12);
}

/* Submit button — full width on all sizes */
.lc-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: var(--r-sm);
  gap: 10px;
}

/* Brevo spinner icon (hidden by default by Brevo's own class) */
.lc-loader-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  display: none;
}
.sib-hide-loader-icon { display: none; }

/* Privacy note */
.lc-privacy {
  margin-top: 14px;
  font-size: .78rem;
  color: var(--tx-3);
  text-align: center;
  line-height: 1.5;
}

/* Honeypot — must be visually hidden but NOT display:none (some spam bots check) */
.lc-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* ── Tablet: side-by-side layout ── */
@media (min-width: 768px) {
  .lead-capture { padding: 100px 0; }

  .lc-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .lc-copy {
    flex: 1;
    text-align: left;
    max-width: none;
  }

  .lc-perks {
    margin: 0;
    max-width: none;
  }

  .lc-form-wrap {
    flex: 0 0 420px;
    max-width: 420px;
  }
}

/* ── Large desktop ── */
@media (min-width: 1024px) {
  .lc-inner { gap: 80px; }
  .lc-form-card { padding: 44px 36px 40px; }

  .lc-submit {
    font-size: 1.05rem;
    padding: 18px 28px;
  }
}

/* ── Small phones (360px and under) ── */
@media (max-width: 360px) {
  .lead-capture { padding: 64px 0; }
  .lc-form-card { padding: 28px 18px 24px; }
  .lc-input { padding: 13px 14px; }
  .lc-submit { font-size: .95rem; padding: 15px 20px; }

  /* Global tiny phone tweaks */
  .container { padding: 0 14px; }
  .hero-inner { padding: 0 14px; }
  .hero-h1 { font-size: 22px; }
  .hero-pill { font-size: 11px; padding: 6px 12px; }
  .btn-xl { padding: 14px 20px; font-size: 15px; }
  .btn-lg { padding: 13px 18px; font-size: 14px; }
  .sec-h2 { font-size: 20px; }
  .fui-steps { grid-template-columns: 1fr 1fr; }
  .mockup-chrome { border-radius: var(--r-sm); }
  .cmp-row { font-size: 11.5px; gap: 6px; }
  .mt-badge { font-size: 11px; }
  .micro-trust { gap: 6px 10px; }
}