/* ===================================================
   DESIGN SYSTEM — Pixel-Perfect Clone of BSW Reference
   =================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- TOKENS ---------- */
:root {
  /* Brand Colors (from reference) */
  --peach: #E8845C;
  --peach-soft: #F5A882;
  --peach-bg: #FDF0EB;
  --peach-light: #FEF6F2;
  --dark: #1a1a1a;
  --grey-bg: #F5F5F5;
  --grey-card: #EDEDED;
  --grey-border: #E0E0E0;
  --white: #ffffff;
  --text-dark: #222;
  --text-medium: #555;
  --text-light: #777;

  /* Gradient */
  --gradient-cta: linear-gradient(135deg, #fc6076, #ff9a44, #ef9d43, #e75516);
  --gradient-cta-hover: linear-gradient(135deg, #e75516, #ef9d43, #ff9a44, #fc6076);
  --gradient-tag: linear-gradient(180deg, #E8845C, #D4693F);

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 20px rgba(0,0,0,0.1);

  /* Spacing */
  --section-py: 80px;
  --container-max: 1200px;
  --container-px: 24px;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.container--narrow { max-width: 900px; }

/* ---------- SECTION UTILITIES ---------- */
.section { padding: var(--section-py) 0; }
.section--white { background: var(--white); }
.section--grey { background: var(--grey-bg); }
.section--peach { background: var(--peach-bg); }
.section--dark { background: #1a1a2e; color: #fff; }

.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--peach);
  margin: 0 auto 40px;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 40px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.btn--primary {
  background: var(--gradient-cta);
  background-size: 200% 200%;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(232,132,92,0.35);
}
.btn--primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,132,92,0.5);
}
.btn--large {
  padding: 18px 50px;
  font-size: 17px;
}
.btn--cta-center {
  display: block;
  max-width: 420px;
  margin: 40px auto 0;
}
.btn--sticky {
  background: var(--gradient-cta);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===================================================
   SECTION 1: HERO
   =================================================== */
.hero {
  background: var(--grey-bg);
  padding: 40px 0 60px;
  border-bottom: 4px solid var(--peach);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Hero Left */
.hero__left { padding-top: 20px; }
.hero__workshop-label {
  display: inline-block;
  background: var(--gradient-cta);
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__date-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.4;
}
.hero__title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.hero__title--accent {
  color: var(--peach);
}
.hero__subtitle {
  font-size: 16px;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 32px;
}

/* Coach intro  */
.hero__coach-intro {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.hero__host-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.hero__host-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--peach-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 3px solid var(--peach);
  overflow: hidden;
}
.hero__host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__host-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--peach);
}
.hero__host-title {
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
}

/* Stats row (star rating, training numbers) */
.hero__stats-row {
  margin-bottom: 20px;
}
.hero__stat {
  padding: 8px 0;
}
.hero__stat-text {
  font-size: 14px;
  color: var(--text-medium);
}
.hero__stat-text strong {
  color: var(--text-dark);
  font-weight: 700;
}
.hero__language {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* What Happens sidebar */
.hero__checklist {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: var(--shadow-card);
}
.hero__checklist-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.hero__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-medium);
}
.hero__checklist-item:last-child { border-bottom: none; }
.hero__checklist-item strong { color: var(--text-dark); }
.hero__checklist-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Hero Right (Form Card) */
.hero__right {}
.hero__form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.hero__form-heading {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.4;
}
.form-input {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1.5px solid var(--grey-border);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--grey-bg);
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--peach);
  background: #fff;
}
.hero__form .btn {
  width: 100%;
  margin-top: 6px;
}
.hero__form-register-text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.hero__form-bonus-text {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 16px;
}
.price-highlight {
  color: var(--peach);
  font-weight: 800;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.countdown--mid {
  margin-top: 30px;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.countdown__value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.countdown__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* ===================================================
   SECTION 2: FEATURED IN
   =================================================== */
.featured-in {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.logo-marquee {
  overflow: hidden;
  position: relative;
}
.logo-marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.logo-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  flex-shrink: 0;
  padding: 8px 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================================
   SECTION 3: WHAT HAPPENS WHEN YOU JOIN (4 Benefit Cards)
   =================================================== */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--grey-bg);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--peach-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.benefit-card__text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}
.benefit-card__text strong {
  color: var(--text-dark);
}

/* ===================================================
   SECTION 4: WHAT WILL CHANGE
   =================================================== */
.change-diagram {
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
}
.change-diagram__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.change-diagram__center {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px dashed var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-dark);
  background: var(--peach-bg);
}
.change-diagram__satellite {
  width: 160px;
  height: 110px;
  border: 2px dashed var(--peach-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.3s;
}
.change-diagram__satellite:hover {
  border-color: var(--peach);
}
.change-diagram__satellite--top {
  margin: 0 auto 30px;
}

/* ===================================================
   SECTION 5: WHO THIS HELPS
   =================================================== */
/* "Don't Join If" style - three-point diagram */
.dont-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.dont-join__label {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}
.dont-join__graphic {
  width: 180px;
  height: 180px;
  position: relative;
}
.dont-join__graphic svg {
  width: 100%;
  height: 100%;
}
.dont-join__points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.dont-join__point {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}
.dont-join__point::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* Persona cards grid */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.persona-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.persona-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.persona-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.persona-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===================================================
   SECTION 6: WHAT YOU WILL LEARN (Coach Image + Numbered Points)
   =================================================== */
.learn-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}
.learn-layout__image {
  position: relative;
}
.learn-layout__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--peach-bg), var(--grey-bg));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  overflow: hidden;
}
.learn-layout__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.learn-layout__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.learn-point {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}
.learn-point:hover {
  transform: translateX(4px);
}
.learn-point__number {
  font-size: 24px;
  font-weight: 800;
  color: var(--peach);
  flex-shrink: 0;
  min-width: 42px;
}
.learn-point__content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-medium);
}
.learn-point__content strong {
  color: var(--text-dark);
  font-weight: 700;
}
.learn-point__highlight {
  margin-top: 12px;
  font-size: 14px;
  color: var(--peach);
  font-weight: 600;
  font-style: italic;
}

/* ===================================================
   SECTION 7: BONUSES
   =================================================== */
.bonus-stack {
  text-align: center;
  margin-bottom: 20px;
}
.bonus-device-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.bonus-device {
  background: var(--grey-bg);
  border-radius: 14px;
  padding: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s;
}
.bonus-device:hover {
  transform: translateY(-3px);
}

/* ===================================================
   SECTION 8: TRUSTED BY / TESTIMONIALS
   =================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
}
.testimonial-card__stars {
  color: #FFB800;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--peach-bg);
  border: 2px solid var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--peach);
  overflow: hidden;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__name {
  font-weight: 700;
  color: var(--peach);
  font-size: 15px;
}
.testimonial-card__role {
  font-size: 12px;
  color: var(--text-light);
}

/* Feedback screenshots grid */
.feedback-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.feedback-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.feedback-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}
.feedback-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--peach);
}

/* ===================================================
   SECTION 9: MEET YOUR GUIDE (Coach + Stats)
   =================================================== */
.coach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
.coach-card__avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-bg), #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  margin-bottom: 24px;
  border: 5px solid var(--peach-bg);
  box-shadow: 0 0 0 5px rgba(232,132,92,0.15);
  overflow: hidden;
}
.coach-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-card__name {
  font-size: 32px;
  font-weight: 900;
  color: var(--peach);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.coach-card__role {
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 500;
}

/* Stats Grid - 4 columns like reference */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--grey-bg);
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.stat-card__number {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
}
.stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.stat-card__label {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.5;
  font-weight: 500;
}

/* ===================================================
   SECTION 10: MISSION
   =================================================== */
.mission-bio {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mission-bio p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 16px;
}
.mission-highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  font-style: italic;
  margin-top: 20px;
}

/* ===================================================
   SECTION 11: RECAP VALUE STACK
   =================================================== */
.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.recap-card {
  background: var(--grey-bg);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}
.recap-card:hover { transform: translateY(-2px); }
.recap-card__content {
  flex: 1;
  border: 2px dashed var(--peach-soft);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 20px;
}
.recap-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.recap-card__price {
  font-size: 14px;
  color: var(--peach);
  font-weight: 700;
}
.recap-card__tag {
  width: 52px;
  min-height: 90px;
  background: var(--gradient-tag);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Value summary */
.value-summary {
  background: var(--grey-bg);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  margin-bottom: 30px;
}
.value-summary__total {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 8px;
}
.value-summary__regular {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.value-summary__today {
  font-size: 28px;
  font-weight: 900;
  color: var(--peach);
}
.strike {
  text-decoration: line-through;
  opacity: 0.6;
}
.free-badge {
  display: inline-block;
  background: var(--gradient-cta);
  color: #fff;
  padding: 4px 20px;
  border-radius: 30px;
  font-size: 24px;
}

/* ===================================================
   SECTION 12: GUARANTEE
   =================================================== */
.guarantee-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.guarantee-card__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.guarantee-card__subtitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--peach);
  margin-bottom: 20px;
}
.guarantee-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 14px;
}
.guarantee-card a {
  color: var(--peach);
  text-decoration: underline;
}
.guarantee-card__sign {
  margin-top: 8px;
  font-style: italic;
}

/* ===================================================
   SECTION 13: FAQ
   =================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--grey-border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--peach); }
.faq-icon {
  font-size: 24px;
  color: var(--peach);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer__inner {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-medium);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--peach-bg);
  padding: 50px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer__logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.footer__content p {
  font-size: 14px;
  color: var(--text-medium);
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--peach); }

/* ===================================================
   STICKY BOTTOM BAR
   =================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(245,245,245,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #ddd;
  z-index: 1000;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sticky-bar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-bar__price-new {
  font-size: 28px;
  font-weight: 900;
  color: var(--peach);
}
.sticky-bar__price-old {
  font-size: 16px;
  color: var(--text-light);
}
.sticky-bar__timer {
  font-size: 13px;
  color: var(--text-medium);
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__left { order: 1; }
  .hero__right { order: 2; }
  .hero__title { font-size: 32px; }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-layout { grid-template-columns: 1fr; }
  .learn-layout__image { max-width: 300px; margin: 0 auto; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .feedback-screenshots { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-py: 50px;
    --container-px: 16px;
  }
  .section-title { font-size: 24px; }
  .hero { padding: 24px 0 40px; }
  .hero__title { font-size: 26px; }
  .hero__date-heading { font-size: 17px; }
  .hero__form-card { padding: 28px 20px; }
  .benefit-cards { grid-template-columns: 1fr; }
  .change-diagram__row { flex-direction: column; gap: 20px; }
  .change-diagram__satellite { width: 140px; height: 90px; font-size: 13px; }
  .change-diagram__center { width: 160px; height: 160px; font-size: 16px; }
  .persona-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: 1fr; }
  .bonus-device-showcase { grid-template-columns: 1fr; }
  .coach-card__avatar { width: 160px; height: 160px; font-size: 70px; }
  .coach-card__name { font-size: 24px; }
  .countdown__value { font-size: 24px; }
  .countdown { gap: 12px; }
  .btn--primary { padding: 14px 28px; font-size: 14px; }
  .btn--large { padding: 16px 32px; font-size: 15px; }
  .sticky-bar__inner { flex-direction: column; gap: 10px; text-align: center; }
  .sticky-bar__left { flex-direction: column; gap: 4px; }
  .dont-join { flex-direction: column; text-align: center; }
  .dont-join__label { font-size: 28px; }
  .learn-layout { grid-template-columns: 1fr; gap: 30px; }
  .learn-layout__image { max-width: 250px; }
  .hero__host-badge { flex-direction: column; text-align: center; }
  .value-summary { padding: 24px 20px; }
  .value-summary__today { font-size: 22px; }
  .free-badge { font-size: 20px; }
}

/* ===================================================
   ANIMATIONS (Scroll Reveal)
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
