/* ============================================
   CANVA EXPERT — Sales Page Design System v2
   Purple + Blue Theme · Carousel Modules
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --purple-300: #c4b5fd;
  --purple-400: #a78bfa;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
  --purple-700: #6d28d9;
  --purple-800: #5b21b6;
  --purple-900: #4c1d95;

  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  --pink-400: #f472b6;
  --pink-500: #ec4899;

  --bg-primary: #08081a;
  --bg-secondary: #0e0e28;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --text-primary: #ffffff;
  --text-secondary: #b0b0d0;
  --text-muted: #6a6a8a;

  --gradient-cta: linear-gradient(135deg, #7c3aed, #3b82f6);
  --gradient-cta-hover: linear-gradient(135deg, #6d28d9, #2563eb);
  --gradient-hero: linear-gradient(180deg, #08081a 0%, #150a30 40%, #0a1530 100%);
  --gradient-section-alt: linear-gradient(180deg, #0e0e28 0%, #08081a 100%);
  --gradient-purple: linear-gradient(135deg, #7c3aed, #a78bfa);
  --gradient-accent: linear-gradient(135deg, #7c3aed, #3b82f6);

  --border-glass: 1px solid rgba(255, 255, 255, 0.06);

  --shadow-cta: 0 4px 30px rgba(59, 130, 246, 0.4);
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; position: relative; }
.section--alt { background: var(--gradient-section-alt); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* .text-gradient and .text-pink are now defined with neon effects in the Hero section */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Glow Backgrounds ---------- */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.glow-purple { background: var(--purple-600); }
.glow-blue { background: var(--blue-500); }

/* ---------- Urgency Bar ---------- */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--gradient-accent);
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.urgency-bar span { font-family: var(--font-heading); font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(8, 8, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  padding: 10px 0;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; }
.header__logo span { color: var(--purple-400); }
.header__cta { display: none !important; }
.header.scrolled .header__cta { display: inline-flex; }

/* ---------- CTA Button — Neon Lilac ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #a855f7, #7c3aed, #6d28d9);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.5),
    0 0 40px rgba(124, 58, 237, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: neonPulse 2.5s ease-in-out infinite;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 0 30px rgba(168, 85, 247, 0.7),
    0 0 60px rgba(124, 58, 237, 0.4),
    0 0 80px rgba(168, 85, 247, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.3);
}
.btn-cta--sm { padding: 12px 28px; font-size: 0.9rem; }
.btn-cta--lg { padding: 20px 52px; font-size: 1.15rem; letter-spacing: 1px; }

@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(168, 85, 247, 0.4),
      0 0 40px rgba(124, 58, 237, 0.2),
      0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 30px rgba(168, 85, 247, 0.7),
      0 0 60px rgba(124, 58, 237, 0.4),
      0 0 80px rgba(168, 85, 247, 0.15),
      0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ---------- Hero (Full-Bleed Background) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background Image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% top;
  filter: brightness(1.2) contrast(1.1) saturate(1.25);
}

/* Dark overlay — dark on LEFT for text, lighter on RIGHT for vivid Pamella */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 26, 0.88) 0%,
    rgba(8, 8, 26, 0.75) 30%,
    rgba(8, 8, 26, 0.3) 55%,
    rgba(8, 8, 26, 0.05) 80%,
    rgba(8, 8, 26, 0.0) 100%
  );
  z-index: 1;
}

/* Animated glow effects layer */
.hero__bg-effects {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Content container — text on LEFT */
.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero__content {
  max-width: 560px;
  animation: fadeInUp 0.8s ease;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-300);
  margin-bottom: 20px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

/* Gradient text effect for title highlights — neon glow */
.text-gradient {
  background: linear-gradient(135deg, #c084fc, #a855f7, #818cf8, #c084fc);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(192, 132, 252, 0.6)) drop-shadow(0 0 40px rgba(124, 58, 237, 0.3));
  animation: gradientShift 4s ease-in-out infinite, neonTextBlink 2s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes neonTextBlink {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.4)) drop-shadow(0 0 20px rgba(124, 58, 237, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(192, 132, 252, 0.9)) drop-shadow(0 0 50px rgba(124, 58, 237, 0.5)) drop-shadow(0 0 80px rgba(168, 85, 247, 0.3));
  }
}

.text-pink {
  background: linear-gradient(135deg, #c084fc, #60a5fa, #a78bfa);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.6)) drop-shadow(0 0 40px rgba(192, 132, 252, 0.3));
  animation: gradientShift 4s ease-in-out infinite reverse, neonTextBlink 2.5s ease-in-out infinite 0.5s;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero__trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--purple-400);
}


/* ---------- Trust Badges ---------- */
.trust-badges { display: flex; justify-content: center; gap: 36px; padding: 30px 0; flex-wrap: wrap; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-muted); text-align: center; }
.trust-badge__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 50%;
  color: var(--purple-400);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.trust-badge:hover .trust-badge__icon {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.25);
}

/* ---------- For Who Cards ---------- */
.for-who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.for-who__card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.for-who__card:hover { background: var(--bg-card-hover); border-color: rgba(124, 58, 237, 0.25); transform: translateY(-4px); }
.for-who__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.for-who__card:hover .for-who__card-icon {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.25);
}
.for-who__card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.for-who__card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Benefits ---------- */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.benefit-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); opacity: 0; transition: var(--transition); }
.benefit-card:hover { transform: translateY(-4px); background: var(--bg-card-hover); }
.benefit-card:hover::before { opacity: 1; }
.benefit-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-card__icon {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.25);
}
.benefit-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 14px 0; background: var(--gradient-accent); white-space: nowrap; }
.marquee__inner { display: inline-flex; gap: 40px; animation: marquee 25s linear infinite; align-items: center; }
.marquee__item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.marquee__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== MODULE COVERFLOW CAROUSEL ========== */
.modules-carousel {
  position: relative;
  margin-top: 40px;
  padding: 40px 0 20px;
}

.coverflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 620px;
  perspective: 1200px;
  overflow: visible;
}

.coverflow__track {
  position: relative;
  width: 400px;
  height: 560px;
  transform-style: preserve-3d;
}

.module-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(124, 58, 237, 0.15);
  background: var(--bg-card);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backface-visibility: hidden;
}

/* Active (center) card */
.module-card.active {
  z-index: 10;
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: brightness(1);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(124, 58, 237, 0.2);
}

/* Previous card (left) */
.module-card.prev {
  z-index: 5;
  transform: translateX(-75%) scale(0.82) rotateY(8deg);
  opacity: 0.7;
  filter: brightness(0.5) blur(1px);
}

/* Next card (right) */
.module-card.next {
  z-index: 5;
  transform: translateX(75%) scale(0.82) rotateY(-8deg);
  opacity: 0.7;
  filter: brightness(0.5) blur(1px);
}

/* Far left */
.module-card.far-prev {
  z-index: 2;
  transform: translateX(-140%) scale(0.65) rotateY(15deg);
  opacity: 0.35;
  filter: brightness(0.3) blur(3px);
}

/* Far right */
.module-card.far-next {
  z-index: 2;
  transform: translateX(140%) scale(0.65) rotateY(-15deg);
  opacity: 0.35;
  filter: brightness(0.3) blur(3px);
}

/* Hidden cards */
.module-card.hidden-card {
  z-index: 0;
  transform: translateX(0) scale(0.5);
  opacity: 0;
  pointer-events: none;
}

.module-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.module-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 18px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.module-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.module-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

/* Coverflow Nav Buttons */
.coverflow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.coverflow__nav--prev { left: calc(50% - 240px); }
.coverflow__nav--next { right: calc(50% - 240px); }

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(124, 58, 237, 0.5);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  transform: scale(1.1);
}

/* Coverflow pagination dots */
.coverflow__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.coverflow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.coverflow__dot.active {
  background: var(--purple-400);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Tech Section (Agenda Showcase) ---------- */
.tech-section {
  background: #080810;
  position: relative;
  overflow: hidden;
}

.tech-glow-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tech-glow-2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tech-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.tech-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  font-weight: 500;
}

.tech-right {
  position: relative;
}

/* Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.comparison-before,
.comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-before img,
.comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s;
}

.comparison-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.label-before { left: 16px; }
.label-after { right: 16px; }

.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.handle-line {
  width: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.6);
}

.handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.tech-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--purple-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple-400), 0 0 20px rgba(167, 139, 250, 0.3);
  animation: particleFloat 6s ease-in-out infinite;
}

.tech-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 5s; }
.tech-particles span:nth-child(2) { top: 70%; left: 85%; animation-delay: 1s; animation-duration: 7s; }
.tech-particles span:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; animation-duration: 4s; width: 3px; height: 3px; }
.tech-particles span:nth-child(4) { top: 80%; left: 20%; animation-delay: 0.5s; animation-duration: 6s; }
.tech-particles span:nth-child(5) { top: 50%; left: 50%; animation-delay: 3s; animation-duration: 8s; width: 5px; height: 5px; }
.tech-particles span:nth-child(6) { top: 20%; left: 90%; animation-delay: 1.5s; animation-duration: 5.5s; width: 3px; height: 3px; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.tech-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ---------- About ---------- */
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about__image img { width: 100%; max-width: 400px; border-radius: var(--radius-lg); border: 2px solid rgba(124, 58, 237, 0.15); }
.about__image::after { content: ''; position: absolute; inset: -15px; border-radius: var(--radius-lg); background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08), transparent 70%); z-index: -1; }
.about__image { position: relative; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.about__stat { text-align: center; padding: 16px; background: var(--bg-card); border: var(--border-glass); border-radius: var(--radius-md); }
.about__stat-number { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--purple-400); }
.about__stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- Bonus ---------- */
.bonus-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.04));
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.bonus-card__icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  position: relative;
}
.bonus-robot-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: robotFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.4));
}
@keyframes robotFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.bonus-card__tag { display: inline-block; padding: 5px 14px; background: var(--gradient-accent); border-radius: var(--radius-full); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.bonus-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.bonus-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* ---------- Testimonials ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.testimonial-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(124, 58, 237, 0.25); transform: translateY(-3px); }
.testimonial-card__stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card__text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.75rem; color: var(--text-muted); }

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 520px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(59, 130, 246, 0.03));
  border: 2px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-accent); }
.pricing-card__ribbon {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  animation: ribbonPulse 2s ease-in-out infinite;
}
@keyframes ribbonPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(124, 58, 237, 0.7); }
}
.pricing-card__tag { display: inline-block; padding: 7px 20px; background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(59, 130, 246, 0.25); border-radius: var(--radius-full); color: var(--blue-400); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }

/* Everton-style checklist */
.pricing-checklist {
  list-style: none;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 360px;
  padding: 0;
}
.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-checklist li::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #22c55e;
  border-radius: 4px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Pricing CTA */
.pricing-cta {
  width: 100%;
  font-size: 1.3rem !important;
  padding: 20px 40px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4); }
  50% { box-shadow: 0 6px 35px rgba(124, 58, 237, 0.7), 0 0 60px rgba(124, 58, 237, 0.2); }
}

.pricing-card__original { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card__original s { text-decoration: line-through; }

/* Hero installments - main pricing element */
.pricing-card__installments-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}
.installments-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.installments-label u {
  text-decoration: underline;
  font-weight: 800;
  color: white;
}
.installments-price {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #d4af37, #f5d680, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}
.installments-price sup {
  font-size: 0.4em;
  vertical-align: super;
}
.pricing-card__fullprice {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-card__fullprice s {
  color: #22c55e;
  font-weight: 700;
  text-decoration: line-through;
}

.pricing-card__features { text-align: left; margin-bottom: 20px; }
.pricing-card__features li { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.pricing-card__features li::before { content: '\2713'; color: #22c55e; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }

/* Expandable course list */
.pricing-expand-section {
  margin-bottom: 20px;
}
.pricing-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-full);
  color: var(--purple-400);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-expand-btn:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}
.pricing-expand-btn.active {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--purple-400);
}
.pricing-course-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
  padding: 0;
}
.pricing-course-list.open {
  max-height: 600px;
  padding-top: 16px;
}

/* Section background glows */
.section--alt::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--alt::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 35%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--alt {
  position: relative;
  overflow: hidden;
}
.section--alt > .container {
  position: relative;
  z-index: 1;
}


/* Bonus highlight in pricing */
.pricing-card__bonus-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.pricing-card__bonus-highlight strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 2px;
}
.pricing-card__bonus-highlight span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pricing-bonus-glow {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50%) scale(1.3); opacity: 1; }
}

/* ---------- Guarantee ---------- */
.guarantee-box {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.guarantee__icon { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; background: rgba(34, 197, 94, 0.08); border: 2px solid rgba(34, 197, 94, 0.25); border-radius: 50%; font-size: 2.2rem; margin-bottom: 20px; }
.guarantee-box h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.guarantee-box p { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; max-width: 480px; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 700px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: var(--border-glass); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(124, 58, 237, 0.15); }
.faq-item__question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.faq-item__question:hover { color: var(--purple-400); }
.faq-item__icon { transition: var(--transition); font-size: 1.2rem; color: var(--text-muted); flex-shrink: 0; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); color: var(--purple-400); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-item__answer { max-height: 300px; }
.faq-item__answer p { padding: 0 22px 18px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* ---------- Course Modal ---------- */
.course-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.course-modal.open {
  display: flex;
}
.course-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.course-modal__content {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 900px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(124, 58, 237, 0.15);
  animation: modalSlideIn 0.4s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.course-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}
.course-modal__close:hover { color: white; }
.course-modal__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.course-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .course-modal__grid { grid-template-columns: 1fr; }
  .course-modal__content { padding: 24px 16px; }
}
.module-accordion {
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.module-accordion:hover {
  border-color: rgba(124, 58, 237, 0.4);
}
.module-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: rgba(124, 58, 237, 0.06);
  border: none;
  color: var(--purple-300);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
.module-accordion__header:hover {
  background: rgba(124, 58, 237, 0.12);
}
.module-accordion__icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--purple-400);
}
.module-accordion.open .module-accordion__icon {
  transform: rotate(45deg);
}
.module-accordion.open .module-accordion__header {
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}
.module-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 18px;
}
.module-accordion.open .module-accordion__body {
  max-height: 500px;
  padding: 12px 18px;
}
.module-accordion__body p {
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 60%); }
.final-cta__title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.final-cta__subtitle { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.footer { padding: 36px 0; border-top: var(--border-glass); text-align: center; color: var(--text-muted); font-size: 0.8rem; }
.footer a { color: var(--purple-400); transition: var(--transition); }
.footer a:hover { color: var(--purple-300); }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- Custom Scrollbar ---------- */
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple-600), var(--purple-800));
  border-radius: 4px;
  border: 1px solid rgba(124, 58, 237, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple-400), var(--purple-600));
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* ---------- Cursor Trail ---------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.8), rgba(124, 58, 237, 0.4));
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

/* ---------- Smooth Scroll Progress ---------- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-pct, 0%);
  height: 3px;
  background: var(--gradient-accent);
  z-index: 100000;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero__container { justify-content: center; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__cta-wrapper { align-items: center; }
  .hero__trust { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 26, 0.3) 0%,
      rgba(8, 8, 26, 0.65) 35%,
      rgba(8, 8, 26, 0.9) 65%,
      rgba(8, 8, 26, 0.98) 100%
    );
  }
  .for-who__grid, .benefits__grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .about .container { grid-template-columns: 1fr; text-align: center; }
  .about__image { order: -1; }
  .about__image img { margin: 0 auto; }
  .bonus-card { grid-template-columns: 1fr; text-align: center; }
  .bonus-card__icon { margin: 0 auto; }
  .section { padding: 60px 0; }
  .tech-grid { grid-template-columns: 1fr; text-align: center; }
  .tech-left h2 { font-size: 2rem; }
  .tech-mockup-frame { max-width: 100%; }
  .tech-glow-1, .tech-glow-2 { display: none; }
  .course-modal__grid { grid-template-columns: 1fr; }
  .course-modal__content { padding: 24px 16px; }
}

@media (max-width: 768px) {
  .section-title { font-size: 1.5rem; }
  .hero__title { font-size: 1.6rem; }
  /* --- Hero: image on top, text below --- */
  .hero {
    min-height: auto;
    flex-direction: column;
    padding-top: 80px;
  }
  .hero__bg {
    position: relative;
    height: 50vh;
    min-height: 300px;
    flex-shrink: 0;
  }
  .hero__bg-img {
    object-position: center 20%;
  }
  .hero__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 26, 0) 0%,
      rgba(8, 8, 26, 0) 50%,
      rgba(8, 8, 26, 0.8) 85%,
      rgba(8, 8, 26, 1) 100%
    ) !important;
  }
  .hero__container {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
  }
  .hero__badge { font-size: 0.7rem; padding: 6px 14px; }
  .hero__subtitle { font-size: 0.88rem; }
  .pricing-card { padding: 24px 18px; }
  .pricing-checklist li { font-size: 0.92rem; padding: 8px 0; }
  .installments-price { font-size: clamp(2.8rem, 10vw, 4rem); }
  .installments-label { font-size: 0.95rem; }
  .pricing-cta { font-size: 1.1rem !important; padding: 18px 32px !important; }
  .about__stats { gap: 8px; }
  .about__stat-number { font-size: 1.2rem; }
  .btn-cta--lg { padding: 16px 32px; font-size: 1rem; }
  .guarantee-box { padding: 24px 18px; }
  .coverflow { height: 420px; }
  .coverflow__track { width: 280px; height: 400px; }
  .module-card { width: 280px; height: 400px; }
  .coverflow__nav--prev { left: calc(50% - 200px); }
  .coverflow__nav--next { right: calc(50% - 200px); }
  .module-card.prev { transform: translateX(-70%) scale(0.75) rotateY(8deg); }
  .module-card.next { transform: translateX(70%) scale(0.75) rotateY(-8deg); }
  .module-card.far-prev { transform: translateX(-125%) scale(0.6) rotateY(15deg); }
  .module-card.far-next { transform: translateX(125%) scale(0.6) rotateY(-15deg); }
  /* Disable cursor trail on tablets/mobile */
  .cursor-dot { display: none !important; }
  /* Disable heavy background glows on mobile */
  .section--alt::before, .section--alt::after { display: none; }
  .glow-bg { display: none; }
  /* Compact header */
  .header { padding: 10px 0; }
  .header.scrolled { padding: 6px 0; }
  .header__logo { font-size: 1rem; }
  /* Stack trust badges */
  .hero__trust { gap: 8px; }
  .hero__trust-item { font-size: 0.72rem; }
  /* Smaller marquee */
  .marquee-text { font-size: 0.8rem; }
  .faq-item__question { padding: 14px 16px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero { padding-top: 90px; }
  .hero__title { font-size: 1.4rem; }
  .hero__subtitle { font-size: 0.82rem; }
  .section { padding: 40px 0; }
  .section-badge { font-size: 0.7rem; padding: 5px 12px; }
  .section-title { font-size: 1.3rem; }
  .testimonials__grid, .portfolio__grid { grid-template-columns: 1fr; }
  .urgency-bar { font-size: 0.68rem; padding: 7px 6px; }
  /* Carousel compact */
  .coverflow { height: 340px; }
  .coverflow__track { width: 220px; height: 310px; }
  .module-card { width: 220px; height: 310px; }
  .coverflow__nav--prev { left: 6px; }
  .coverflow__nav--next { right: 6px; }
  .carousel-btn { width: 34px; height: 34px; font-size: 0.85rem; }
  .module-card.prev, .module-card.next { opacity: 0.35; }
  .module-card.far-prev, .module-card.far-next { opacity: 0; }
  /* Pricing compact */
  .pricing-card { padding: 20px 14px; }
  .pricing-checklist li { font-size: 0.85rem; gap: 8px; padding: 7px 0; }
  .pricing-checklist li::before { width: 18px; height: 18px; background-size: 11px; }
  .installments-price { font-size: 2.6rem; }
  .pricing-expand-btn { font-size: 0.75rem; padding: 10px 18px; }
  .pricing-cta { font-size: 1rem !important; padding: 16px 24px !important; letter-spacing: 1px; }
  /* Tap-friendly buttons */
  .btn-cta--lg { padding: 14px 24px; font-size: 0.92rem; }
  /* Cards spacing */
  .for-who-card, .benefit-card { padding: 20px 16px; }
  /* About section */
  .about__image img { max-width: 250px; }
  /* FAQ */
  .faq-item__question { padding: 12px 14px; font-size: 0.82rem; }
  .faq-item__answer p { padding: 0 14px 14px; font-size: 0.82rem; }
  /* Modal */
  .course-modal__content { padding: 20px 12px; max-height: 90vh; }
  .course-modal__title { font-size: 1.1rem; margin-bottom: 20px; }
  .module-accordion__header { padding: 12px 14px; font-size: 0.78rem; }
  /* Footer */
  .footer { padding: 20px 0; }
  .footer p { font-size: 0.7rem; }
}

/* ---------- Performance: prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cursor-dot { display: none !important; }
}

