/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #0a0a0f;
  --bg-2:         #0d0d14;
  --bg-card:      rgba(255,255,255,0.04);
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(124,58,237,0.5);
  --accent:       #7c3aed;
  --accent-2:     #6366f1;
  --accent-light: #a78bfa;
  --white:        #ffffff;
  --gray-1:       #e2e8f0;
  --gray-2:       #94a3b8;
  --gray-3:       #475569;
  --gray-4:       #1e293b;
  --green:        #10b981;
  --red:          #ef4444;
  --font-main:    'Inter', sans-serif;
  --font-alt:     'Space Grotesk', sans-serif;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-glow:  0 0 60px rgba(124,58,237,0.25);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: rgba(124,58,237,0.4); color: #fff; }

/* =====================================================
   UTILITY
===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-alt);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-2);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.grad-text {
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #818cf8 100%);
  -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;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.6);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(124,58,237,0.6);
  background: rgba(124,58,237,0.08);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* =====================================================
   GLASS CARD
===================================================== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,58,237,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.15), var(--shadow-card);
}
.glass-card:hover::before { opacity: 1; }

/* =====================================================
   GLOW BLOB
===================================================== */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* =====================================================
   SCROLL ANIMATIONS
===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(124,58,237,0.45);
}
.logo-text {
  font-family: var(--font-alt);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a.mobile-link {
  color: var(--gray-1);
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  width: 280px;
  text-align: center;
}
.mobile-menu a.mobile-link:hover {
  color: var(--white);
  background: rgba(124,58,237,0.15);
}
.mobile-menu .btn { margin-top: 16px; width: 280px; }

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: rgba(124,58,237,0.18);
  top: -250px; left: 50%;
  transform: translateX(-50%);
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(99,102,241,0.12);
  bottom: -100px; right: -150px;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero h1 {
  font-family: var(--font-alt);
  font-size: clamp(38px, 6.5vw, 74px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-2);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Mockup */
.hero-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.mockup-frame {
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(10,10,20,0.8) 100%);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: var(--radius-xl);
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.1),
    0 0 80px rgba(124,58,237,0.25),
    0 40px 100px rgba(0,0,0,0.7);
  transform: perspective(1200px) rotateX(5deg);
  transition: transform 0.6s ease;
}
.mockup-frame:hover {
  transform: perspective(1200px) rotateX(2deg);
}
.mockup-inner {
  background: #0c0c18;
  border-radius: calc(var(--radius-xl) - 3px);
  overflow: hidden;
  min-height: 380px;
}

/* Fake UI */
.fake-ui { width: 100%; padding: 20px; }
.fake-topbar {
  display: flex;
  gap: 7px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.fake-dot { width: 10px; height: 10px; border-radius: 50%; }
.fake-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.fake-col-header {
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fake-card-item {
  height: 56px;
  border-radius: 8px;
  margin-top: 8px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fake-card-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  width: 100%;
}
.fake-card-line.short  { width: 65%; }
.fake-card-line.shorter{ width: 42%; }

/* =====================================================
   SOCIAL PROOF
===================================================== */
.social-proof {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124,58,237,0.04) 0%, transparent 100%);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.stat-item { text-align: center; padding: 20px 12px; }
.stat-number {
  font-family: var(--font-alt);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--gray-2); font-weight: 500; }

.professions-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.profession-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-2);
  transition: var(--transition);
  cursor: default;
}
.profession-tag:hover {
  border-color: rgba(124,58,237,0.45);
  color: var(--white);
  background: rgba(124,58,237,0.09);
  transform: translateY(-2px);
}

/* =====================================================
   FEATURES
===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card { padding: 32px 28px; }
.feature-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(124,58,237,0.1);
  filter: blur(32px);
  top: -20px; right: -20px;
  pointer-events: none;
  transition: var(--transition);
}
.feature-card:hover .feature-glow {
  width: 180px; height: 180px;
  background: rgba(124,58,237,0.18);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(124,58,237,0.4));
}
.feature-title {
  font-family: var(--font-alt);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.72;
}

/* =====================================================
   GALLERY / SLIDER
===================================================== */
.slider-wrapper { position: relative; margin-top: 56px; }
.slider-track-outer {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide { min-width: 100%; padding: 0 4px; }
.slide-inner {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 50px rgba(124,58,237,0.08);
}
.slide-image {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d1e 0%, #130a20 50%, #0a0d1a 100%);
}
.slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(124,58,237,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.slide-image-icon {
  font-size: 56px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(124,58,237,0.5));
}
.slide-image-text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--gray-3);
  font-style: italic;
}
.slide-caption {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.slide-caption-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.slide-caption-text strong {
  color: var(--white);
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
.slide-caption-text span {
  font-size: 13px;
  color: var(--gray-2);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.slider-btn:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.5);
  transform: scale(1.08);
}
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--gray-3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { width: 24px; background: var(--accent); }

/* =====================================================
   VIDEO DEMO
===================================================== */
.video-section { position: relative; overflow: hidden; }
.video-wrapper {
  position: relative;
  max-width: 820px;
  margin: 56px auto 0;
}
.video-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.28) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

.video-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.35);
  box-shadow:
    0 0 60px rgba(124,58,237,0.22),
    0 40px 80px rgba(0,0,0,0.55);
  cursor: pointer;
}
.video-placeholder {
  min-height: 440px;
  background: linear-gradient(135deg, #0d0d22 0%, #1a0a30 40%, #0a0e20 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  position: relative;
  transition: var(--transition);
}
.video-placeholder:hover { filter: brightness(1.12); }

.play-button {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 40px rgba(124,58,237,0.65);
  transition: var(--transition);
  position: relative;
  color: #fff;
  border: none;
  cursor: pointer;
}
.play-button::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(124,58,237,0.35);
  animation: pulse-ring 2.2s ease-in-out infinite;
}
.play-button::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.15);
  animation: pulse-ring 2.2s ease-in-out infinite 0.4s;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.95); opacity: 0.6; }
  50%  { transform: scale(1.12); opacity: 0.1; }
  100% { transform: scale(0.95); opacity: 0.6; }
}
.play-button:hover {
  transform: scale(1.12);
  box-shadow: 0 0 64px rgba(124,58,237,0.85);
}
.video-label {
  font-size: 14px;
  color: var(--gray-2);
  letter-spacing: 0.02em;
}

/* =====================================================
   FOR WHOM
===================================================== */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.forwhom-card {
  padding: 32px 24px;
  text-align: center;
  cursor: default;
}
.forwhom-emoji {
  font-size: 44px;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(124,58,237,0.35));
  transition: var(--transition);
}
.forwhom-card:hover .forwhom-emoji {
  transform: scale(1.15) translateY(-4px);
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.6));
}
.forwhom-title {
  font-family: var(--font-alt);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.forwhom-pain {
  font-size: 13px;
  color: var(--gray-2);
  line-height: 1.65;
}

/* =====================================================
   COMPARISON
===================================================== */
.comparison-section {
  background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.04) 50%, transparent 100%);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 56px;
  align-items: stretch;
}
.comparison-col {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
}
.comparison-before {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
}
.comparison-after {
  background: rgba(16,185,129,0.05);
  border: 1px solid rgba(16,185,129,0.2);
  box-shadow: 0 0 40px rgba(16,185,129,0.08);
}
.comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.comp-icon { font-size: 28px; }
.comparison-header h3 {
  font-family: var(--font-alt);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.comparison-before .comparison-list li { color: var(--gray-2); }
.comparison-after  .comparison-list li { color: var(--gray-1); }

.comp-x {
  color: #ef4444;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.comp-check {
  color: #10b981;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.comp-vs {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-3);
  flex-shrink: 0;
}

/* =====================================================
   PRICING
===================================================== */
.pricing-wrapper {
  max-width: 560px;
  margin: 56px auto 0;
}
.pricing-card {
  padding: 48px 44px;
  text-align: center;
  border-color: rgba(124,58,237,0.3);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.1),
    0 0 80px rgba(124,58,237,0.18),
    var(--shadow-card);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.25),
    0 0 100px rgba(124,58,237,0.28),
    0 24px 60px rgba(0,0,0,0.5);
}
.pricing-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  filter: blur(60px);
  top: -80px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(99,102,241,0.2) 100%);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.pricing-prices {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.price-old {
  font-size: 18px;
  color: var(--gray-3);
  text-decoration: line-through;
  margin-bottom: 6px;
}
.price-new {
  font-family: var(--font-alt);
  font-size: clamp(48px, 8vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.price-label {
  font-size: 14px;
  color: var(--gray-2);
  font-weight: 500;
}

/* Timer */
.timer-block {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.timer-label {
  font-size: 12px;
  color: var(--gray-2);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.timer-unit {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.timer-unit span:first-child {
  font-family: var(--font-alt);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  min-width: 2ch;
  text-align: center;
}
.timer-unit-label {
  font-size: 11px;
  color: var(--gray-3);
  font-weight: 500;
}
.timer-sep {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-3);
  margin: 0 4px;
  padding-bottom: 4px;
}

/* Pricing features list */
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-1);
}
.pf-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-btn {
  width: 100%;
  position: relative;
  z-index: 1;
  font-size: 17px;
  padding: 18px;
}
.pricing-trust {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-3);
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

/* =====================================================
   FAQ
===================================================== */
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.05);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent-light); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.75;
}

/* =====================================================
   FINAL CTA
===================================================== */
.cta-section { position: relative; overflow: hidden; }
.cta-inner {
  position: relative;
  background: linear-gradient(135deg,
    rgba(124,58,237,0.12) 0%,
    rgba(10,10,20,0.6) 50%,
    rgba(99,102,241,0.1) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: calc(var(--radius-xl) + 8px);
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-glow-1 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.18);
  top: -200px; left: -100px;
}
.cta-glow-2 {
  width: 400px; height: 400px;
  background: rgba(99,102,241,0.14);
  bottom: -150px; right: -80px;
}
.cta-title {
  font-family: var(--font-alt);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-2);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.cta-btn {
  position: relative;
  z-index: 1;
  min-width: 280px;
  font-size: 18px;
  padding: 20px 44px;
}
.cta-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--gray-3);
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy {
  font-size: 13px;
  color: var(--gray-3);
  padding-left: 2px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--gray-3);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gray-1); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .forwhom-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }

  /* Navbar */
  .nav-links        { display: none; }
  .navbar .btn      { display: none; }
  .burger           { display: flex; }

  /* Hero */
  .hero { padding: 110px 20px 60px; }
  .hero h1 { font-size: clamp(32px, 9vw, 52px); }
  .hero-buttons { gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }
  .fake-columns { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  /* For whom */
  .forwhom-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Comparison */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .comparison-divider { padding: 8px 0; }
  .comp-vs { width: 40px; height: 40px; font-size: 11px; }

  /* Pricing */
  .pricing-card { padding: 36px 24px; }
  .price-new    { font-size: 52px; }

  /* CTA */
  .cta-inner { padding: 56px 24px; }
  .cta-btn   { width: 100%; max-width: 360px; }

  /* Footer */
  .footer-inner   { flex-direction: column; align-items: flex-start; }
  .footer-links   { gap: 16px; }

  /* Slide image */
  .slide-image { min-height: 260px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .forwhom-grid  { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .hero-mockup   { display: none; }
  .comparison-col { padding: 28px 20px; }
  .pricing-card   { padding: 28px 20px; }
}