/* ═══════════════════════════════════════════════════════════
   Flodeskai — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:        #080B14;
  --bg-2:      #0D1221;
  --bg-3:      #111827;
  --card:      #111827;
  --card-2:    #151e30;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);

  --purple:    #8B5CF6;
  --violet:    #7C3AED;
  --pink:      #EC4899;
  --cyan:      #06B6D4;
  --gold:      #F59E0B;
  --green:     #10B981;

  --text:      #F1F5F9;
  --muted:     #94A3B8;
  --subtle:    #475569;

  --grad:        linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  --grad-2:      linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
  --grad-gold:   linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  --transition: .25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── CONTAINERS ── */
.container    { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { width: 100%; max-width: 760px;  margin: 0 auto; padding: 0 24px; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  color: #A78BFA;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

/* ── TYPOGRAPHY HELPERS ── */
.text-grad {
  background: var(--grad);
  -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;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 0 28px rgba(139,92,246,0.35);
}
.btn-primary:hover { opacity: .85; transform: translateY(-2px); box-shadow: 0 0 44px rgba(139,92,246,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: rgba(139,92,246,0.5); background: rgba(139,92,246,0.06); transform: translateY(-1px); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-primary-sm {
  background: var(--grad);
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-primary-sm:hover { opacity: .85; transform: translateY(-1px); }

.btn-ghost-sm {
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.btn-ghost-sm:hover { color: var(--text); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(8,11,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  color: var(--muted); font-size: 0.88rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8,11,20,0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a { font-size: 1.3rem; font-weight: 600; color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.glow-center {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.16) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.glow-right {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.10) 0%, transparent 65%);
  top: 10%; right: 0%;
}

.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 20%, black 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, black 80%);
}

.hero-inner { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.28);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 28px;
  font-size: 0.8rem; font-weight: 600; color: #A78BFA; letter-spacing: 0.5px;
}

.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #A78BFA;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.04;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }

/* Floating tags */
.hero-float-tags {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.float-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  animation: floatUp 3s ease-in-out infinite;
}
.float-tag-1 { animation-delay: 0s; }
.float-tag-2 { animation-delay: .8s; }
.float-tag-3 { animation-delay: 1.6s; }
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; gap: 0; width: 100%;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 36px; text-align: center; flex: 1;
}
.trust-num-row {
  display: flex; align-items: baseline; gap: 1px;
  white-space: nowrap;
}
.trust-num {
  font-size: 2rem; font-weight: 900; letter-spacing: -1px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.trust-label {
  font-size: 0.72rem; color: var(--subtle);
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}
.trust-divider {
  width: 1px; height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute;
  inset: 0; border-radius: var(--radius-lg);
  opacity: 0; transition: opacity .4s;
  background: var(--grad);
}
.feat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.feat-card:hover::after { opacity: 0.04; }

.feat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px; position: relative; z-index: 1;
}
.feat-purple { background: rgba(139,92,246,0.14); }
.feat-pink   { background: rgba(236,72,153,0.13); }
.feat-cyan   { background: rgba(6,182,212,0.12);  }
.feat-gold   { background: rgba(245,158,11,0.12); }

.feat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.feat-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.75; position: relative; z-index: 1; }

.feat-chip {
  display: inline-block; margin-top: 20px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.18);
  color: #A78BFA; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════════════ */
.product-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  margin-bottom: 100px;
}
.product-row:last-child { margin-bottom: 0; }
.product-row-reverse { direction: rtl; }
.product-row-reverse > * { direction: ltr; }

.product-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative; overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.visual-glow {
  position: absolute; width: 250px; height: 250px;
  border-radius: 50%; filter: blur(70px); opacity: .25;
  pointer-events: none;
}
.glow-p  { background: var(--purple); top: -60px; right: -60px; }
.glow-pk { background: var(--pink);   bottom: -60px; left: -60px; }
.glow-c  { background: var(--cyan);   top: -60px; left: -60px; }

/* Voice demo */
.voice-demo {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; width: 100%; position: relative; z-index: 1;
}
.voice-ring {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  animation: voicePulse 2.5s ease-out infinite;
  cursor: pointer; transition: transform var(--transition);
}
.voice-ring:hover { transform: scale(1.06); }
@keyframes voicePulse {
  0%   { box-shadow: 0 0 0 0   rgba(139,92,246,0.45); }
  60%  { box-shadow: 0 0 0 28px rgba(139,92,246,0); }
  100% { box-shadow: 0 0 0 0   rgba(139,92,246,0); }
}
.wave-bars {
  display: flex; align-items: center; gap: 4px; height: 44px;
}
.wave-bar {
  width: 4px; border-radius: 4px; background: var(--grad);
  animation: wave 1.3s ease-in-out infinite;
}
.wave-bar:nth-child(1){height:10px;animation-delay:0s}
.wave-bar:nth-child(2){height:24px;animation-delay:.1s}
.wave-bar:nth-child(3){height:36px;animation-delay:.2s}
.wave-bar:nth-child(4){height:18px;animation-delay:.3s}
.wave-bar:nth-child(5){height:30px;animation-delay:.4s}
.wave-bar:nth-child(6){height:14px;animation-delay:.5s}
.wave-bar:nth-child(7){height:38px;animation-delay:.6s}
.wave-bar:nth-child(8){height:22px;animation-delay:.7s}
.wave-bar:nth-child(9){height:12px;animation-delay:.8s}
@keyframes wave { 0%,100%{transform:scaleY(.35)} 50%{transform:scaleY(1)} }
.voice-caption {
  font-size: 0.85rem; color: var(--muted);
  text-align: center; line-height: 1.6;
}
.voice-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--green); font-weight: 600;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

/* Chat demo */
.chat-demo {
  width: 100%; max-width: 300px; position: relative; z-index: 1;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.chat-name  { font-size: 0.88rem; font-weight: 700; }
.chat-status { font-size: 0.72rem; color: var(--green); display: flex; align-items: center; gap: 5px; font-weight: 600; }
.chat-messages { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.bubble {
  padding: 10px 14px; border-radius: 14px;
  font-size: 0.8rem; line-height: 1.5; max-width: 90%;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.bubble.show { opacity: 1; transform: translateY(0); }
.bubble-ai  { background: rgba(139,92,246,0.14); border: 1px solid rgba(139,92,246,0.2); border-bottom-left-radius: 4px; }
.bubble-user { background: var(--grad); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }

/* Notification demo */
.notif-demo {
  display: flex; flex-direction: column; gap: 16px;
  width: 100%; max-width: 320px; position: relative; z-index: 1;
}
.notif-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform var(--transition), border-color var(--transition);
}
.notif-card:hover { transform: translateX(4px); border-color: var(--border-2); }
.notif-card-1 { border-left: 3px solid var(--cyan); }
.notif-card-2 { border-left: 3px solid var(--gold); }
.notif-icon { font-size: 1.3rem; flex-shrink: 0; }
.notif-meta { font-size: 0.7rem; color: var(--subtle); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.notif-body { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* Product text */
.product-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 16px; margin-top: 12px;
}
.product-text > p {
  color: var(--muted); font-size: 0.98rem; line-height: 1.8; margin-bottom: 24px;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--muted);
}
.check-list li::before {
  content: '✓'; color: #A78BFA; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.steps-track { position: relative; margin-bottom: 60px; }
.steps-line {
  position: absolute; top: 36px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px; background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: .25;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.step-card {
  text-align: center; padding: 28px 20px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-4px); border-color: rgba(139,92,246,0.35);
}
.step-num {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.7rem; font-weight: 800;
  color: var(--subtle); letter-spacing: 1px;
}
.step-icon {
  font-size: 2rem; margin-bottom: 16px;
  display: block;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* Integrations */
.integrations { text-align: center; }
.integrations-label {
  font-size: 0.8rem; color: var(--subtle); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.integrations-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.int-chip {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
  transition: all var(--transition);
}
.int-chip:hover {
  border-color: rgba(139,92,246,0.35);
  background: rgba(139,92,246,0.06);
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   FOUNDING OFFER BOX
   ═══════════════════════════════════════════════════════════ */
.offer-box {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: var(--card-2);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(139,92,246,0.1);
}
.offer-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, rgba(236,72,153,0.04) 100%);
  pointer-events: none;
}
.offer-box::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8B5CF6, #EC4899);
}
.offer-left { flex: 1; min-width: 260px; }
.offer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25);
  color: #FCD34D; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.offer-headline {
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  margin-bottom: 6px; line-height: 1.4;
}
.offer-highlight {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.offer-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }

.spots-track {
  width: 100%; max-width: 280px; height: 6px;
  background: rgba(255,255,255,0.08); border-radius: 50px;
  overflow: hidden; margin-bottom: 8px;
}
.spots-fill {
  height: 100%; border-radius: 50px;
  background: var(--grad);
  transition: width 1s ease;
}
.spots-text { font-size: 0.8rem; color: var(--muted); }
.spots-taken { color: var(--text); font-weight: 700; }
.spots-left { color: #34D399; font-weight: 600; }

.offer-right {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
}
.offer-timer-label {
  font-size: 0.72rem; color: var(--subtle); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.offer-timer {
  display: flex; align-items: center; gap: 4px;
}
.timer-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; min-width: 52px;
}
.timer-num {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -1px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.timer-unit { font-size: 0.62rem; color: var(--subtle); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.timer-sep { font-size: 1.3rem; font-weight: 800; color: var(--subtle); margin-bottom: 14px; }

.offer-cta {
  background: var(--grad); color: #fff;
  padding: 10px 24px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
}
.offer-cta:hover { opacity: .85; transform: translateY(-1px); }

.pricing-toggle {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-bottom: 48px;
}
.toggle-label { font-size: 0.9rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: color var(--transition); }
.toggle-label.active { color: var(--text); }
.toggle-switch {
  width: 48px; height: 26px; border-radius: 50px;
  background: var(--border-2); position: relative; cursor: pointer;
  transition: background var(--transition);
}
.toggle-switch.annual { background: var(--grad); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--text); transition: transform var(--transition);
}
.toggle-switch.annual .toggle-thumb { transform: translateX(22px); }
.save-badge {
  background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3);
  color: #34D399; font-size: 0.68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 50px; margin-left: 4px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; align-items: start;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-popular {
  border-color: var(--purple);
  background: var(--card-2);
  box-shadow: 0 0 40px rgba(139,92,246,0.14);
  transform: translateY(-8px);
}
.price-popular:hover { transform: translateY(-12px); }

.popular-pill {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: 0.68rem; font-weight: 800;
  padding: 4px 18px; border-radius: 50px; letter-spacing: 1.5px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--subtle); margin-bottom: 12px;
}
.price-row { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 6px; }
.price-amount {
  font-size: 3.2rem; font-weight: 900; letter-spacing: -2px; line-height: 1;
  transition: all .4s ease;
}
.price-per { font-size: 1rem; color: var(--muted); margin-bottom: 6px; }
.price-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }

.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
}
.price-features li::before { content: '✓'; color: #A78BFA; font-weight: 800; flex-shrink: 0; }

.btn-plan-outline, .btn-plan-filled {
  display: block; width: 100%; padding: 14px;
  border-radius: 10px; font-size: 0.95rem; font-weight: 700;
  text-align: center; transition: all var(--transition);
}
.btn-plan-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-plan-outline:hover { border-color: var(--purple); background: rgba(139,92,246,0.08); }
.btn-plan-filled {
  background: var(--grad); color: #fff;
  box-shadow: 0 0 24px rgba(139,92,246,0.35);
}
.btn-plan-filled:hover { opacity: .85; transform: translateY(-1px); box-shadow: 0 0 36px rgba(139,92,246,0.5); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 60px;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  transition: transform var(--transition), border-color var(--transition);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.testi-featured {
  border-color: rgba(139,92,246,0.35);
  background: var(--card-2);
  box-shadow: 0 0 32px rgba(139,92,246,0.1);
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card > p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
}
.testi-name { font-size: 0.9rem; font-weight: 700; }
.testi-role { font-size: 0.78rem; color: var(--subtle); }

/* Results banner */
.results-banner {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.result-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.result-item:last-child { border-right: none; }
.result-item:hover { background: rgba(139,92,246,0.05); }
.result-num {
  font-size: 1.8rem; font-weight: 900; letter-spacing: -1px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.result-label { font-size: 0.8rem; color: var(--subtle); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item.open { border-color: rgba(139,92,246,0.35); }

.faq-q {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  background: none; border: none; cursor: pointer; text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: #A78BFA; }
.faq-arrow { font-size: 1.1rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 120px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden; text-align: center;
}
.cta-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; letter-spacing: -1.5px;
  margin-bottom: 18px; line-height: 1.1;
}
.cta-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 40px; }

.cta-btns {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 24px;
}

.cta-note { font-size: 0.8rem; color: var(--subtle); }

.cta-success {
  display: none; margin-top: 24px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px; padding: 14px 20px;
  font-size: 0.9rem; font-weight: 600; color: #34D399;
}
.cta-success.show { display: block; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 24px 36px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-size: 1.4rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.footer-brand > p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--muted);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--border-2); color: var(--text); background: var(--card-2); }

.footer-links-group h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--subtle); margin-bottom: 18px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a {
  font-size: 0.88rem; color: var(--muted);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.footer-bottom > p { font-size: 0.8rem; color: var(--subtle); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--subtle); transition: color var(--transition); }
.footer-legal a:hover { color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
/* ── TABLET (1024px) ── */
@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2,1fr); }
  .pricing-grid    { grid-template-columns: repeat(2,1fr); }
  .results-banner  { grid-template-columns: repeat(2,1fr); }
  .footer-top      { grid-template-columns: 1fr 1fr; }
  .steps-grid      { grid-template-columns: repeat(2,1fr); }
  .steps-line      { display: none; }
}

/* ── MOBILE / TABLET (768px) ── */
@media (max-width: 768px) {
  /* Fix black side overflow */
  html, body { overflow-x: hidden; max-width: 100vw; }
  * { max-width: 100%; }

  .section { padding: 60px 0; }
  .container, .container-sm { padding: 0 16px; }

  /* NAV */
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 14px 16px; }

  /* HERO */
  .hero { padding: 90px 16px 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); letter-spacing: -1px; }
  .hero-sub   { font-size: 0.95rem; }
  .hero-btns  { gap: 10px; }
  .hero-btns .btn-ghost { display: none; }
  .hero-float-tags { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .hero-float-tags .float-tag-3 { display: inline-flex; }
  .float-tag { font-size: 0.72rem; padding: 6px 10px; }
  .glow-center { width: 300px; height: 300px; }
  .glow-right  { display: none; }

  /* TRUST BAR */
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex-wrap: wrap;
  }
  .trust-item  { padding: 16px 12px; width: 100%; }
  .trust-num   { font-size: 1.6rem; }
  .trust-label { font-size: 0.68rem; }
  .trust-divider { display: none; }

  /* FEATURES — 2 per row on mobile */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feat-card { padding: 20px 14px; }
  .feat-card h3 { font-size: 0.9rem; }
  .feat-card p  { font-size: 0.78rem; }
  .feat-icon { width: 42px; height: 42px; font-size: 1.1rem; margin-bottom: 14px; }

  /* PRODUCTS */
  .product-row         { grid-template-columns: 1fr; gap: 28px; }
  .product-row-reverse { direction: ltr; }
  .product-visual      { padding: 28px 20px; min-height: 240px; }
  .product-text h2     { font-size: 1.5rem; }

  /* STEPS */
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .step-card  { padding: 20px 14px; }

  /* OFFER BOX TIMER */
  #offer-timer-row { gap: 3px !important; }
  #offer-timer-row > div {
    min-width: 52px !important;
    padding: 8px 8px !important;
  }
  #offer-timer-row span[id] {
    font-size: 1.4rem !important;
  }
  #offer-timer-row > span {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  /* PRICING */
  .pricing-grid  { grid-template-columns: 1fr; }
  .price-popular { transform: none; }
  .price-card    { padding: 28px 22px; }

  /* TESTIMONIALS */
  .testi-grid     { grid-template-columns: 1fr; }
  .results-banner { grid-template-columns: repeat(2, 1fr); }
  .result-item    { padding: 20px 12px; }
  .result-num     { font-size: 1.4rem; }

  /* FOOTER */
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }

  /* SECTION HEADERS */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: -0.5px; }
  .section-sub   { font-size: 0.9rem; }
}

/* ── SMALL MOBILE (480px) ── */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feat-card     { padding: 16px 12px; }
  .feat-card p   { font-size: 0.75rem; }

  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: span 2; }

  .trust-inner { grid-template-columns: repeat(2, 1fr); }

  .hero-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }

  /* Timer smaller */
  #offer-timer-row > div {
    min-width: 44px !important;
    padding: 6px 6px !important;
  }
  #offer-timer-row span[id] { font-size: 1.2rem !important; }
}

/* ── iPAD PORTRAIT (768px–1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
  .price-popular { transform: none; }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .product-row   { gap: 36px; }
  .hero-title    { font-size: clamp(2.2rem, 5vw, 3.5rem); }
}
