/* ════════════════════════════════════════════════
   DESAFIO O ALQUIMISTA — Página de Vendas (recriada)
   Identidade preservada · modernizada com profundidade e movimento
   ════════════════════════════════════════════════ */

:root {
  --cream: #FAFAF6;
  --cream-2: #F4F0EB;
  --cream-3: #EDF4EE;
  --cream-4: #E7F0E8;
  --green: #2B4739;
  --green-deep: #1E3328;
  --green-mid: #4A7A58;
  --green-light: #C8DFC9;
  --green-pale: #EDF4EE;
  --terracotta: #C4533A;
  --terracotta-2: #A8402A;
  --terracotta-pale: #FBF0EE;
  --gold: #F6D938;
  --white: #FFFFFF;
  --text-dark: #1E1B16;
  --text-mid: #6B5F56;
  --text-light: #8C7B70;
  --border: #E2EBE2;
  --border-dark: #2B4739;

  --shadow-sm: 0 2px 10px rgba(30,51,40,0.05);
  --shadow-md: 0 10px 34px rgba(30,51,40,0.09);
  --shadow-lg: 0 26px 70px rgba(30,51,40,0.16);
  --shadow-green: 0 24px 60px rgba(30,51,40,0.30);
  --shadow-cta: 0 12px 30px rgba(196,83,58,0.34);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

::selection { background: var(--green-light); color: var(--green-deep); }

.container { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 640px; margin: 0 auto; padding: 0 28px; }

/* ── SCROLL PROGRESS ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-mid), var(--terracotta));
  z-index: 1000;
  transition: width .08s linear;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--green-mid);
  opacity: .55;
}
.section--green .eyebrow { color: var(--green-light); }
.section--green .eyebrow::before { background: var(--green-light); }

/* ── DIVIDER ── */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── CTA BUTTON ── */
.btn-cta {
  position: relative;
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 17px 42px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-cta);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  z-index: 0;
}
.btn-cta::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
  z-index: 1;
}
.btn-cta:hover { background: var(--terracotta-2); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(196,83,58,0.42); }
.btn-cta:hover::after { left: 130%; }
.btn-cta:active { transform: translateY(-1px); }
.btn-cta--lg { font-size: 14px; padding: 19px 54px; }
.btn-cta--yellow {
  background: var(--gold);
  color: #2d2d2d;
  box-shadow: 0 12px 30px rgba(246,217,56,0.40);
}
.btn-cta--yellow:hover { background: #ecd02a; box-shadow: 0 18px 42px rgba(246,217,56,0.5); }

.cta-sub { font-size: 11px; color: var(--text-light); margin-top: 12px; letter-spacing: .04em; }

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 50% -10%, #34543f 0%, var(--green) 45%, var(--green-deep) 100%);
  padding: 88px 0 0;
  text-align: center;
  overflow: hidden;
}
/* animated glow orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
}
.hero__orb--1 { width: 420px; height: 420px; background: rgba(74,122,88,.55); top: -120px; left: -80px; animation: float1 14s var(--ease-soft) infinite; }
.hero__orb--2 { width: 360px; height: 360px; background: rgba(196,83,58,.22); bottom: -60px; right: -60px; animation: float2 17s var(--ease-soft) infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,40px) scale(1.12); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,-30px) scale(1.08); } }

/* fine grain noise grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.hero .container, .hero-video-wrap, .hero__sub-wrap { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 30px;
  padding: 7px 18px;
  border: 1px solid rgba(200,223,201,.25);
  border-radius: 100px;
  background: rgba(200,223,201,.06);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(33px, 5.2vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--green-light), #9fc7a4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* hero stagger reveal */
.hero h1 .line { display: block; opacity: 0; transform: translateY(28px); }
.hero.loaded h1 .line { animation: lineUp .9s var(--ease) forwards; }
.hero.loaded h1 .line:nth-child(1) { animation-delay: .15s; }
.hero.loaded h1 .line:nth-child(2) { animation-delay: .30s; }
.hero.loaded h1 .line:nth-child(3) { animation-delay: .45s; }
@keyframes lineUp { to { opacity: 1; transform: translateY(0); } }
.hero.loaded .hero__eyebrow { animation: fadeIn .8s var(--ease) both; }

.hero-video-wrap { max-width: 860px; margin: 0 auto; padding: 0 28px; }

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-green);
  border: 1px solid rgba(200,223,201,.18);
  opacity: 0;
  transform: translateY(36px) scale(.98);
}
.hero.loaded .video-container { animation: videoIn 1s var(--ease) .55s forwards; }
@keyframes videoIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.hero__sub-wrap {
  background: var(--cream-3);
  padding: 44px 28px;
  margin-top: 56px;
}
.hero__sub {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--green);
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
}

/* ════════════ SECTIONS ════════════ */
.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section--cream3 { background: var(--cream-3); }
.section--green {
  background: radial-gradient(120% 120% at 50% 0%, #34543f, var(--green) 60%, var(--green-deep));
  color: var(--cream);
}

.section__title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(27px, 3.9vw, 43px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 22px;
  color: var(--text-dark);
  letter-spacing: -.01em;
}
.section--green .section__title { color: var(--cream); }
.section__title em { color: var(--green-mid); font-style: normal; }
.section--green .section__title em { color: var(--green-light); }

.section__lead {
  font-size: 15.5px;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.85;
}

/* ════════════ PAIN LIST ════════════ */
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.pain-list li:hover { transform: translateX(8px); box-shadow: var(--shadow-md); border-left-color: var(--terracotta); }
.pain-list li::before { content: "→"; color: var(--green-mid); font-weight: 700; flex-shrink: 0; margin-top: 1px; transition: transform .35s var(--ease); }
.pain-list li:hover::before { transform: translateX(3px); color: var(--terracotta); }

/* ════════════ CALLOUT ════════════ */
.callout {
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 28px 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.callout p { font-size: 15px; line-height: 1.85; color: var(--text-mid); }
.callout strong { color: var(--text-dark); }

/* ════════════ STEPS ════════════ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 54px;
  height: 54px;
  background: transparent;
  border: 1.5px solid rgba(74,122,88,.35);
  color: var(--green-mid);
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .4s var(--ease), color .4s, border-color .4s, transform .4s var(--ease);
}
.step:hover .step__num { background: var(--green); color: var(--cream); border-color: var(--green); transform: scale(1.06); }
.step__content h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18.5px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text-dark);
}
.step__content p { color: var(--text-mid); font-size: 14.5px; line-height: 1.78; }

/* ════════════ WEEKS ════════════ */
.weeks { display: flex; flex-direction: column; gap: 16px; }
.week-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.week-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.week-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 30px;
  background: linear-gradient(110deg, var(--green), #34543f);
  position: relative;
  overflow: hidden;
}
.week-card__header::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,223,201,.16), transparent 70%);
  pointer-events: none;
}
.week-card__badge {
  color: rgba(200,223,201,.75);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.week-card__title {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
}
.week-card__body { padding: 24px 30px; }
.week-card__desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.72; margin-bottom: 18px; }
.day-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.day-pill {
  background: var(--cream-3);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.day-pill:hover { background: var(--green); color: var(--cream); transform: translateY(-2px); }

/* ════════════ BONUSES ════════════ */
.bonuses { display: flex; flex-direction: column; gap: 16px; }
.bonus-card {
  display: flex;
  background: var(--white);
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bonus-card__num {
  width: 64px;
  background: linear-gradient(160deg, var(--green), var(--green-deep));
  color: rgba(200,223,201,.55);
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 26px;
  flex-shrink: 0;
}
.bonus-card__meta { flex: 1; padding: 26px 30px; }
.bonus-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 9px;
}
.bonus-card__title {
  font-family: 'Libre Baskerville', serif;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 11px;
}
.bonus-card__desc { font-size: 14.5px; color: var(--text-mid); line-height: 1.78; }
.bonus-card__value { font-size: 12px; color: var(--terracotta); font-weight: 600; margin-top: 12px; text-transform: uppercase; letter-spacing: .06em; }
.bonus-card__value s { color: var(--text-light); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ════════════ COMPARISON ════════════ */
.comparison { width: 100%; border-collapse: collapse; box-shadow: var(--shadow-md); border-radius: 12px; overflow: hidden; }
.comparison thead tr { background: linear-gradient(110deg, var(--green), #34543f); }
.comparison thead th { color: #fff; padding: 16px 20px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
.comparison thead th:not(:first-child) { text-align: center; }
.comparison tbody tr { border-bottom: 1px solid var(--border); background: var(--white); transition: background .3s; }
.comparison tbody tr:nth-child(even) { background: var(--cream-3); }
.comparison tbody tr:hover { background: var(--cream-4); }
.comparison td { padding: 14px 20px; font-size: 14px; color: var(--text-mid); }
.comparison td:not(:first-child) { text-align: center; }
.check { color: var(--green-mid); font-size: 17px; font-weight: 700; }
.cross { color: #CC4444; font-size: 17px; }

/* ════════════ FOR WHO ════════════ */
.for-who { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .for-who { grid-template-columns: 1fr; } }
.for-card { padding: 30px; border: 1px solid; border-radius: 14px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.for-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.for-card--yes { background: var(--cream-3); border-color: var(--green-light); }
.for-card--no { background: var(--cream-2); border-color: var(--border); }
.for-card__title { font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.for-card--yes .for-card__title { color: var(--green); }
.for-card--no .for-card__title { color: var(--text-mid); }
.for-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.for-card li { font-size: 14px; line-height: 1.55; display: flex; gap: 10px; align-items: flex-start; color: var(--text-mid); }
.for-card--yes li::before { content: "✓"; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.for-card--no li::before { content: "✗"; color: var(--text-light); font-weight: 700; flex-shrink: 0; }

/* ════════════ PRICING ════════════ */
.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 48px;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-mid), var(--terracotta), var(--gold));
}
.pricing-card__label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 9px; }
.pricing-card__title { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 34px; }
.value-stack { list-style: none; margin-bottom: 32px; }
.value-stack li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-mid);
  text-align: left;
}
.value-stack li:last-child { border-bottom: none; }
.value-stack li span { color: var(--terracotta); font-size: 12px; font-weight: 600; letter-spacing: .04em; flex-shrink: 0; margin-left: 16px; }
.price-total { border-top: 1px solid var(--border); padding-top: 26px; margin-bottom: 30px; }
.price-total__old { font-size: 14px; color: var(--text-light); text-decoration: line-through; margin-bottom: 10px; }
.price-total__installment-lead { font-family: 'Libre Baskerville', serif; font-size: 17px; color: var(--text-mid); line-height: 1; margin-bottom: 2px; }
.price-total__main { font-family: 'Libre Baskerville', serif; font-size: 72px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 6px; }
.price-total__main sup { font-size: 26px; vertical-align: top; margin-top: 14px; margin-right: 2px; }
.price-total__main .cents { font-size: 34px; vertical-align: top; margin-top: 12px; display: inline-block; }
.price-total__installment { font-size: 13px; color: var(--text-mid); }

/* ════════════ TESTIMONIAL ════════════ */
.testimonial {
  position: relative;
  background: var(--cream-3);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 12px 12px 0;
  padding: 32px 36px;
  margin: 36px 0;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 18px;
  font-family: 'Libre Baskerville', serif;
  font-size: 90px;
  color: rgba(74,122,88,.16);
  line-height: 1;
}
.testimonial p { font-family: 'Libre Baskerville', serif; font-size: 18px; font-style: italic; color: var(--text-dark); line-height: 1.7; margin-bottom: 16px; position: relative; }
.testimonial cite { font-size: 12px; font-weight: 600; color: var(--green-mid); font-style: normal; text-transform: uppercase; letter-spacing: .08em; }

/* ════════════ GUARANTEE ════════════ */
.guarantee-box {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .guarantee-box { flex-direction: column; } }
.guarantee-icon {
  font-size: 44px;
  flex-shrink: 0;
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-3);
  border-radius: 50%;
  border: 2px solid var(--green-light);
  animation: pulse-soft 3s var(--ease-soft) infinite;
}
@keyframes pulse-soft { 0%,100% { box-shadow: 0 0 0 0 rgba(74,122,88,.22); } 50% { box-shadow: 0 0 0 14px rgba(74,122,88,0); } }
.guarantee-box h3 { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.guarantee-box p { font-size: 14.5px; color: var(--text-mid); line-height: 1.85; }

/* ════════════ FAQ ════════════ */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color .3s;
}
.faq-q:hover { color: var(--green-mid); }
.faq-q .arrow { transition: transform .35s var(--ease); flex-shrink: 0; color: var(--green-mid); font-size: 22px; line-height: 1; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-soft); }
.faq-item.open .faq-a { max-height: 460px; }
.faq-a-inner { padding: 0 0 22px; font-size: 14.5px; color: var(--text-mid); line-height: 1.85; }

/* ════════════ STAT ROW ════════════ */
.stat-row { display: flex; border: 1px solid var(--border); background: var(--white); margin: 36px 0; box-shadow: var(--shadow-sm); border-radius: 14px; overflow: hidden; }
.stat-item { flex: 1; padding: 30px 20px; text-align: center; border-right: 1px solid var(--border); transition: background .3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--cream-3); }
.stat-item__num { font-family: 'Libre Baskerville', serif; font-size: 38px; font-weight: 700; color: var(--green); display: block; line-height: 1; margin-bottom: 8px; }
.stat-item__label { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 540px) {
  .stat-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ════════════ AUTHOR ════════════ */
.author-section { display: flex; gap: 38px; align-items: flex-start; }
@media (max-width: 640px) { .author-section { flex-direction: column; } }
.author-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green-pale);
  border: 3px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--green-mid);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.author-name { font-family: 'Libre Baskerville', serif; font-size: 23px; font-weight: 700; margin-bottom: 5px; color: var(--text-dark); }
.author-title { font-size: 11px; color: var(--green-mid); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.author-bio { font-size: 14.5px; color: var(--text-mid); line-height: 1.85; }

/* ════════════ AI BONUS ════════════ */
.ai-wrap { display: flex; gap: 44px; align-items: center; flex-wrap: wrap; }
.ai-card {
  flex: 0 0 240px;
  background: radial-gradient(120% 120% at 50% 0%, #34543f, var(--green) 70%, var(--green-deep));
  padding: 38px 28px;
  text-align: center;
  border-radius: 18px;
  box-shadow: var(--shadow-green);
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200,223,201,.08) 1px, transparent 1px);
  background-size: 18px 18px;
}
.ai-card__emoji { font-size: 52px; margin-bottom: 14px; position: relative; animation: bob 3.5s var(--ease-soft) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.ai-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #6fd38a; margin-right: 6px; animation: blink 1.6s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ════════════ FOOTER ════════════ */
footer { background: #20201d; color: #777; text-align: center; padding: 38px 24px; font-size: 12px; line-height: 1.8; letter-spacing: .04em; }
footer a { color: #999; text-decoration: underline; }

/* ════════════ STICKY BAR ════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(110deg, var(--green-deep), var(--green));
  border-top: 1px solid rgba(200,223,201,.18);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  z-index: 999;
  transform: translateY(110%);
  transition: transform .45s var(--ease);
  box-shadow: 0 -12px 30px rgba(0,0,0,.18);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p { color: rgba(200,223,201,.85); font-size: 13px; font-weight: 500; letter-spacing: .04em; }
.sticky-bar p strong { color: #fff; font-size: 15px; }

@media (max-width: 600px) {
  .sticky-bar { flex-direction: column; gap: 10px; text-align: center; }
  .bonus-card { flex-direction: column; }
  .bonus-card__num { width: 100%; padding: 14px 30px; align-items: center; justify-content: flex-start; flex-direction: row; gap: 10px; }
  .pricing-card { padding: 32px 22px; }
  .guarantee-box { padding: 26px 22px; }
  .ai-card { flex: 1 1 100%; }
  .section { padding: 70px 0; }
}

/* ════════════ SCROLL REVEAL ════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line, .video-container { opacity: 1; transform: none; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
