/* ========== RESET & ROOT ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --primary: #10B981;
  --primary-dark: #059669;
  --primary-light: #34D399;
  --accent-orange: #F97316;
  --accent-red: #EF4444;
  --accent-yellow: #FBBF24;
  --accent-gold: #F59E0B;
  --bg-light: #F0FDF4;
  --bg-cream: #FFFBEB;
  --bg-white: #FFFFFF;
  --bg-gray: #F9FAFB;
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-light: #6B7280;
  --border-light: #E5E7EB;
  --green-glow: rgba(16, 185, 129, .3);
  --orange-glow: rgba(249, 115, 22, .25);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', 'Montserrat', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 50px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, .06);
  --shadow-glow: 0 0 30px var(--green-glow);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 80px;
  position: relative;
}

/* Side gradient borders like the reference */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 6px;
  z-index: 50;
}

body::before {
  left: 0;
  background: linear-gradient(180deg, #10B981, #3B82F6, #8B5CF6, #10B981);
}

body::after {
  right: 0;
  background: linear-gradient(180deg, #F97316, #EF4444, #EC4899, #F97316);
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px
}

.text-center {
  text-align: center
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 20px var(--green-glow)
  }

  50% {
    box-shadow: 0 0 40px rgba(16, 185, 129, .5)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes badge-pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

@keyframes countdown-tick {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-120%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1
  }

  to {
    transform: translateX(-120%);
    opacity: 0
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 4px 20px var(--green-glow)
  }

  50% {
    box-shadow: 0 8px 40px rgba(16, 185, 129, .45)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes progressBar {
  from {
    width: 0
  }

  to {
    width: var(--fill, 75%)
  }
}

/* ========== SECTION TITLES ========== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-title .highlight {
  color: var(--accent-orange);
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

/* ========== CTA BUTTON ========== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px var(--green-glow);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  animation: glow 2.5s ease-in-out infinite;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  animation: shimmer 2.5s infinite;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), #047857);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(16, 185, 129, .45);
}

/* ========== OFFER BADGE (top bar) ========== */
.offer-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  text-align: center;
}

.offer-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .85rem;
  color: var(--text-dark);
  border: 1px solid rgba(249, 115, 22, .2);
}

.offer-bar__timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-red);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: .9rem;
}

.offer-bar__timer span {
  min-width: 24px;
  text-align: center;
}

/* ========== SOCIAL PROOF NOTIFICATION ========== */
.social-proof {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 90;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 14px 40px 14px 16px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .12);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInLeft .5s ease-out forwards;
  max-width: 300px;
}

.social-proof.hide {
  animation: slideOutLeft .5s ease-in forwards;
}

.social-proof__check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-proof__check svg {
  width: 14px;
  height: 14px;
  fill: #fff
}

.social-proof__text {
  font-size: .82rem;
  line-height: 1.4
}

.social-proof__name {
  font-weight: 700;
  color: var(--text-dark)
}

.social-proof__msg {
  color: var(--text-light)
}

.social-proof__time {
  font-size: .7rem;
  color: var(--text-light);
  margin-top: 2px
}

.social-proof__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  color: var(--text-light);
}

/* ========== SECTION 1: HERO ========== */
.hero {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  color: var(--text-dark);
  padding: 30px 0 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero__titles {
  width: 100%;
}

.hero__logo {
  width: 90px;
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

.hero__logo img {
  width: 100%;
  height: auto;
  object-fit: contain
}

.hero__pre {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--text-dark);
}

.hero__pre .gold {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 2px 14px;
  border-radius: 8px;
  position: relative;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 2.8vw, 1.3rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 8px;
  font-style: italic;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(.85rem, 2vw, .95rem);
  color: var(--text-medium);
  margin-top: 16px;
  line-height: 1.8;
  font-weight: 500;
  background: var(--bg-cream);
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 1px dashed var(--accent-yellow);
}

.hero__pain {
  margin-top: 24px;
  font-size: .95rem;
  color: var(--text-medium);
  line-height: 1.9;
  text-align: center;
}

.hero__pain strong {
  color: var(--accent-orange);
  font-weight: 700
}

.hero__question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-orange);
  margin-top: 16px;
  font-style: italic;
  text-align: center;
}

.hero__cta-wrap {
  margin-top: 28px;
  text-align: center
}

.hero__meta {
  margin-top: 10px;
  font-size: .75rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.hero__meta span {
  margin: 0 6px;
  color: var(--primary)
}

.hero__info-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.hero-badge {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badge .icon {
  font-size: .95rem;
  display: flex;
  align-items: center;
}

/* ========== COUNTDOWN ========== */
.countdown {
  padding: 32px 0;
  text-align: center;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light)
}

.countdown__label {
  font-size: .75rem;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  font-weight: 700
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 380px;
  margin: 0 auto
}

.cd-box {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid rgba(249, 115, 22, .2);
  border-radius: var(--radius);
  padding: 16px 8px;
  transition: transform .3s;
}

.cd-box:hover {
  transform: scale(1.05)
}

.cd-box__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
}

.cd-box__txt {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 600
}

/* ========== SECTION 2: EMOTIONAL PAIN ========== */
.pain-section {
  background: var(--bg-white);
  padding: 40px 0;
  position: relative
}

.pain-section h2 {
  color: var(--text-dark)
}

.gold-headline {
  position: relative;
  display: inline-block
}

.gold-headline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent-orange));
  border-radius: 2px;
}

.gold-headline.visible::after {
  animation: gold-underline-grow .8s .3s ease forwards;
}

@keyframes gold-underline-grow {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

.pain__list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0
}

.pain__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 18px;
  font-size: .95rem;
  color: var(--text-medium);
  line-height: 1.7;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: transform .3s, box-shadow .3s;
}

.pain__list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card)
}

.pain__list li::before {
  content: '❌';
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px
}

.pain__imagine {
  margin-top: 10px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(16, 185, 129, .15)
}

.pain__imagine p {
  font-size: .95rem;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 16px
}

.pain__check {
  list-style: none;
  padding: 0;
  margin: 0 0 20px
}

.pain__check li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.pain__check li .ck {
  color: var(--bg-white);
  font-weight: 700;
  font-size: .8rem;
  background: var(--primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pain__shift {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary-dark);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* ========== SECTION 3: EXPERTS ========== */
.experts {
  background: var(--bg-gray);
  padding: 40px 0;
  position: relative
}

.experts::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.expert-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform .3s, box-shadow .3s;
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .1)
}

.expert-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 16px var(--green-glow);
}

.expert-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.expert-card__info {
  flex: 1
}

.expert-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.expert-card__role {
  font-size: .82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px
}

.expert-card__desc {
  font-size: .88rem;
  color: var(--text-medium);
  line-height: 1.7
}

.experts__note {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-orange);
  font-style: italic;
  margin-top: 12px;
  font-weight: 600;
}

/* ========== SECTION 4: WHAT YOU WILL LEARN ========== */
.learn {
  background: linear-gradient(135deg, var(--bg-light), #ECFDF5, var(--bg-light));
  color: var(--text-dark);
  padding: 40px 0;
}

.learn h2 {
  color: var(--text-dark)
}

.learn .section-label {
  color: var(--primary)
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px
}

.pillar {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-orange));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.pillar:hover::before {
  transform: scaleX(1)
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px var(--green-glow)
}

.pillar:nth-child(5) {
  grid-column: 1/-1;
  max-width: 340px;
  margin: 0 auto
}

.pillar__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: inline-block
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px
}

.pillar__desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6
}

/* ========== SECTION 5: OUTCOMES ========== */
.outcomes {
  background: var(--bg-white);
  padding: 40px 0
}

.outcomes h2 {
  color: var(--text-dark)
}

.outcome-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.outcome-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--bg-white);
  transition: transform .3s, box-shadow .3s;
}

.outcome-list li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card)
}

.outcome-list .ck {
  color: var(--bg-white);
  font-size: .8rem;
  font-weight: 700;
  background: var(--primary);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcomes__note {
  font-size: .92rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  line-height: 1.7
}

/* ========== SECTION 6: EVENT DETAILS ========== */
.details {
  background: var(--bg-gray);
  padding: 40px 0
}

.details-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.details-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-orange), var(--accent-yellow), var(--primary));
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light)
}

.detail-item:last-child {
  border-bottom: none
}

.detail-item__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-item__label {
  font-weight: 700;
  color: var(--text-dark);
  font-size: .88rem
}

.detail-item__value {
  font-size: .92rem;
  color: var(--text-medium);
  margin-top: 2px
}

.details__physical {
  text-align: center;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--accent-orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== SECTION 7: URGENCY ========== */
.urgency {
  background: linear-gradient(135deg, #FEF3C7, #FFEDD5);
  color: var(--text-dark);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, .15), transparent 70%);
  border-radius: 50%;
}

.urgency h2 {
  color: var(--text-dark);
  margin-bottom: 20px
}

.urgency__text {
  font-size: .95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px
}

.urgency__text strong {
  color: var(--accent-orange)
}

.urgency__competitor {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent-red);
  font-style: italic;
  margin: 20px 0;
  font-weight: 700;
}

.urgency__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap
}

.urgency__badge {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .25);
  color: var(--accent-red);
  font-weight: 700;
  font-size: .78rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  animation: badge-pulse 2s ease-in-out infinite;
}

/* ========== SECTION 8: PRICING ========== */
.pricing {
  background: var(--bg-white);
  padding: 40px 0;
  text-align: center
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
  border: 2px solid var(--primary);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-orange), var(--accent-yellow), var(--primary));
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing__amount span {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__sub {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 24px
}

.pricing__copy {
  font-size: .92rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 8px
}

.pricing__copy strong {
  color: var(--primary-dark)
}

.pricing__note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 16px
}

.pricing__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pricing__badge-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ========== SECTION 9: FAQ ========== */
.faq {
  background: var(--bg-gray);
  padding: 40px 0
}

.faq h2 {
  color: var(--text-dark)
}

.faq-list {
  max-width: 600px;
  margin: 0 auto
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow .3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-card)
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  transition: color .3s, background .3s;
  gap: 12px;
}

.faq-item__q:hover {
  color: var(--primary);
  background: var(--bg-light)
}

.faq-item__arrow {
  font-size: .8rem;
  transition: transform .3s;
  flex-shrink: 0;
  color: var(--primary);
}

.faq-item.active .faq-item__arrow {
  transform: rotate(180deg)
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .88rem;
  color: var(--text-medium);
  line-height: 1.7;
  padding: 0 20px;
}

.faq-item.active .faq-item__a {
  max-height: 200px;
  padding: 0 20px 18px
}

/* ========== SECTION 10: FINAL CTA ========== */
.final-cta {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5, #A7F3D0);
  color: var(--text-dark);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, .1), transparent 70%);
}

.final-cta h2 {
  color: var(--text-dark);
  margin-bottom: 12px
}

.final-cta__sub {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 8px
}

.final-cta__choices {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8
}

.final-cta__choices strong {
  color: var(--primary-dark)
}

/* ========== STICKY BAR ========== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border-top: 3px solid var(--primary);
  padding: 10px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sticky-bar.visible {
  transform: translateY(0)
}

.sticky-bar__info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark)
}

.sticky-bar__price {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--primary-dark)
}

.sticky-bar__original {
  font-size: .85rem;
  color: var(--text-light);
  text-decoration: line-through
}

.sticky-bar__seats {
  font-size: .65rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  background: rgba(239, 68, 68, .08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.sticky-bar__cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  box-shadow: 0 4px 16px var(--green-glow);
}

.sticky-bar__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  animation: shimmer 2.5s infinite;
}

.sticky-bar__cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), #047857);
  transform: scale(1.05);
}

/* ========== WA FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 78px;
  right: 18px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform .3s;
  animation: float 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12)
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white
}

/* ========== MEDIA PARTNER ========== */
.media-bar {
  background: var(--bg-gray);
  padding: 20px 20px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.media-bar span {
  font-size: .75rem;
  color: var(--text-light);
  margin-right: 10px;
  font-weight: 500
}

.media-bar img {
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px
}

/* ========== SEATS PROGRESS BAR ========== */
.seats-progress {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
}

.seats-progress__label {
  font-size: .78rem;
  color: var(--accent-red);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.seats-progress__bar {
  height: 10px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.seats-progress__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
  width: 0;
  animation: progressBar 2s .5s ease forwards;
  --fill: 82%;
}

.seats-progress__text {
  font-size: .7rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media(max-width:680px) {
  .expert-card {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .expert-card__photo {
    width: 90px;
    height: 90px
  }

  .pillars {
    grid-template-columns: 1fr
  }

  .pillar:nth-child(5) {
    max-width: 100%
  }

  .social-proof {
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px)
  }
}

@media(max-width:600px) {
  .hero__logo {
    width: 80px;
  }

  .hero__pre {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem)
  }

  .cd-box__num {
    font-size: 1.5rem
  }

  .pricing__amount {
    font-size: 2.4rem
  }

  .urgency__badges {
    flex-direction: column;
    align-items: center
  }

  .sticky-bar {
    gap: 12px;
    padding: 9px 14px
  }

  .sticky-bar__cta {
    padding: 10px 20px;
    font-size: .8rem
  }

  .btn-cta {
    font-size: .95rem;
    padding: 14px 28px
  }

  body::before,
  body::after {
    width: 4px
  }
}