/* ==========================================
   RESET & BASE
========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f7f7f5;
  --light: #f0f0ec;
  --border: #e5e5e0;
  --text: #111110;
  --text-muted: #777770;
  --text-light: #aaaaaa;
  --accent: #111110;
  --green: #16a34a;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
a { text-decoration: none; }

/* ==========================================
   BUTTONS
========================================== */
.btn-black {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); color: var(--white);
  padding: 12px 24px; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-black:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-black.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-black.btn-xl { padding: 18px 40px; font-size: 1.05rem; border-radius: 100px; }

.btn-outline-dark {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text);
  padding: 12px 24px; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid var(--text);
  transition: all 0.2s; cursor: pointer;
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }

.btn-ghost-dark {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text-muted);
  padding: 15px 24px; border-radius: 100px;
  font-weight: 500; font-size: 1rem;
  transition: color 0.2s;
}
.btn-ghost-dark:hover { color: var(--text); }

/* ==========================================
   NAV
========================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 7px;
  font-size: 1.05rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; flex-shrink: 0;
}
.logo-mark { font-size: 1.1rem; }
.nav-links { display: flex; gap: 32px; flex: 1; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-login { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-login:hover { color: var(--text); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 32px 24px; gap: 16px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.mobile-menu.open { display: flex; }

/* ==========================================
   HERO
========================================== */
.hero {
  min-height: 100vh;
  padding: 110px 0 80px;
  display: flex; align-items: center;
  max-width: 1160px; margin: 0 auto;
  padding-left: 32px; padding-right: 32px;
  gap: 64px;
}
.hero-content { flex: 1; min-width: 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero-h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-h1 em { font-style: italic; font-weight: 800; }
.hero-p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; max-width: 500px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: 0.85rem; color: var(--text-muted); }
.trust-avatars { display: flex; }
.ta {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: white;
  margin-left: -8px;
}
.ta:first-child { margin-left: 0; }
.hero-trust strong { color: var(--text); }
.br-desktop { display: block; }

/* PHONE MOCKUP */
.hero-visual { flex-shrink: 0; position: relative; }
.hero-phone-wrap { position: relative; display: flex; justify-content: center; }
.mock-phone {
  width: 240px;
  aspect-ratio: 1080 / 1924;
  background: #000;
  border-radius: 32px;
  padding: 0;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2), 0 0 0 4px #222;
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 18px;
  background: #000; border-radius: 20px; z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0a0a0a;
}
.clip-screen {
  width: 100%; height: 100%;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 48px 10px 14px;
}
.clip-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a1040, #080820);
  z-index: 0;
}
.clip-speaker-mock {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  flex: 1;
  justify-content: center;
}
.speaker-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
}
.speaker-inner { font-size: 1.5rem; }
.speaker-wave { display: flex; align-items: flex-end; gap: 3px; height: 24px; margin-top: 6px; }
.speaker-wave span {
  width: 3px; background: rgba(255,255,255,0.4); border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.speaker-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.speaker-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.speaker-wave span:nth-child(3) { height: 22px; animation-delay: 0.2s; }
.speaker-wave span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.speaker-wave span:nth-child(5) { height: 8px; animation-delay: 0.4s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}
.clip-hook-bar {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border-radius: 8px; padding: 7px 9px;
  font-size: 0.6rem; font-weight: 700; line-height: 1.4;
  border-left: 3px solid #a855f7;
}
.clip-captions {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 3px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border-radius: 7px; padding: 7px 8px;
}
.cw { font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.65); }
.cw.active {
  color: #fff; background: #7c3aed;
  padding: 1px 4px; border-radius: 4px;
}
.clip-timer {
  position: absolute; bottom: 52px; right: 12px;
  background: rgba(0,0,0,0.6); border-radius: 5px;
  padding: 2px 7px; font-size: 0.6rem; font-weight: 600; z-index: 1;
}
.platform-badge {
  position: absolute; top: 52px; right: 10px; z-index: 1;
  background: rgba(0,0,0,0.6); border-radius: 5px;
  padding: 3px 8px;
}
.platform-badge span { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); }

/* Float badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: floatBadge 3s ease-in-out infinite;
}
.f1 { top: 40px; right: -100px; animation-delay: 0s; }
.f2 { top: 160px; left: -120px; animation-delay: 0.7s; }
.f3 { bottom: 80px; right: -90px; animation-delay: 1.4s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ==========================================
   MARQUEE
========================================== */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  overflow: hidden; padding: 14px 0;
}
.marquee-inner { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex; gap: 20px; align-items: center;
  animation: marquee 25s linear infinite;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
}
.dot-sep { color: var(--border); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================
   DEMO SECTION
========================================== */
.demo-section {
  padding: 100px 32px;
  max-width: 1160px; margin: 0 auto;
}
.demo-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 16px;
}
.demo-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: 16px; line-height: 1.1;
}
.demo-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; margin-bottom: 64px; line-height: 1.7; }

.demo-transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: start;
}
.demo-left-label, .demo-right-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px;
}

/* YouTube frame */
.yt-frame-wrap {
  position: relative;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.yt-overlay {
  position: absolute; inset: 0; cursor: pointer; z-index: 2;
  display: flex; align-items: flex-end;
}
.yt-thumb { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; }
.yt-thumb-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1a0933 0%, #0d1545 50%, #000 100%);
}
.yt-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}
.yt-overlay:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.yt-thumb-text { position: relative; z-index: 1; padding: 16px; }
.yt-title-bar { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.yt-meta { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.yt-player { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.hidden { display: none !important; }

.yt-duration-bar { margin-top: 14px; }
.yt-bar-inner {
  height: 4px; background: var(--border); border-radius: 2px;
  overflow: hidden; position: relative; margin-bottom: 8px;
}
.yt-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: #ff0000; border-radius: 2px;
  width: 0; transition: width 0.1s linear;
}
.yt-clips-markers { position: relative; height: 16px; }
.marker {
  position: absolute; top: 0;
  width: 2px; height: 16px;
  border-radius: 1px;
}
.m1 { left: 20%; background: #a855f7; }
.m1::after { content: '1'; position: absolute; top: -16px; left: 4px; font-size: 0.6rem; font-weight: 700; color: #a855f7; }
.m2 { left: 50%; background: #06b6d4; }
.m2::after { content: '2'; position: absolute; top: -16px; left: 4px; font-size: 0.6rem; font-weight: 700; color: #06b6d4; }
.m3 { left: 78%; background: #f97316; }
.m3::after { content: '3'; position: absolute; top: -16px; left: 4px; font-size: 0.6rem; font-weight: 700; color: #f97316; }
.yt-bar-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; font-weight: 500; }

/* ARROW */
.demo-arrow {
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding-top: 80px; gap: 8px;
}
.arrow-line { width: 2px; height: 60px; background: var(--border); }
.arrow-label {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.arrow-icon { font-size: 1.2rem; }
.arrow-label span { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); }

/* OUTPUT CLIPS */
.output-clips { display: flex; flex-direction: column; gap: 12px; }
.out-clip {
  display: flex; align-items: center; gap: 14px;
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px;
  transition: all 0.2s;
}
.out-clip.active-clip { border-color: #a855f7; background: #faf5ff; }
.out-clip-screen {
  width: 54px; height: 96px; border-radius: 8px;
  background: #0a0a16; position: relative; overflow: hidden;
  flex-shrink: 0;
}
.out-bg { position: absolute; inset: 0; }
.bg1 { background: linear-gradient(160deg, #1a0933, #0d0528); }
.bg2 { background: linear-gradient(160deg, #0a1a2e, #041020); }
.bg3 { background: linear-gradient(160deg, #1a100a, #150805); }
.out-hook {
  position: relative; z-index: 1;
  padding: 4px 4px; font-size: 0.42rem; font-weight: 700;
  background: rgba(0,0,0,0.55); line-height: 1.3;
}
.out-subs {
  position: absolute; bottom: 4px; left: 4px; right: 4px;
  background: rgba(0,0,0,0.55); border-radius: 3px;
  padding: 3px 4px; display: flex; flex-wrap: wrap; gap: 1px;
}
.sw { font-size: 0.4rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.sw.hi { color: #fff; background: #7c3aed; padding: 0 2px; border-radius: 2px; }
.out-dur {
  position: absolute; top: 4px; right: 4px;
  background: rgba(0,0,0,0.6); border-radius: 3px;
  padding: 1px 4px; font-size: 0.38rem; font-weight: 600;
}
.out-clip-foot { flex: 1; display: flex; justify-content: space-between; align-items: center; }
.out-clip-foot span { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.dl-btn {
  background: var(--text); color: var(--white);
  border: none; border-radius: 6px; padding: 6px 12px;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none; display: inline-block;
}
.dl-btn:hover { opacity: 0.8; }
.platform-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.plat-tag {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
}

/* ==========================================
   STATS
========================================== */
.stats-section {
  background: var(--text);
  color: var(--white);
  padding: 64px 32px;
}
.stats-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.stat-block { text-align: center; padding: 16px 48px; }
.stat-n {
  font-size: 3.5rem; font-weight: 900;
  letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 8px;
}
.stat-n span { font-size: 2rem; font-weight: 700; opacity: 0.7; }
.stat-l { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; max-width: 160px; margin: 0 auto; }
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.1); }

/* ==========================================
   SECTIONS
========================================== */
.section { padding: 100px 0; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.1; margin-bottom: 24px;
}
.section-p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin-bottom: 56px; line-height: 1.7; }

/* ==========================================
   HOW IT WORKS
========================================== */
.how-section { background: var(--off-white); }
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; }
.step {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 0.72rem; font-weight: 800; color: var(--text-muted);
  letter-spacing: 0.1em; padding-top: 4px; flex-shrink: 0;
  width: 28px;
}
.step-content { flex: 1; }
.step-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.step-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.step-arrow { font-size: 1.5rem; color: var(--border); padding: 0 0 0 60px; }

/* ==========================================
   FEATURES
========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: var(--text); transform: translateY(-2px); }
.feat-card.large { grid-column: span 2; }
.feat-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.feat-link { display: inline-block; margin-top: 16px; font-size: 0.85rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--text); }

/* ==========================================
   TESTIMONIALS
========================================== */
.testimonials-section { background: var(--off-white); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.tcard.featured-t { background: var(--text); color: var(--white); }
.tcard p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.tcard.featured-t p { color: rgba(255,255,255,0.85); }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tav {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: white; flex-shrink: 0;
}
.tauthor div { display: flex; flex-direction: column; gap: 2px; }
.tauthor strong { font-size: 0.88rem; }
.tcard.featured-t .tauthor strong { color: white; }
.tauthor span { font-size: 0.75rem; color: var(--text-muted); }
.tcard.featured-t .tauthor span { color: rgba(255,255,255,0.5); }

/* ==========================================
   PRICING
========================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.pcard {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s;
}
.pcard:hover { border-color: var(--text); }
.pcard-pop {
  background: var(--text); color: var(--white);
  border-color: var(--text);
}
.pop-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.pname { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; color: var(--text-muted); }
.pcard-pop .pname { color: rgba(255,255,255,0.6); }
.pprice { font-size: 2.6rem; font-weight: 900; letter-spacing: -0.05em; margin-bottom: 20px; }
.pprice span { font-size: 1rem; font-weight: 500; opacity: 0.5; }
.pcard ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pcard li { font-size: 0.85rem; }
.pcard-pop li { color: rgba(255,255,255,0.85); }
.pcard li.off { opacity: 0.35; }

/* ==========================================
   FAQ
========================================== */
.faq-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.fi { border-bottom: 1px solid var(--border); }
.fq {
  width: 100%; background: none; border: none;
  padding: 20px 0; text-align: left;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.fq:hover { color: var(--text-muted); }
.fq span { font-size: 1.2rem; font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
.fa {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: all 0.3s ease;
}
.fa.open { max-height: 200px; padding-bottom: 20px; }

/* ==========================================
   CTA SECTION
========================================== */
.cta-section {
  background: var(--text); color: var(--white);
  padding: 120px 32px; text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.cta-h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.05; margin-bottom: 20px;
}
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.btn-black.btn-xl.cta-btn {
  background: var(--white); color: var(--text);
}
.cta-sub { margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* CTA button needs inverse style on dark bg */
.cta-section .btn-black {
  background: var(--white);
  color: var(--text);
}
.cta-section .btn-black:hover { opacity: 0.9; }

/* ==========================================
   FOOTER
========================================== */
.footer { background: var(--off-white); border-top: 1px solid var(--border); }
.footer-top {
  max-width: 1160px; margin: 0 auto; padding: 60px 32px;
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.footer-brand .logo { margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.fcol { display: flex; flex-direction: column; gap: 12px; }
.fcol strong { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.fcol a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.fcol a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1160px; margin: 0 auto; padding: 20px 32px;
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 8px;
}

/* ==========================================
   SCROLL ANIMATIONS
========================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================
   RESPONSIVE
========================================== */
/* ── Tablet (≤1000px) ── */
@media (max-width: 1000px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; gap: 40px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-p { text-align: center; }
  .hero-p, .hero-actions, .hero-trust { justify-content: center; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .hero-visual { order: -1; }
  .f1, .f2, .f3 { display: none; }
  .demo-transform { grid-template-columns: 1fr; }
  .demo-arrow { flex-direction: row; padding: 16px 0; justify-content: center; }
  .arrow-line { width: 40px; height: 2px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-card.large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { gap: 0; flex-wrap: wrap; }
  .stat-block { padding: 16px 24px; flex: 1 1 calc(50% - 16px); }
  .stat-divider { display: none; }
  .section { padding: 72px 0; }
  .demo-section { padding: 72px 24px; }
  .cta-section { padding: 80px 24px; }
}

/* ── Mobile (≤700px) ── */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 16px; }
  .hero { padding: 90px 0 60px; gap: 32px; padding-left: 16px; padding-right: 16px; }
  .hero-h1 { font-size: 2.6rem; }
  .hero-p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { flex-direction: column; gap: 8px; text-align: center; }
  .mock-phone { width: 200px; }
  .br-desktop { display: none; }
  .section-inner { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-h2 { font-size: 2rem; }
  .demo-section { padding: 56px 16px; }
  .demo-title { font-size: 2rem; }
  .demo-sub { font-size: 0.95rem; margin-bottom: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card.large { grid-column: span 1; }
  .feat-card { padding: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pcard { padding: 24px 20px; }
  .stats-section { padding: 40px 16px; }
  .stat-block { padding: 20px 16px; flex: 1 1 calc(50% - 16px); }
  .stat-n { font-size: 2.5rem; }
  .stats-inner { flex-wrap: wrap; gap: 0; }
  .testimonials { gap: 12px; }
  .tcard { padding: 24px; }
  .cta-section { padding: 64px 16px; }
  .cta-h2 { font-size: 2.2rem; }
  .footer-top { padding: 40px 16px; flex-direction: column; gap: 32px; }
  .footer-cols { gap: 24px; }
  .footer-bottom { padding: 16px; }
  .faq-inner { gap: 24px; }
  .fq { font-size: 0.88rem; padding: 16px 0; }
  .steps { max-width: 100%; }
  .step { gap: 16px; padding: 28px 0; }
  .step-num { width: 24px; font-size: 0.65rem; }
  .mobile-menu { padding: 16px; }
  .marquee-wrap { padding: 10px 0; }
}

/* ── Small phones (≤400px) ── */
@media (max-width: 400px) {
  .hero-h1 { font-size: 2.1rem; }
  .section-h2 { font-size: 1.7rem; }
  .cta-h2 { font-size: 1.8rem; }
  .stat-n { font-size: 2rem; }
  .stat-block { flex: 1 1 100%; }
  .mock-phone { width: 180px; }
  .pprice { font-size: 2rem; }
  .btn-black.btn-lg, .btn-black.btn-xl { padding: 14px 20px; font-size: 0.88rem; }
}