/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Dark theme colors */
  --background: #030304;
  --foreground: #fafafa;
  --card: 11, 11, 15;
  --card-foreground: #fafafa;
  --muted: #20202b;
  --muted-foreground: #a1a1a1;
  --border: #202030;
  --secondary: #15151d;
  
  /* Brand colors */
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --cyan-400: #22d3ee;
  --red-400: #f87171;
  --red-500: #ef4444;
  
  --radius: 0.625rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-md {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-lg {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Gradient texts */
.gradient-text-primary {
  background: linear-gradient(to right, var(--purple-400), var(--pink-500), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-orange {
  background: linear-gradient(to right, var(--orange-400), var(--orange-500), var(--yellow-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-amber {
  background: linear-gradient(to right, var(--amber-400), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-yellow {
  background: linear-gradient(to right, var(--yellow-400), var(--amber-400), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-green {
  background: linear-gradient(to right, var(--green-400), var(--emerald-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(10px); }
}

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

@keyframes pulse-glow {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes pulse-button {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
  50% { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes moveX {
  0%, 100% { transform: translateX(-20px); }
  50% { transform: translateX(20px); }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 8s ease-in-out infinite;
}

.animate-pulse-button {
  animation: pulse-button 2.2s ease-in-out infinite;
}

.animate-pulse-shadow {
  animation: pulse-shadow 2s ease-in-out infinite;
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInScale {
  animation: fadeInScale 0.6s ease-out forwards;
}

/* Scroll animation classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulse-button 2.2s ease-in-out infinite;
  text-decoration: none;
}

a.btn {
  text-decoration: none;
  color: white;
}

a.btn:visited {
  color: white;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(to right, var(--pink-500), var(--orange-500));
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.6);
}

.btn-green {
  background: linear-gradient(to right, var(--green-500), var(--emerald-500));
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.btn-green:hover {
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-purple {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c4b5fd;
}

.badge-amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber-400);
}

.badge-green {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--green-400);
}

.badge-yellow {
  background: linear-gradient(to right, rgba(234, 179, 8, 0.2), rgba(245, 158, 11, 0.2));
  color: var(--yellow-400);
}

/* ===== CARDS ===== */
.card {
  background: rgba(var(--card), 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== SECTION SEPARATORS ===== */
.section-separator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.separator-purple {
  background: linear-gradient(to right, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.separator-amber {
  background: linear-gradient(to right, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.separator-green {
  background: linear-gradient(to right, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.separator-pink {
  background: linear-gradient(to right, transparent, rgba(236, 72, 153, 0.3), transparent);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 4rem;
  background-color: var(--background);
}


.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow-purple {
  top: 25%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: rgba(147, 51, 234, 0.2);
  transform: translate(-50%, -50%);
}

.hero-glow-pink {
  top: 50%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: rgba(236, 72, 153, 0.15);
  filter: blur(120px);
  transform: translate(50%, -50%);
}

.hero-glow-orange {
  bottom: 25%;
  right: 33%;
  width: 300px;
  height: 300px;
  background: rgba(249, 115, 22, 0.1);
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-gif-container {
  position: relative;
  margin-top: 1.5rem;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.hero-gif-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: rgba(168, 85, 247, 0.2);
  filter: blur(48px);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-gif-glow-2 {
  position: absolute;
  inset: -0.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.25), rgba(236, 72, 153, 0.15));
  filter: blur(32px);
  animation: pulse-glow 8s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero-gif {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}

.hero-gif img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  padding: 0 1.25rem;
  animation: float 6s ease-in-out infinite;
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* Check items */
.check-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
  transition: all 0.3s ease;
}

.check-item:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
  transform: translateY(-6px);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
  flex-shrink: 0;
}

.check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}

.check-item span {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Hero CTA */
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-trust {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-trust svg {
  width: 1rem;
  height: 1rem;
  color: var(--green-400);
}

/* ===== COURSE CONTENT SECTION ===== */
.course-content {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background-color: var(--background);
}


.course-content-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.course-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.course-glow-purple {
  left: 25%;
  top: 25%;
  width: 384px;
  height: 384px;
  background: rgba(147, 51, 234, 0.1);
  animation: pulse-glow 8s ease-in-out infinite;
}

.course-glow-pink {
  right: 25%;
  bottom: 25%;
  width: 384px;
  height: 384px;
  background: rgba(219, 39, 119, 0.1);
  animation: pulse-glow 8s ease-in-out infinite;
  animation-delay: 4s;
}

.course-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.course-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}

.course-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.course-mockup-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1rem;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2), rgba(59, 130, 246, 0.2));
  opacity: 0.6;
  filter: blur(32px);
  animation: pulse-glow 6s ease-in-out infinite;
}

.course-mockup img {
  position: relative;
  max-width: 512px;
  width: 100%;
  animation: float-slow 8s ease-in-out infinite;
}

.course-modules-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.course-modules {
  display: grid;
  gap: 0.75rem;
}

.module-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(26, 26, 26, 0.5);
}

.module-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.module-card:hover .module-icon {
  transform: scale(1.05);
}

.module-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.module-icon-purple {
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2));
}

.module-icon-purple svg {
  color: var(--purple-400);
}

.module-icon-orange {
  background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
}

.module-icon-orange svg {
  color: var(--orange-400);
}

.module-icon-cyan {
  background: linear-gradient(to bottom right, rgba(34, 211, 238, 0.2), rgba(6, 182, 212, 0.2));
}

.module-icon-cyan svg {
  color: var(--cyan-400);
}

.module-icon-pink {
  background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2));
}

.module-icon-pink svg {
  color: var(--pink-400);
}

.module-icon-yellow {
  background: linear-gradient(to bottom right, rgba(234, 179, 8, 0.2), rgba(202, 138, 4, 0.2));
}

.module-icon-yellow svg {
  color: var(--yellow-400);
}

.module-card p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.course-note {
  max-width: 672px;
  margin: 2.5rem auto 0;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.course-note p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-400);
  text-align: center;
}

/* ===== BONUS SECTION ===== */
.bonus {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
  background-color: var(--background);
}


.bonus h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.bonus-cards {
  display: grid;
  gap: 0.75rem;
  max-width: 768px;
  margin: 2rem auto 0;
}

.bonus-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(26, 26, 26, 0.3);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 40px -10px rgba(245, 158, 11, 0.15);
}

.bonus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.1);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bonus-card:hover .bonus-icon {
  transform: scale(1.05);
}

.bonus-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--amber-400);
}

.bonus-card p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.bonus-closing {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bonus-closing span {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
  background-color: var(--background);
}


.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonials-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.testimonials-glow-purple {
  left: 25%;
  top: 0;
  width: 400px;
  height: 300px;
  background: rgba(147, 51, 234, 0.1);
  animation: moveX 10s ease-in-out infinite;
}

.testimonials-glow-pink {
  right: 25%;
  bottom: 0;
  width: 400px;
  height: 300px;
  background: rgba(219, 39, 119, 0.1);
  animation: moveX 10s ease-in-out infinite reverse;
}

.testimonials h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.carousel-container {
  position: relative;
  margin-top: 2.5rem;
}

.carousel-fade-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  background: linear-gradient(to right, var(--background), transparent);
  z-index: 10;
  pointer-events: none;
}

.carousel-fade-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  background: linear-gradient(to left, var(--background), transparent);
  z-index: 10;
  pointer-events: none;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  padding: 1rem;
}

.carousel-item {
  flex-shrink: 0;
  position: relative;
  width: 280px;
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.carousel-item-glow {
  position: absolute;
  inset: -0.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2), rgba(249, 115, 22, 0.2));
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.3s ease;
}

.carousel-item:hover .carousel-item-glow {
  opacity: 1;
}

.carousel-item img {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(11, 11, 15, 0.6);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease;
}

.carousel-item:hover img {
  border-color: rgba(168, 85, 247, 0.4);
}

/* ===== PRICING SECTION ===== */
.pricing {
  position: relative;
  padding: 3rem 0 4rem;
  background-color: var(--background);
}


.pricing h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--green-400);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.pricing-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.pricing-mockup-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1rem;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15), rgba(59, 130, 246, 0.15));
  filter: blur(32px);
  animation: pulse-glow 6s ease-in-out infinite;
}

.pricing-mockup img {
  position: relative;
  max-width: 448px;
  width: 100%;
  padding: 0.375rem 3rem;
  animation: float 7s ease-in-out infinite;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-original {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.pricing-original .strikethrough {
  color: var(--red-400);
  text-decoration: line-through;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-main .prefix {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.pricing-main .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-400);
}

.pricing-cash {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.pricing-cash .highlight {
  font-weight: 600;
  color: var(--foreground);
}

.pricing-access {
  text-align: center;
  margin-bottom: 1.25rem;
}

.pricing-access p {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink-400);
}

.pricing-access p:last-child {
  font-weight: 700;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  margin-bottom: 1.25rem;
  animation: pulse-shadow 2s ease-in-out infinite;
}

.countdown svg {
  width: 1rem;
  height: 1rem;
  color: var(--red-400);
}

.countdown .label {
  font-size: 0.875rem;
  color: var(--red-400);
}

.countdown .time {
  font-family: monospace;
  font-size: 1.125rem;
  font-weight: 700;
}

.pricing-cta {
  width: 100%;
  max-width: 384px;
}

.pricing-urgency {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  text-align: center;
}

.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.pricing-badges span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
}

.pricing-badges span:hover {
  transform: scale(1.05);
}

.pricing-badges svg {
  width: 0.875rem;
  height: 0.875rem;
}

.pricing-value {
  max-width: 384px;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-value .highlight {
  color: var(--green-400);
}

/* ===== GUARANTEE SECTION ===== */
.guarantee {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2rem;
  background-color: var(--background);
}


.guarantee-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.05), transparent 60%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.guarantee-seal {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.guarantee-seal-glow {
  position: absolute;
  inset: -0.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, rgba(234, 179, 8, 0.2), rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
  opacity: 0.6;
  filter: blur(16px);
  animation: pulse-glow 4s ease-in-out infinite;
}

.guarantee-seal img {
  position: relative;
  width: 208px;
  animation: float 5s ease-in-out infinite;
}

.guarantee h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.guarantee-content {
  text-align: center;
}

.guarantee-content > p:first-child {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guarantee-content > p:nth-child(2) {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.guarantee-content > p:nth-child(2) .highlight {
  font-weight: 600;
  color: var(--yellow-400);
}

.guarantee-box {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(8px);
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}

.guarantee-box:hover {
  background: rgba(26, 26, 26, 0.5);
  transform: translateY(-2px);
}

.guarantee-box p:first-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.guarantee-box p:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.guarantee-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.guarantee-tag {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-400);
  transition: transform 0.2s ease;
}

.guarantee-tag:hover {
  transform: scale(1.05);
}

.guarantee-cta {
  padding-top: 1rem;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
  background-color: var(--background);
}


.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 800px;
  height: 500px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1), transparent);
  filter: blur(48px);
  animation: pulse-glow 10s ease-in-out infinite;
}

.final-cta-glow-2 {
  position: absolute;
  left: 25%;
  bottom: 0;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(236, 72, 153, 0.1));
  filter: blur(48px);
  animation: moveX 12s ease-in-out infinite;
}

.final-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 2rem;
}

.final-cta h2 .muted {
  color: var(--muted-foreground);
}

.final-cta-content {
  text-align: center;
  margin-bottom: 2.5rem;
}

.final-cta-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.final-cta-content p.muted {
  color: var(--muted-foreground);
}

.final-cta-content p .highlight {
  font-weight: 500;
}

.final-cta-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.option-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-6px);
}

.option-positive {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.option-positive:hover {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.15);
  box-shadow: 0 20px 40px -15px rgba(34, 197, 94, 0.2);
}

.option-positive p {
  font-size: 0.875rem;
  color: #86efac;
}

.option-positive .highlight {
  font-weight: 600;
  color: var(--green-400);
}

.option-negative {
  border: 1px solid rgba(161, 161, 161, 0.3);
  background: rgba(161, 161, 161, 0.1);
}

.option-negative:hover {
  border-color: rgba(161, 161, 161, 0.5);
}

.option-negative p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.option-negative .highlight {
  font-weight: 600;
}

.final-cta-action {
  text-align: center;
}

.final-cta-action > p {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.final-cta-action .btn {
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.5);
}

.final-cta-action .btn .arrow {
  animation: arrowBounce 1.5s ease-in-out infinite;
}

.final-cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.final-cta-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.final-cta-badges span:hover {
  transform: scale(1.05);
}

.final-cta-badges svg {
  width: 1rem;
  height: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  border-top: 1px solid rgba(11, 11, 15, 0.6);
  padding: 3rem 0;
  background-color: var(--background);
}


.footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 448px;
  margin: 0 auto 0.5rem;
}

.footer-copyright {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 11, 15, 0.6);
}

.footer-copyright p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 1.875rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .check-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .check-item {
    padding: 0.5rem 1rem;
  }
  
  .check-item span {
    font-size: 0.875rem;
  }
  
  .course-content h2 {
    font-size: 2.25rem;
  }
  
  .course-modules {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .course-note p {
    font-size: 1rem;
  }
  
  .bonus h2 {
    font-size: 1.875rem;
  }
  
  .bonus-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonus-closing {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  
  .bonus-closing span {
    font-size: 1rem;
  }
  
  .testimonials h2 {
    font-size: 1.875rem;
  }
  
  .carousel-item {
    width: 350px;
  }
  
  .carousel-fade-left,
  .carousel-fade-right {
    width: 8rem;
  }
  
  .pricing h2 {
    font-size: 2.25rem;
  }
  
  .pricing-main .price {
    font-size: 3rem;
  }
  
  .guarantee-seal img {
    width: 256px;
  }
  
  .guarantee h2 {
    font-size: 1.5rem;
  }
  
  .final-cta h2 {
    font-size: 1.875rem;
  }
  
  .final-cta-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .course-content h2 {
    font-size: 3rem;
  }
  
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .course-mockup {
    justify-content: flex-start;
  }
  
  .bonus h2 {
    font-size: 2.25rem;
  }
  
  .testimonials h2 {
    font-size: 2.25rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .pricing-info {
    align-items: flex-start;
  }
  
  .pricing-access {
    text-align: left;
  }
  
  .pricing-urgency {
    text-align: left;
  }
  
  .guarantee h2 {
    font-size: 1.875rem;
  }
  
  .final-cta h2 {
    font-size: 2.25rem;
  }
}
