/* ==========================================================================
   VERSION 04 - "Fire Storm"
   Theme: Aggressive, urgent
   Colors: Background #0a0a0a, Accent #ff4d00, Secondary #ff8c00
   Fonts: Bebas Neue (headings) + Roboto (body)
   Feature: Cards with GRADIENT BACKGROUNDS
   ========================================================================== */

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-accent: #ff4d00;
  --color-secondary: #ff8c00;
  --color-text: #ffffff;
  --color-muted: #b0b0b0;
  --color-accent-alpha: rgba(255, 77, 0, 0.4);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --fire-gradient: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
}

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

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

.text-fire {
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.cta-btn {
  background: var(--fire-gradient);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 18px 32px;
  border-radius: 8px;
  width: 100%;
  max-width: 460px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  box-shadow: 0 0 30px rgba(255, 77, 0, 0.5), 0 0 60px rgba(255, 140, 0, 0.2);
}

/* ==========================================================================
   Urgency Banners
   ========================================================================== */

.urgency-banner {
  background: linear-gradient(90deg, rgba(255, 77, 0, 0.1), rgba(255, 140, 0, 0.05));
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding: 14px 0;
  text-align: center;
}

.urgency-banner--alt {
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.05), rgba(255, 77, 0, 0.1));
}

.urgency-banner__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.urgency-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fire-gradient);
}

.hero__alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 77, 0, 0.12);
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--color-accent);
  animation: alert-flash 2s ease-in-out infinite;
}

@keyframes alert-flash {
  0%, 100% { border-color: var(--color-accent); }
  50% { border-color: var(--color-secondary); box-shadow: 0 0 20px rgba(255, 77, 0, 0.3); }
}

.hero__alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero__urgency {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 4px;
  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: 0 0 20px rgba(255, 77, 0, 0.3);
  font-size: 0.7rem;
  color: var(--color-muted);
}

.hero__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 6px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.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-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero .countdown {
  gap: 16px;
}

.hero .countdown__block {
  min-width: 68px;
  background: rgba(255, 77, 0, 0.08);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 8px;
  padding: 10px 8px;
}

.hero .countdown__number {
  font-size: 2.5rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
  letter-spacing: 2px;
}

.hero .countdown__separator {
  color: var(--color-accent);
  font-size: 2.5rem;
  font-family: var(--font-heading);
}

.hero .countdown__label {
  color: var(--color-muted);
  font-size: 0.65rem;
}

.hero__cta {
  display: inline-flex;
  margin-bottom: 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 8px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

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

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

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

.persuasion__badge {
  display: inline-block;
  background: rgba(255, 77, 0, 0.08);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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: 2px solid rgba(255, 77, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.1);
}

.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.5rem;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-card {
  border: 1px solid rgba(255, 77, 0, 0.15);
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.05), transparent);
  color: var(--color-muted);
  font-size: 0.8rem;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.08), rgba(255, 140, 0, 0.03));
  border: 2px solid rgba(255, 77, 0, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  max-width: 700px;
}

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

.guarantee__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.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(255, 140, 0, 0.05) 0%, transparent 50%),
    var(--color-bg);
}

.module-card {
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.08) 0%, rgba(255, 77, 0, 0.02) 100%);
  border: 1px solid rgba(255, 77, 0, 0.15);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
  border-color: rgba(255, 77, 0, 0.4);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.15);
}

.module-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 8px;
  line-height: 1;
}

.module-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.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: linear-gradient(135deg, rgba(255, 77, 0, 0.06), rgba(255, 140, 0, 0.03));
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 40px;
}

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

.ia-section__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.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: linear-gradient(180deg, rgba(255, 77, 0, 0.1) 0%, rgba(255, 77, 0, 0.03) 100%);
  border: 2px solid rgba(255, 77, 0, 0.3);
  border-radius: 12px;
  position: relative;
}

.pricing__tag {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.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.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing__value {
  font-size: 2.5rem;
  color: var(--color-accent);
}

.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(255, 77, 0, 0.06) 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(255, 77, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.15);
  color: var(--color-muted);
  font-size: 0.85rem;
}

.specialist__info {
  text-align: center;
}

.specialist__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 4px;
  color: var(--color-accent);
}

.specialist__role {
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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: 10px 0;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding-left: 28px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.specialist__credential::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--color-accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.specialist__cta {
  display: inline-flex;
}

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

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

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

.faq .accordion__item {
  border-color: rgba(255, 77, 0, 0.12);
}

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

.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 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.footer {
  padding: 40px 0;
  text-align: center;
  background: #050505;
  border-top: 2px solid rgba(255, 77, 0, 0.15);
}

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

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

.footer__legal {
  font-size: 0.75rem;
  color: rgba(176, 176, 176, 0.4);
}

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

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

  .hero__headline {
    font-size: 3rem;
  }

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

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

  .hero__subheadline {
    font-size: 1.1rem;
  }

  .hero .countdown__number {
    font-size: 3rem;
  }

  .hero .countdown__separator {
    font-size: 3rem;
  }

  .hero .countdown__block {
    min-width: 80px;
    padding: 14px 12px;
  }

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

  .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: 3.25rem;
    letter-spacing: 3px;
  }

  .hero__headline {
    font-size: 3.75rem;
  }

  .hero__urgency {
    font-size: 1rem;
    letter-spacing: 6px;
  }

  .hero__name {
    font-size: 1.5rem;
    letter-spacing: 8px;
  }

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

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

  .pricing {
    padding: 40px 32px;
  }

  .pricing__price {
    font-size: 2rem;
  }

  .pricing__value {
    font-size: 3rem;
  }

  .specialist__photo {
    max-width: 320px;
  }

  .specialist__name {
    font-size: 2.5rem;
    letter-spacing: 6px;
  }

  .urgency-banner__text {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
}
