/* ============================================
   Influence AI Landing Page — Clean Rebuild
   ============================================ */

/* --- FONTS (same mapping as original Tilda) --- */
@font-face {
  font-family: 'TildaFont';
  src: url('https://static.tildacdn.one/tild3735-6364-4531-b933-353738376635/Benzin-Bold.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TildaFont';
  src: url('https://static.tildacdn.one/tild3439-3962-4438-a263-663665626238/Benzin-Semibold.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TildaFont';
  src: url('https://static.tildacdn.one/tild6336-3335-4133-b565-383264313732/BebasNeue-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: none;
}

/* --- CSS VARIABLES --- */
:root {
  --bg-primary: #000000;
  --bg-page: #000000;
  --accent-green: #8fff00;
  --accent-yellow: #fff705;
  --accent-red: #9a2222;
  --text-white: #ffffff;
  --text-muted: #9a9a9a;
  --text-light: #c1c1c1;
  --card-border: #272727;
  --card-bg: #0e0e0e;
  --purple-start: rgba(57, 29, 244, 1);
  --purple-end: rgba(255, 0, 147, 1);
  --dark-purple-start: rgba(90, 0, 132, 1);
  --dark-purple-end: rgba(116, 0, 169, 1);
  --font-heading: 'TildaFont', Arial, sans-serif;
  --section-max-width: 1200px;
  --section-padding: 36px 20px;
  /* was 60px */
}

/* --- LAYOUT --- */
.section {
  background: var(--bg-primary);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section__inner {
  max-width: var(--section-max-width);
  margin: 0 auto;
  position: relative;
}

/* --- TYPOGRAPHY --- */
.heading-xl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-white);
}

.heading-lg {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  color: var(--text-white);
}

.heading-md {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
}

.heading-sm {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
}

.text-body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.text-sm {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.text-red {
  color: #ff2323;
}

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

.strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-green);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  padding: 20px 50px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(143, 255, 0, 0.3);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(143, 255, 0, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-green);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 40px;
  border-radius: 10px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--accent-green);
  color: #000;
}

/* --- BADGE / TAG --- */
.badge-purple {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-start), var(--purple-end));
  color: var(--text-white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.badge-dark-purple {
  display: inline-block;
  background: linear-gradient(135deg, var(--dark-purple-start), var(--dark-purple-end));
  color: var(--text-white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* --- CARDS --- */
.card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
}

.card--gradient {
  background: linear-gradient(135deg, rgba(14, 14, 14, 1), rgba(29, 0, 42, 1));
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  padding: 0;
  min-height: 740px;
  overflow: visible;
}

.hero .section__inner {
  position: relative;
  min-height: 740px;
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding: 0 100px;
}

/* --- HERO: Text content (left on desktop) --- */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 673px;
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 106px;
  margin-bottom: 30px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #724d26;
  border-radius: 5px;
  padding: 6px 16px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  min-height: 36px;
}

.hero__badge--spots {
  gap: 4px;
}

.hero__spots-label {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.hero__spots-value {
  font-size: inherit;
  color: inherit;
}

.hero__tagline {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.55;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero__pill {
  display: inline-block;
  margin-bottom: 16px;
}

.hero__pill-bg {
  display: inline-block;
  background: linear-gradient(102deg, rgba(57, 29, 244, 1) 0%, rgba(255, 0, 147, 1) 100%);
  border-radius: 10px;
  padding: 5px 20px;
}

.hero__pill-text {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.55;
}

.hero__subtitle {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  max-width: 630px;
}

/* --- HERO: Image + testimonials (right on desktop) --- */
.hero__visual {
  position: absolute;
  top: 24px;
  right: 0;
  width: 724px;
  height: 800px;
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__testimonials {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero__testimonial {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 14px 16px;
  max-width: 220px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
}

/* --- HERO: CTA + Timer (left on desktop, over image on mobile) --- */
.hero__cta {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #8fff00;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.55;
  min-width: 332px;
  min-height: 85px;
  padding: 10px 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.7);
}

.hero__price-old {
  position: relative;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
}

.hero__price-old::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: #ff0000;
  transform: rotate(-15deg);
}

.hero__timer-box {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero__timer-label {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #ffffff;
}

.hero__timer {
  font-size: 30px;
  font-weight: bold;
  color: #f0f0f0;
  font-family: sans-serif;
}

/* ============================================
   SECTION 2: BONUS
   ============================================ */
.bonus {
  padding: 36px 20px;
}

.bonus__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 50px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.1;
}

.bonus__visual {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.bonus__visual img {
  width: 100%;
  border-radius: 20px;
}

.bonus__overlay-badge {
  position: absolute;
  top: 30px;
  right: 20px;
}

.bonus__overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 0 0 20px 20px;
  padding: 20px 24px;
}

.bonus__overlay-text p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}

/* ============================================
   SECTION 3: STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--bg-primary);
  border-top: 2px solid var(--accent-yellow);
  padding: 12px 20px;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-cta__timer {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--accent-yellow);
}

.sticky-cta__timer-label {
  font-size: 11px;
  color: var(--text-muted);
}

.sticky-cta .btn-primary {
  font-size: 16px;
  padding: 14px 24px;
}

/* ============================================
   SECTION 4: WHAT IS IT
   ============================================ */
.what-is-it {
  padding: 50px 20px;
}

.what-is-it__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.what-is-it__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.what-is-it__text {
  flex: 1;
}

.what-is-it__text p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.what-is-it__image {
  flex: 0 0 auto;
  max-width: 500px;
}

.what-is-it__image img {
  width: 100%;
  border-radius: 12px;
}

.what-is-it__income {
  margin-top: 50px;
}

.what-is-it__income-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.what-is-it__income-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.income-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
}

.income-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.income-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.what-is-it__cta {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  color: var(--text-white);
}

/* ============================================
   SECTION 5: TARGET AUDIENCE
   ============================================ */
.audience {
  padding: 50px 20px;
}

.audience__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
}

.audience-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.audience-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.audience-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SECTION 6: ABOUT AUTHOR
   ============================================ */
.author {
  padding: 50px 20px;
}

.author .section__inner {
  display: flex;
  gap: 50px;
  align-items: center;
}

.author__photos {
  flex: 0 0 auto;
  position: relative;
  width: 420px;
}

.author__photo-main {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.author__photo-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: 12px;
  border: 3px solid var(--bg-primary);
  z-index: 2;
}

.author__info {
  flex: 1;
}

.author__label {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.author__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  margin-bottom: 12px;
}

.author__role {
  font-size: 18px;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.author__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.author__stat {
  font-size: 16px;
  color: var(--text-light);
  padding-left: 16px;
  border-left: 3px solid var(--accent-green);
}

/* Author slider */
.author__slider {
  margin-top: 40px;
}

/* ============================================
   SECTION 7: FERRARI / DREAM
   ============================================ */
.ferrari {
  background: var(--accent-red) !important;
  padding: 36px 20px;
}

.ferrari .section__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ferrari__text {
  flex: 1;
}

.ferrari__quote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.ferrari__model {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 4px;
}

.ferrari__image {
  flex: 0 0 auto;
  max-width: 550px;
}

.ferrari__image img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}

/* ============================================
   SECTION 8 & 9: IMAGE CAROUSEL (shared)
   ============================================ */
.carousel-section {
  padding: 36px 20px;
}

.carousel-section__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 16px;
}

.carousel-section__subtext {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.carousel__slide--review img {
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border: 1px solid var(--card-border);
}

.carousel__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   SECTION 10: COURSE FEATURES
   ============================================ */
.features {
  padding: 50px 20px;
}

.features__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--accent-green);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent-green);
}

.feature-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SECTION 11 & 12: CURRICULUM
   ============================================ */
.curriculum {
  padding: 36px 20px;
}

.curriculum__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}

.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.lesson-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.lesson-card__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.lesson-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
}

.lesson-card__text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.lesson-card__bonus {
  background: rgba(143, 255, 0, 0.08);
  border: 1px solid rgba(143, 255, 0, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--accent-green);
}

.lesson-card__bonus-label {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--accent-green);
}

/* ============================================
   SECTION 13: VALUE / PRICING TABLE
   ============================================ */
.pricing {
  padding: 50px 20px;
}

.pricing__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 50px;
  text-align: center;
  margin-bottom: 40px;
}

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

.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing__item {
  font-size: 16px;
  color: var(--text-light);
}

.pricing__value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-green);
}

.pricing__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 2px solid var(--accent-green);
  margin-top: 8px;
}

.pricing__total-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
}

.pricing__total-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--accent-green);
}

.pricing__offer {
  text-align: center;
  margin: 40px 0;
}

.pricing__offer-text {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing__offer-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--accent-green);
}

.pricing__offer-old {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 16px;
}

.pricing__cta {
  text-align: center;
  margin-top: 30px;
}

/* ============================================
   SECTION 14: CTA BONUSES
   ============================================ */
.cta-bonuses {
  padding: 36px 20px;
}

.cta-bonuses__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

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

/* ============================================
   SECTION 15: TREND / FOMO
   ============================================ */
.trend {
  padding: 50px 20px;
}

.trend .section__inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.trend__text {
  flex: 1;
}

.trend__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 24px;
}

.trend__body p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.trend__emoji {
  flex: 0 0 auto;
  font-size: 120px;
  line-height: 1;
}

/* ============================================
   SECTION 16: RESULTS
   ============================================ */
.results {
  padding: 50px 20px;
}

.results__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}

.results__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.5;
}

.results__item::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================
   SECTION 17: GUARANTEE
   ============================================ */
.guarantee {
  padding: 50px 20px;
}

.guarantee .section__inner {
  max-width: 800px;
  text-align: center;
}

.guarantee__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 24px;
}

.guarantee__text {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   SECTION 18: FAQ
   ============================================ */
.faq {
  padding: 50px 20px;
}

.faq__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--accent-green);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.faq__item.active .faq__icon {
  background: var(--accent-green);
  color: #000;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq__answer-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SECTION 19: SOCIAL PROOF / FOMO
   ============================================ */
.social-proof {
  padding: 50px 20px;
}

.social-proof .section__inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.social-proof__text {
  flex: 1;
}

.social-proof__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 20px;
}

.social-proof__body {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.social-proof__emoji {
  flex: 0 0 auto;
  font-size: 120px;
  line-height: 1;
}

/* ============================================
   SECTION 20: FOOTER
   ============================================ */
.footer {
  padding: 40px 20px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 4px;
}

.footer__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--accent-green);
}

.footer__copy {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS (fade in on scroll)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 40px 0;
    --section-max-width: 350px;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero .section__inner {
    min-height: auto;
    padding: 0;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__badges {
    justify-content: center;
    margin-top: 14px;
    margin-bottom: 20px;
  }

  .hero__badge {
    border-color: #9a9a9a;
    font-size: 15px;
    color: #9a9a9a;
  }

  .hero__badge--spots {
    border-color: #9a9a9a;
  }

  .hero__tagline {
    font-size: 15px;
    color: #e6e6e6;
    text-align: center;
  }

  .hero__title {
    font-size: 37px;
    line-height: 0.9;
    text-align: center;
  }

  .hero__pill-text {
    font-size: 15px;
  }

  .hero__subtitle {
    font-size: 15px;
    color: #e6e6e6;
    text-align: center;
    max-width: 100%;
  }

  /* Image becomes inline, relative */
  .hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin: 20px auto 0;
  }

  .hero__img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Testimonials overlaid on image */
  .hero__testimonials {
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    justify-content: center;
  }

  .hero__testimonial {
    font-size: 13px;
    line-height: 1.05;
    max-width: 176px;
    padding: 10px 12px;
    border-radius: 7px;
  }

  /* CTA overlaps the image */
  .hero__cta {
    position: relative;
    z-index: 4;
    margin-top: -180px;
    text-align: center;
    padding-bottom: 20px;
  }

  .hero__cta-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__btn {
    min-width: 288px;
    min-height: 70px;
    font-size: 22px;
  }

  .hero__price-old {
    font-size: 19px;
  }

  /* Timer with dark box on mobile */
  .hero__timer-box {
    flex-direction: column;
    align-items: center;
    background: #000000;
    border: 1px solid #272727;
    border-radius: 10px;
    padding: 16px 30px;
    margin-top: 16px;
    display: flex;
    width: 288px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__timer-label {
    color: #f0f0f0;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .hero__timer {
    font-size: 36px;
  }

  /* Sticky CTA — visible on mobile */
  .sticky-cta {
    display: block;
  }

  /* Bonus */
  .bonus__heading {
    font-size: 36px;
  }

  .bonus__visual {
    max-width: 350px;
  }

  /* What is it */
  .what-is-it__heading {
    font-size: 32px;
  }

  .what-is-it__content {
    flex-direction: column;
  }

  .what-is-it__image {
    max-width: 100%;
  }

  .what-is-it__income-list {
    grid-template-columns: 1fr;
  }

  /* Audience */
  .audience__heading {
    font-size: 30px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Author */
  .author .section__inner {
    flex-direction: column;
    text-align: center;
  }

  .author__photos {
    width: 280px;
  }

  .author__photo-secondary {
    width: 140px;
    bottom: -20px;
    right: -10px;
  }

  .author__name {
    font-size: 36px;
  }

  .author__stats {
    align-items: center;
  }

  .author__stat {
    text-align: left;
  }

  /* Ferrari */
  .ferrari .section__inner {
    flex-direction: column;
    text-align: center;
  }

  .ferrari__quote {
    font-size: 24px;
  }

  .ferrari__image {
    max-width: 100%;
  }

  /* Carousels */
  .carousel__slide {
    flex: 0 0 220px;
  }

  .carousel__slide img {
    height: 320px;
  }

  .carousel-section__heading {
    font-size: 30px;
  }

  /* Features */
  .features__heading {
    font-size: 30px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Curriculum */
  .curriculum__heading {
    font-size: 30px;
  }

  .curriculum__grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing__heading {
    font-size: 32px;
  }

  .pricing__offer-price {
    font-size: 36px;
  }

  /* CTA Bonuses */
  .cta-bonuses__heading {
    font-size: 26px;
  }

  /* Trend */
  .trend .section__inner {
    flex-direction: column;
  }

  .trend__heading {
    font-size: 30px;
  }

  .trend__emoji {
    font-size: 80px;
  }

  /* Results */
  .results__heading {
    font-size: 30px;
  }

  /* Guarantee */
  .guarantee .section__inner {
    max-width: 350px;
  }

  .guarantee__heading {
    font-size: 30px;
  }

  /* FAQ */
  .faq__heading {
    font-size: 30px;
  }

  .faq__question {
    font-size: 16px;
  }

  /* Social proof */
  .social-proof .section__inner {
    flex-direction: column;
    text-align: center;
  }

  .social-proof__heading {
    font-size: 30px;
  }

  .social-proof__emoji {
    font-size: 80px;
  }

  /* Generic headings */
  .heading-xl {
    font-size: 32px;
  }

  .heading-lg {
    font-size: 28px;
  }

  .heading-md {
    font-size: 22px;
  }

  /* Bottom padding for sticky CTA */
  body {
    padding-bottom: 90px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero__title {
    font-size: 26px;
  }

  .hero__timer {
    font-size: 28px;
  }

  .btn-primary {
    font-size: 18px;
    padding: 16px 32px;
    width: 100%;
  }
}