
/* ═══════════════════════════════════════════════════════════
   LEADR — Design Tokens
   ═══════════════════════════════════════════════════════════ */
:root {
  /* ── Palette ── */
  --bg: #08080D;
  --bg-elevated: #0F0F18;
  --bg-card: rgba(255,255,255,0.025);
  --bg-card-hover: rgba(255,255,255,0.05);
  --text: #FFFFFF;
  --text-secondary: #8B8BA3;
  --text-tertiary: #55556A;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --accent: #6C5CE7;
  --accent-bright: #A78BFA;
  --accent-glow: rgba(108, 92, 231, 0.15);
  --accent-glow-strong: rgba(108, 92, 231, 0.35);
  --green: #22D3EE;
  --green-muted: rgba(34, 211, 238, 0.12);
  --lime: #BEF264;
  --lime-muted: rgba(190, 242, 100, 0.1);

  /* ── Radius ── */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-pill: 100px;

  /* ── Typography ── */
  --font-display: 'League Spartan', sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale — modular 1.25 */
  --text-xs: 12px;    /* labels, badges */
  --text-sm: 13px;    /* captions, meta */
  --text-base: 15px;  /* body copy */
  --text-md: 16px;    /* slightly larger body */
  --text-lg: 18px;    /* lead paragraphs */

  /* Display scale — League Spartan */
  --display-sm: 18px;   /* card h3 */
  --display-md: clamp(24px, 3vw, 32px);  /* sub-headings */
  --display-lg: clamp(36px, 4.5vw, 56px); /* section h2 */
  --display-xl: clamp(52px, 6vw, 80px);   /* hero h1 */

  /* ── Motion ── */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══ Reset ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ═══ Base type ═══ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.05;
  font-weight: 800;
}

p { max-width: 65ch; }

strong { font-weight: 700; color: var(--text); }

::selection { background: var(--accent); color: white; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ═══ Grain ═══ */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS — All use dark text
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: #08080D !important;
}
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--lime);
  color: #08080D !important;
  box-shadow: 0 0 0 1px rgba(190,242,100,0.2), 0 8px 32px rgba(190,242,100,0.12);
  transition: all 0.3s var(--ease);
}
.btn-primary:hover,
.btn-primary:focus,
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited {
  background: #d4f97a;
  color: #08080D !important;
  box-shadow: 0 0 0 1px rgba(190,242,100,0.4), 0 16px 48px rgba(190,242,100,0.18);
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-primary:active,
a.btn-primary:active {
  transform: scale(0.95) translateY(1px);
  box-shadow: 0 0 0 1px rgba(190,242,100,0.3), 0 4px 12px rgba(190,242,100,0.1);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary) !important;
  border: 1px solid var(--border);
}
.btn-ghost:hover,
a.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text) !important;
  border-color: var(--border-hover);
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
nav.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 13, 0.8);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
  border-radius: 11px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 20px; color: white;
  box-shadow: 0 0 24px var(--accent-glow);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-bright);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px !important;
  background: var(--text) !important;
  color: #08080D !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: var(--text-sm) !important;
  transition: all 0.25s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--lime) !important;
  color: #08080D !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(190, 242, 100, 0.2);
}
.nav-cta::after { display: none !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

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

/* Atmospheric BG */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; }
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(190, 242, 100, 0.08) 0%, transparent 70%);
  bottom: -10%; right: -5%;
  animation: orbFloat 25s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  top: 30%; left: 45%;
  animation: orbFloat 18s ease-in-out infinite 5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
}

.hero-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 56px; }
}

/* ── Hero text ── */
.hero-content { text-align: left; }

.hero-overline {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero-overline-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(190, 242, 100, 0.5);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(190, 242, 100, 0.5); }
  50% { box-shadow: 0 0 20px rgba(190, 242, 100, 0.8), 0 0 40px rgba(190, 242, 100, 0.2); }
}
.hero-overline-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero h1 {
  font-size: var(--display-xl);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
  text-align: left;
  opacity: 0; animation: fadeUp 0.8s 0.35s var(--ease) forwards;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lime) 0%, #4ADE80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  text-align: left;
  opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 52px;
  opacity: 0; animation: fadeUp 0.8s 0.65s var(--ease) forwards;
}

/* ── Hero stats ── */
.hero-metrics {
  display: flex; gap: 40px;
  opacity: 0; animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-size: var(--display-md);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--text-secondary);
}
.hero-metric-val strong {
  font-weight: 600;
  color: var(--text);
}
.hero-metric-val span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--lime);
  margin-left: 2px;
  letter-spacing: 0;
}
.hero-metric-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .hero-metrics { gap: 28px; flex-wrap: wrap; }
  .hero { padding: 130px 0 60px; }
}

/* ── Phone ── */
.phone-col {
  display: flex; justify-content: center;
  opacity: 0; animation: phoneIn 1s 0.6s var(--ease) forwards;
}
@keyframes phoneIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.phone { position: relative; width: 340px; }
.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none; z-index: 0;
}
.phone-body {
  position: relative; z-index: 1;
  background: var(--bg-elevated);
  border-radius: 40px;
  border: 1.5px solid var(--border-hover);
  padding: 14px;
  box-shadow: 0 60px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03), inset 0 1px 0 rgba(255,255,255,0.04);
}
.phone-notch { width: 100px; height: 5px; background: rgba(255,255,255,0.08); border-radius: 100px; margin: 0 auto 14px; }
.phone-screen {
  background: var(--bg); border-radius: 28px;
  padding: 24px 18px; min-height: 470px;
  border: 1px solid rgba(255,255,255,0.03);
}
.ph-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.ph-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
  border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 20px; color: white;
  box-shadow: 0 4px 12px var(--accent-glow);
}
.ph-name {
  font-family: var(--font-body);
  font-weight: 700; font-size: var(--text-base); color: var(--text);
}
.ph-status {
  display: flex; align-items: center; gap: 6px;
  font-size: var(--text-xs); color: var(--green); font-weight: 600;
  margin-top: 2px;
}
.ph-status-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px rgba(34, 211, 238, 0.5); }

.chat { display: flex; flex-direction: column; gap: 14px; }
.bubble {
  max-width: 82%; padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 400;
  line-height: 1.5; border-radius: 20px;
  opacity: 0; transform: translateY(12px);
  animation: bubbleIn 0.5s var(--ease) forwards;
}
.bubble:nth-child(1) { animation-delay: 0.9s; }
.bubble:nth-child(2) { animation-delay: 2s; }
.bubble:nth-child(3) { animation-delay: 3.2s; }
.bubble:nth-child(4) { animation-delay: 4.2s; }
.bubble:nth-child(5) { animation-delay: 5.4s; }
.bubble:nth-child(6) { animation-delay: 6.2s; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }

.bubble-ai {
  align-self: flex-start; color: var(--text);
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-bottom-left-radius: 6px;
}
.bubble-user {
  align-self: flex-end; color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
  border-bottom-right-radius: 6px;
}
.bubble-time { font-size: 11px; color: var(--text-tertiary); margin-top: 4px; }
.bubble-user .bubble-time { color: rgba(255,255,255,0.5); text-align: right; }

.typing {
  align-self: flex-start; display: inline-flex; gap: 5px;
  padding: 14px 20px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 20px; border-bottom-left-radius: 6px;
  opacity: 0; animation: bubbleIn 0.4s 2.6s var(--ease) forwards;
}
.typing i { width: 7px; height: 7px; background: var(--text-tertiary); border-radius: 50%; display: block; animation: bounce 1.4s infinite; }
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

.phone-notif {
  position: absolute; bottom: 40px; left: -60px; z-index: 3;
  background: var(--bg-elevated); border: 1px solid var(--border-hover);
  border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0; animation: notifIn 0.6s 7s var(--ease) forwards;
}
@keyframes notifIn { from { opacity: 0; transform: translateX(-20px) scale(0.9); } to { opacity: 1; transform: translateX(0) scale(1); } }
.notif-icon { width: 44px; height: 44px; background: var(--lime-muted); border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.notif-icon svg { width: 22px; height: 22px; stroke: var(--lime); fill: none; stroke-width: 2; }
.notif-label { font-size: var(--text-xs); color: var(--text-tertiary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.notif-val {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); margin-top: 2px;
}
@media (max-width: 1024px) { .phone-notif { left: -20px; bottom: 20px; } }
@media (max-width: 768px) {
  .phone-notif { position: relative; left: auto; bottom: auto; margin-top: 16px; justify-content: center; }
  .phone { width: 300px; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════ */
.trust { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}
.trust-icon {
  width: 42px; height: 42px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xs); display: grid; place-items: center;
  transition: all 0.3s;
}
.trust-item:hover .trust-icon { border-color: var(--border-hover); background: var(--bg-card-hover); }
.trust-icon svg { width: 20px; height: 20px; stroke: var(--text-tertiary); fill: none; stroke-width: 1.5; }
@media (max-width: 768px) { .trust-inner { gap: 24px 40px; } }

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
  text-align: left !important;
}
.section-label::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--accent); border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display) !important;
  font-size: var(--display-lg) !important;
  font-weight: 800 !important;
  line-height: 1.0 !important;
  letter-spacing: -2px !important;
  color: var(--text) !important;
  margin-bottom: 20px !important;
  text-align: left !important;
}

.section-desc {
  font-family: var(--font-body) !important;
  font-size: var(--text-lg) !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  line-height: 1.7 !important;
  max-width: 520px !important;
  text-align: left !important;
  margin-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   WHY LEADR
   ═══════════════════════════════════════════════════════════ */
/* ── Why Leadr — bento grid ── */
.why { padding: 120px 0; }

.why .section-label,
.why .section-heading,
.why .section-desc {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px !important;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
  position: relative;
  text-align: left !important;
}
.why-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Hero card — full width */
.why-card-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(108,92,231,0.06) 0%, rgba(190,242,100,0.03) 100%);
  border-color: rgba(108,92,231,0.12);
  padding: 48px 40px !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 48px;
}
.why-card-hero:hover {
  border-color: rgba(108,92,231,0.2);
  background: linear-gradient(135deg, rgba(108,92,231,0.08) 0%, rgba(190,242,100,0.04) 100%);
}

.why-card-badge {
  grid-column: 1 / -1;
  display: inline-flex;
  align-self: flex-start;
  justify-self: flex-start;
  padding: 5px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(108,92,231,0.15);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-bright);
  margin-bottom: 24px !important;
}

.why-card-hero h3 {
  grid-column: 1;
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3vw, 32px) !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
  color: var(--text) !important;
  line-height: 1.1 !important;
  text-align: left !important;
  margin: 0 !important;
}

.why-card-hero > p {
  grid-column: 1;
  font-family: var(--font-body) !important;
  font-size: var(--text-base) !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  line-height: 1.75 !important;
  text-align: left !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
}

.why-stats {
  grid-column: 2;
  grid-row: 2 / 4;
  display: flex;
  gap: 40px;
  align-self: center;
  justify-self: start;
  padding: 32px 0 32px 48px;
  border-left: 1px solid var(--border);
}
.why-stat-val {
  font-family: var(--font-display) !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
  color: var(--lime) !important;
  line-height: 1 !important;
  text-align: left !important;
}
.why-stat-label {
  font-family: var(--font-body) !important;
  font-size: var(--text-xs) !important;
  font-weight: 500 !important;
  color: var(--text-tertiary) !important;
  margin-top: 6px !important;
  text-align: left !important;
}

/* Small cards */
.why-card:not(.why-card-hero) {
  display: flex;
  flex-direction: column;
  padding: 32px 28px !important;
}
.why-card:not(.why-card-hero) .why-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(108,92,231,0.1);
  border-radius: 13px;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 20px !important;
  flex-shrink: 0;
}
.why-card:not(.why-card-hero) h3 {
  font-family: var(--font-display) !important;
  font-size: var(--display-sm) !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  color: var(--text) !important;
  margin-bottom: 8px !important;
  text-align: left !important;
  line-height: 1.2 !important;
}
.why-card:not(.why-card-hero) p {
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  line-height: 1.7 !important;
  text-align: left !important;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .why-card-hero {
    grid-template-columns: 1fr;
    padding: 36px 28px !important;
  }
  .why-stats {
    grid-column: 1;
    grid-row: auto;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 24px 0 0 0;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-stats { gap: 24px; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features { padding: 120px 0; position: relative; }
.features::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, var(--accent-glow) 0%, transparent 100%);
  pointer-events: none;
}
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
@media (max-width: 768px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
  text-align: left !important;
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-bright) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.feat-card:hover {
  background: var(--bg-card-hover); border-color: var(--border-hover);
  transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 52px; height: 52px;
  background: var(--accent-glow); border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 14px; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 24px;
}
.feat-card h3 {
  font-family: var(--font-display) !important;
  font-size: var(--display-sm) !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  color: var(--text) !important;
  margin-bottom: 10px !important;
  text-align: left !important;
}
.feat-card p {
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  line-height: 1.7 !important;
  text-align: left !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how { padding: 120px 0; }
.how-header { text-align: left; }

.steps-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px; position: relative;
}
.steps-track::before {
  content: ''; position: absolute;
  top: 32px; left: 64px; right: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--lime) 100%);
  opacity: 0.15;
}
@media (max-width: 768px) {
  .steps-track { grid-template-columns: 1fr; }
  .steps-track::before { display: none; }
}

.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--bg); border: 1.5px solid var(--border-hover);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--accent-bright);
  margin: 0 auto 20px; position: relative; z-index: 2;
  transition: all 0.3s;
}
.step:hover .step-num { border-color: var(--accent); box-shadow: 0 0 24px var(--accent-glow); }
.step h4 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text);
  margin-bottom: 8px;
}
.step p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 240px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   BIG NUMBERS
   ═══════════════════════════════════════════════════════════ */
.numbers { padding: 80px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 768px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }

.num-card {
  text-align: center; padding: 40px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.3s;
}
.num-card:hover { border-color: var(--border-hover); }
.num-val {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 10px;
}
.num-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing { padding: 120px 0; position: relative; }
.pricing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 30% at 50% 100%, var(--lime-muted) 0%, transparent 100%);
  pointer-events: none;
}
.pricing-header { text-align: left; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
  position: relative; z-index: 2;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

.p-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  position: relative; transition: all 0.4s var(--ease);
}
.p-card:hover { border-color: var(--border-hover); }
.p-card.pop {
  border-color: var(--accent);
  background: rgba(108, 92, 231, 0.04);
  box-shadow: 0 0 60px var(--accent-glow);
}
.p-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 5px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.p-tier {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.p-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.p-amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text);
}
.p-per {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-tertiary);
}
.p-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}
.p-features {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
}
.p-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}
.p-features li::before {
  content: '✓'; color: var(--lime);
  font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

.p-btn {
  display: block; width: 100%; padding: 15px;
  text-align: center; border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700; font-size: var(--text-sm);
  text-decoration: none !important; border: none; cursor: pointer;
  transition: all 0.25s var(--ease);
  color: #08080D !important;
}
.p-btn-outline {
  background: var(--text);
  color: #08080D !important;
  border: 1px solid transparent;
}
.p-btn-outline:hover,
a.p-btn-outline:hover { background: var(--lime); color: #08080D !important; transform: translateY(-1px); }
.p-btn-fill {
  background: var(--lime);
  color: #08080D !important;
}
.p-btn-fill:hover,
a.p-btn-fill:hover { filter: brightness(1.1); color: #08080D !important; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq { padding: 120px 0; }
.faq-header { text-align: left; }

.faq-list {
  max-width: 720px; margin-top: 48px;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  width: 100%; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text);
  background: none; border: none; text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-card); }
.faq-chevron {
  width: 18px; height: 18px;
  stroke: var(--text-tertiary); fill: none; stroke-width: 2;
  transition: transform 0.3s var(--ease); flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }
.faq-a p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta { padding: 60px 0 120px; }
.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #4338CA 40%, #7C3AED 100%);
  border-radius: 28px; padding: 80px 56px;
  text-align: center; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  top: -50%; right: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}
.cta-box::after {
  content: ''; position: absolute;
  bottom: -40%; left: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(190, 242, 100, 0.08), transparent 50%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: var(--display-lg);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.cta-box p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative; z-index: 2;
}
.cta-box .btn {
  position: relative; z-index: 2;
  background: white;
  color: #08080D !important;
  font-weight: 800;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.cta-box .btn:hover,
.cta-box a.btn:hover {
  background: var(--lime);
  color: #08080D !important;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer { padding: 40px 0 32px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 80px var(--accent-glow);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  color: var(--text-tertiary);
  cursor: pointer; padding: 8px;
  border-radius: 10px;
  transition: all 0.2s;
}
.modal-close:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.modal-header { text-align: center; margin-bottom: 32px; }
.modal-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
  border-radius: 16px;
  display: inline-grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 24px; color: white;
  box-shadow: 0 8px 24px var(--accent-glow);
  margin-bottom: 20px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: 100%;
}

.modal-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
}
.form-group input {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  outline: none;
  transition: all 0.25s var(--ease);
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-tertiary); font-weight: 400; }
.form-group input:focus {
  border-color: var(--accent);
  background: rgba(108, 92, 231, 0.04);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-submit {
  margin-top: 8px;
  padding: 16px;
  background: var(--lime);
  color: #08080D !important;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 800;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover {
  background: #d4f97a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(190,242,100,0.2);
}
.form-submit:active {
  transform: scale(0.95) translateY(1px);
  transition: transform 0.1s ease;
}
.form-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}
.form-submit.loading svg {
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal-success { text-align: center; padding: 20px 0; }
.success-check {
  width: 64px; height: 64px;
  background: var(--lime-muted);
  color: var(--lime);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 28px; font-weight: 900;
  margin-bottom: 20px;
  animation: popIn 0.4s var(--ease);
}
@keyframes popIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.modal-success h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-success p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 100%;
}

.modal-footer-text {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: 24px;
  letter-spacing: 0.3px;
}
