/* ==========================================================================
   VERSION 03 - "Royal Purple"
   Theme: Vibrant, bold
   Colors: Background #1a0533, Accent #9b51e0, Secondary #e040fb
   Fonts: Poppins (headings) + DM Sans (body)
   Feature: Cards with GLOW BORDERS
   ========================================================================== */

:root {
  --color-bg: #1a0533;
  --color-bg-alt: #220a40;
  --color-accent: #9b51e0;
  --color-secondary: #e040fb;
  --color-text: #f0e6ff;
  --color-muted: #9d8bbf;
  --color-accent-alpha: rgba(155, 81, 224, 0.4);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --glow: 0 0 20px rgba(155, 81, 224, 0.3);
  --glow-strong: 0 0 30px rgba(155, 81, 224, 0.5), 0 0 60px rgba(224, 64, 251, 0.2);
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

/* ==========================================================================
   Typography
   ========================================================================== */

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* ==========================================================================
   CTA Button Override
   ========================================================================== */

.cta-btn {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 36px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
}

.cta-btn:hover {
  box-shadow: var(--glow-strong);
}

/* ==========================================================================
   SECTION 1 - HERO
   ========================================================================== */

.hero {
  padding: 60px 0 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at top center, rgba(155, 81, 224, 0.15) 0%, transparent 60%),
    var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(224, 64, 251, 0.03) 0%, transparent 50%);
  animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  from { transform: scale(1); opacity: 0.5; }
  to { transform: scale(1.2); opacity: 1; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155, 81, 224, 0.15);
  border: 1px solid rgba(155, 81, 224, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--color-secondary);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__urgency {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 28px;
}

.hero__photo {
  margin: 0 auto 20px;
  width: 120px;
  height: 120px;
}

.hero__photo-img {
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-accent);
  box-shadow: var(--glow);
  font-size: 0.7rem;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero__subheadline {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__countdown {
  margin-bottom: 32px;
}

.hero__countdown-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .countdown__number {
  color: var(--color-secondary);
  font-family: var(--font-heading);
}

.hero .countdown__separator {
  color: var(--color-accent);
}

.hero .countdown__label {
  color: var(--color-muted);
}

.hero__cta {
  display: inline-flex;
}

/* ==========================================================================
   SECTION 2 - PERSUASION
   ========================================================================== */

.persuasion {
  padding: 60px 0;
  background:
    radial-gradient(ellipse at bottom right, rgba(155, 81, 224, 0.08) 0%, transparent 50%),
    var(--color-bg-alt);
}

.persuasion__badge {
  display: inline-block;
  background: rgba(155, 81, 224, 0.1);
  border: 1px solid rgba(155, 81, 224, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  text-align: center;
}

.persuasion .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.persuasion__text {
  max-width: 700px;
  margin-bottom: 40px;
}

.persuasion__text p {
  margin-bottom: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 1rem;
}

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

.persuasion__video {
  width: 100%;
  max-width: 700px;
  margin-bottom: 40px;
}

.persuasion__video .video-wrapper {
  border: 1px solid rgba(155, 81, 224, 0.2);
  box-shadow: var(--glow);
}

.persuasion__video .video-placeholder span {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.persuasion__carousel {
  width: 100%;
  margin-bottom: 40px;
}

.persuasion__carousel-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-card {
  border: 1px solid rgba(155, 81, 224, 0.2);
  box-shadow: var(--glow);
  background: linear-gradient(135deg, rgba(155, 81, 224, 0.08), rgba(224, 64, 251, 0.03));
  color: var(--color-muted);
  font-size: 0.8rem;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(155, 81, 224, 0.08);
  border: 1px solid rgba(155, 81, 224, 0.25);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  max-width: 700px;
  box-shadow: var(--glow);
}

.guarantee__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.guarantee__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.guarantee__text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

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

/* ==========================================================================
   SECTION 3 - MENTORSHIP CONTENT
   ========================================================================== */

.content-section {
  padding: 60px 0;
  background:
    radial-gradient(ellipse at top left, rgba(224, 64, 251, 0.06) 0%, transparent 50%),
    var(--color-bg);
}

.module-card {
  background: rgba(155, 81, 224, 0.06);
  border: 1px solid rgba(155, 81, 224, 0.2);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--glow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.module-card:hover {
  box-shadow: var(--glow-strong);
  border-color: rgba(155, 81, 224, 0.4);
}

.module-card__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.module-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.module-card__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.modules-carousel {
  margin-bottom: 40px;
}

.modules-carousel .carousel__dot.active {
  background: var(--color-accent);
}

.ia-section {
  text-align: center;
  background: rgba(155, 81, 224, 0.06);
  border: 1px solid rgba(155, 81, 224, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 40px;
  box-shadow: var(--glow);
}

.ia-section__icon {
  margin-bottom: 16px;
  color: var(--color-secondary);
}

.ia-section__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ia-section__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.pricing {
  text-align: center;
  margin-bottom: 32px;
  padding: 32px 24px;
  background: rgba(155, 81, 224, 0.08);
  border: 1px solid rgba(155, 81, 224, 0.25);
  border-radius: 16px;
  box-shadow: var(--glow);
}

.pricing__from {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.pricing__original {
  text-decoration: line-through;
  color: var(--color-muted);
}

.pricing__to {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.pricing__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing__value {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__cash {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.content-section__cta-wrap {
  text-align: center;
}

/* ==========================================================================
   SECTION 4 - SPECIALIST
   ========================================================================== */

.specialist {
  padding: 60px 0;
  background:
    radial-gradient(ellipse at center right, rgba(155, 81, 224, 0.1) 0%, transparent 50%),
    var(--color-bg-alt);
}

.specialist__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.specialist__photo {
  width: 100%;
  max-width: 280px;
}

.specialist__img {
  border: 2px solid rgba(155, 81, 224, 0.3);
  box-shadow: var(--glow);
  color: var(--color-muted);
  font-size: 0.85rem;
}

.specialist__info {
  text-align: center;
}

.specialist__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.specialist__role {
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.specialist__bio {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.specialist__credentials {
  margin-bottom: 28px;
}

.specialist__credential {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding-left: 24px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.specialist__credential::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
}

.specialist__cta {
  display: inline-flex;
}

/* ==========================================================================
   SECTION 5 - FAQ
   ========================================================================== */

.faq {
  padding: 60px 0;
  background:
    radial-gradient(ellipse at bottom left, rgba(224, 64, 251, 0.06) 0%, transparent 50%),
    var(--color-bg);
}

.faq .accordion {
  max-width: 700px;
  margin: 0 auto 40px;
}

.faq .accordion__item {
  border-color: rgba(155, 81, 224, 0.15);
}

.faq .accordion__trigger {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.faq .accordion__icon {
  color: var(--color-accent);
}

.faq .accordion__content-inner {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.faq__cta-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq__cta-text {
  color: var(--color-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ==========================================================================
   SECTION 6 - FOOTER
   ========================================================================== */

.footer {
  padding: 40px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(155, 81, 224, 0.15);
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(157, 139, 191, 0.6);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 12px;
}

.footer__legal {
  font-size: 0.75rem;
  color: rgba(157, 139, 191, 0.5);
}

/* ==========================================================================
   RESPONSIVE - Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }

  .hero__headline {
    font-size: 2.75rem;
  }

  .hero__photo {
    width: 150px;
    height: 150px;
  }

  .hero__photo-img {
    width: 150px;
    height: 150px;
  }

  .hero__subheadline {
    font-size: 1.1rem;
  }

  .cta-btn {
    width: auto;
    font-size: 1rem;
  }

  .guarantee {
    padding: 32px;
  }

  .specialist__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .specialist__info {
    text-align: left;
  }

  .specialist__bio {
    margin-left: 0;
    margin-right: 0;
  }

  .specialist__credential {
    margin: 0;
  }
}

/* ==========================================================================
   RESPONSIVE - Desktop (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  .hero {
    padding: 80px 0 70px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero__headline {
    font-size: 3.25rem;
  }

  .hero__urgency {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .persuasion,
  .content-section,
  .specialist,
  .faq {
    padding: 80px 0;
  }

  .module-card {
    padding: 32px 28px;
  }

  .pricing {
    padding: 40px 32px;
  }

  .pricing__price {
    font-size: 1.75rem;
  }

  .pricing__value {
    font-size: 2.5rem;
  }

  .specialist__photo {
    max-width: 320px;
  }

  .specialist__name {
    font-size: 2rem;
  }
}
