:root {
  --gold: #ff4fc8;
  --gold-light: #ffd4f7;
  --gold-dim: #8e2f74;
  --cream: #ffe8f7;
  --dark: #070508;
  --dark2: #0d0910;
  --dark3: #160d19;
  --dark4: #25142a;
  --text: #f0d9ea;
  --muted: #a37d97;
  --red: #ff6ca7;
  --green: #e7a3ff;
  --accent-soft: rgba(255, 79, 200, 0.12);
  --accent-line: rgba(255, 117, 217, 0.24);
  --accent-glow: rgba(255, 79, 200, 0.32);
  --card-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 79, 200, 0.18), transparent 24%),
    radial-gradient(circle at 82% 26%, rgba(255, 186, 240, 0.08), transparent 18%),
    radial-gradient(circle at 16% 72%, rgba(206, 120, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #0a060c 0%, #050407 52%, #020203 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

::selection {
  background: rgba(255, 79, 200, 0.28);
  color: var(--cream);
}

.wrapper { max-width: 680px; margin: 0 auto; padding: 0 20px; }

/* ── PROGRESS BAR ── */
#progress-bar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255, 79, 200, 0.12);
  z-index: 100;
}
#progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  width: 0%;
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
}

/* ── SECTIONS ── */
.section {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 64px 0;
  position: relative;
}
.section.tight { min-height: auto; padding: 56px 0; }

/* DECORATIVE LINES */
.section::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
  box-shadow: 0 0 18px rgba(255, 79, 200, 0.14);
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(255, 79, 200, 0.06);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--accent-line);
  background: rgba(255, 79, 200, 0.06);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 220, 248, 0.04), 0 0 20px rgba(255, 79, 200, 0.08);
}

.gold { color: var(--gold); }
.cream { color: var(--cream); }
.muted { color: var(--muted); }
.italic { font-style: italic; }
.section-copy {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 640px;
}
.center-copy {
  margin: 14px auto 0;
  text-align: center;
}

/* ── BLOCK 1: HEADLINE ── */
#block-headline {
  background: var(--dark);
  text-align: center;
  padding: 96px 0 72px;
}
#block-headline.hero-section {
  min-height: min(88vh, 760px);
}
.hero-wrap {
  width: 100%;
}
#block-headline .eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 600;
}
#block-headline h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--cream);
  margin-bottom: 28px;
  text-shadow:
    0 0 12px rgba(255, 79, 200, 0.14),
    0 0 34px rgba(255, 79, 200, 0.08);
}
#block-headline h1 em {
  color: var(--gold);
  font-style: italic;
}
#block-headline .sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
}
.hero-point {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 117, 217, 0.18);
  background: rgba(255, 79, 200, 0.07);
  color: var(--cream);
  font-size: 0.84rem;
  line-height: 1;
}
.hero-cta {
  max-width: 340px;
  margin: 0 auto;
}
.hero-arrow {
  width: 54px;
  height: 78px;
  margin: 8px auto 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  text-decoration: none;
  animation: floatArrow 1.7s ease-in-out infinite;
}
.hero-arrow-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 79, 200, 0.1), rgba(255, 212, 247, 0.95));
  box-shadow: 0 0 18px rgba(255, 79, 200, 0.22);
}
.hero-arrow-icon {
  color: var(--gold-light);
  font-size: 1.6rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 79, 200, 0.35);
}
@keyframes floatArrow {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(8px); opacity: 1; }
}
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
  box-shadow: 0 0 18px rgba(255, 79, 200, 0.4);
}

/* ── BLOCK 2: DOR ── */
#block-dor { background: var(--dark2); }
#block-dor h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 28px;
}
.pain-list { list-style: none; margin: 28px 0; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 117, 217, 0.1);
  font-size: 0.97rem;
}
.pain-list li:last-child { border-bottom: none; }
.pain-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 108, 167, 0.14);
  border: 1px solid rgba(255, 108, 167, 0.34);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.callout-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(22, 13, 25, 0.94);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
  font-size: 0.95rem;
  box-shadow: var(--card-shadow);
}
.callout-box strong { color: var(--gold); }
.social-callout { text-align: center; }
.social-cta {
  max-width: 340px;
  margin: 0 auto;
}

/* ── QUIZ ── */
#block-quiz { background: var(--dark); }
.quiz-header { text-align: center; margin-bottom: 48px; }
.quiz-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--cream);
  margin-top: 12px;
}

.question-block {
  display: none;
  animation: fadeUp 0.4s ease both;
}
.question-block.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.q-number {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
  font-weight: 600;
}
.q-text {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--cream);
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
  line-height: 1.35;
}

.options { display: flex; flex-direction: column; gap: 12px; }

.option-btn {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(22, 13, 25, 0.96);
  border: 1px solid var(--accent-line);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.option-btn:hover {
  border-color: var(--gold);
  background: var(--dark4);
  color: var(--cream);
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(255, 79, 200, 0.12);
}
.option-btn.selected {
  border-color: var(--gold);
  background: rgba(255, 79, 200, 0.12);
  color: var(--cream);
  box-shadow: 0 0 0 1px rgba(255, 160, 232, 0.15), 0 0 26px rgba(255, 79, 200, 0.12);
}
.option-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.option-btn.selected::before { opacity: 1; }

.microcopy {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(22, 13, 25, 0.96);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  color: var(--text);
  animation: fadeUp 0.3s ease both;
  box-shadow: var(--card-shadow);
}
.microcopy.show { display: block; }
.microcopy strong { color: var(--gold); }

.next-btn {
  display: none;
  margin-top: 24px;
  background: linear-gradient(135deg, #3c1736, #7e2966 45%, #ff4fc8 100%);
  color: var(--cream);
  border: 1px solid rgba(255, 183, 239, 0.35);
  padding: 15px 32px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 79, 200, 0.24);
}
.next-btn.show { display: block; }

/* QUIZ PROGRESS DOTS */
.quiz-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark4);
  border: 1px solid rgba(255, 117, 217, 0.38);
  transition: all 0.3s ease;
}
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); box-shadow: 0 0 16px rgba(255, 79, 200, 0.6); }
.dot.done { background: var(--gold-dim); border-color: var(--gold-dim); }

/* ── BLOCK 6: QUEBRA DE CRENÇA ── */
#block-insight { background: var(--dark2); text-align: center; }
#block-insight h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--cream);
  margin: 16px 0 24px;
}
.big-stat {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 16px 0 8px;
  text-shadow: 0 0 22px rgba(255, 79, 200, 0.2);
}
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
  text-align: left;
}
.insight-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.insight-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(22, 13, 25, 0.96);
  border: 1px solid rgba(255, 117, 217, 0.14);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}
.insight-card .card-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.insight-card .card-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 700;
}
.insight-card .card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 420px) { .insight-grid { grid-template-columns: 1fr; } }

/* ── BLOCK 7: PROVA SOCIAL ── */
#block-social { background: var(--dark); }
#block-social h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--cream);
  margin: 12px 0 8px;
}
.social-intro {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 36px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.testimonials .testi-card:last-child {
  grid-column: 1 / -1;
}

.photo-slot {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255, 196, 242, 0.28);
  background:
    radial-gradient(circle at top, rgba(255, 79, 200, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.photo-slot span {
  max-width: 120px;
  font-size: 0.76rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: inherit;
}
.photo-slot-avatar {
  width: 82px;
  min-width: 82px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  justify-self: center;
  box-shadow:
    0 0 0 2px rgba(255, 196, 242, 0.16),
    0 0 26px rgba(255, 79, 200, 0.14);
}
.photo-slot-portrait {
  width: 100%;
  min-height: 320px;
}
.expert-photo img {
  object-position: center 18%;
}

.testi-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(22, 13, 25, 0.96);
  border: 1px solid rgba(255, 117, 217, 0.14);
  border-radius: 10px;
  padding: 24px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  position: relative;
  box-shadow: var(--card-shadow);
}
.testi-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -10px;
  right: 18px;
  line-height: 1;
}
.testi-content {
  min-width: 0;
}
.before-after {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.ba-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.ba-before { background: rgba(255, 108, 167, 0.14); color: #ff9bc1; border: 1px solid rgba(255, 108, 167, 0.25); }
.ba-after { background: rgba(231, 163, 255, 0.14); color: #f1b7ff; border: 1px solid rgba(231, 163, 255, 0.25); }
.testi-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.testi-handle {
  font-size: 12px;
  color: var(--gold-dim);
  font-weight: 600;
  letter-spacing: 0.04em;
}

#block-expert { background: var(--dark2); }
.expert-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.expert-copy h2 {
  margin: 6px 0 18px;
}
.expert-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.expert-list li {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 117, 217, 0.14);
  background: rgba(255, 79, 200, 0.05);
  color: var(--cream);
}
.expert-note {
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 117, 217, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── BLOCK 8: IMPACTO ── */
#block-impacto { background: var(--dark2); }
.impact-hero {
  text-align: center;
  padding: 40px 0;
}
.impact-hero h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--cream);
  margin-bottom: 12px;
}
.math-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(10, 7, 12, 0.96);
  border: 1px solid rgba(255, 117, 217, 0.18);
  border-radius: 10px;
  padding: 28px 24px;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--card-shadow);
}
.math-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.math-row .op {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-dim);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.math-row .val { color: var(--cream); font-weight: 600; }
.math-row .desc { color: var(--muted); font-size: 0.85rem; }
.math-divider { height: 1px; background: rgba(255, 117, 217, 0.12); }
.math-total {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.math-total .val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 0 16px rgba(255, 79, 200, 0.18);
}
.math-total .label { color: var(--text); font-size: 0.9rem; }
.confronto {
  background: rgba(255, 79, 200, 0.07);
  border: 1px solid rgba(255, 117, 217, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}
.confronto em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ── BLOCK 9: OFERTA ── */
#block-oferta {
  background: var(--dark);
}
.oferta-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(22, 13, 25, 0.98);
  border: 1px solid rgba(255, 117, 217, 0.24);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42), 0 0 36px rgba(255, 79, 200, 0.08);
}
.oferta-header {
  background:
    radial-gradient(circle at top center, rgba(255, 79, 200, 0.18), transparent 48%),
    linear-gradient(135deg, #170a16, #2b1030 60%, #130814);
  padding: 32px 28px;
  border-bottom: 1px solid rgba(255, 117, 217, 0.18);
  text-align: center;
}
.oferta-header h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--cream);
  margin-bottom: 6px;
}
.oferta-header .tagline {
  font-size: 0.85rem;
  color: var(--muted);
}
.oferta-body { padding: 28px; }
.price-block { text-align: center; margin: 20px 0 28px; }
.price-or { font-size: 0.8rem; color: var(--muted); margin: 4px 0; }
.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-main sup { font-size: 1.2rem; vertical-align: super; }
.price-installment { font-size: 0.9rem; color: var(--muted); margin-top: 6px; }
.price-installment strong { color: var(--text); }

.offer-includes {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.offer-includes li {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 117, 217, 0.12);
  background: rgba(255, 79, 200, 0.05);
  color: var(--cream);
}
.offer-present-title {
  margin: 18px 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.bonus-list { list-style: none; margin: 20px 0; }
.bonus-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 117, 217, 0.08);
  align-items: flex-start;
}
.bonus-list li:last-child { border-bottom: none; }
.bonus-icon {
  width: 32px; height: 32px;
  background: rgba(255, 79, 200, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 117, 217, 0.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.bonus-info .bonus-name { font-weight: 600; color: var(--cream); font-size: 0.93rem; }
.bonus-info .bonus-desc { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }
.bonus-info .bonus-val { font-size: 0.8rem; color: var(--gold); margin-top: 3px; font-weight: 600; }

.urgency-strip {
  background: rgba(255, 108, 167, 0.08);
  border: 1px solid rgba(255, 108, 167, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #ff9ac2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

/* ── CTA BUTTON ── */
.cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #311229, #6b2256 46%, #ff4fc8 100%);
  color: var(--cream);
  border: 1px solid rgba(255, 196, 242, 0.36);
  padding: 20px 32px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 30px rgba(255, 79, 200, 0.18);
  text-shadow: 0 0 14px rgba(255, 218, 247, 0.18);
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.cta-btn:hover::after { transform: translateX(100%); }
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 36px rgba(255, 79, 200, 0.28),
    0 0 24px rgba(255, 79, 200, 0.16);
}
.offer-cta {
  background: linear-gradient(135deg, #1baf1b 0%, #57e957 100%);
  border-color: rgba(191, 255, 191, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 30px rgba(27, 175, 27, 0.24),
    0 0 24px rgba(87, 233, 87, 0.16);
  text-shadow: 0 0 14px rgba(8, 54, 8, 0.18);
}
.offer-cta:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 36px rgba(27, 175, 27, 0.32),
    0 0 28px rgba(87, 233, 87, 0.24);
}
.cta-sub {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ── BLOCK 10: CTA FINAL ── */
#block-cta {
  background: var(--dark2);
  text-align: center;
  padding: 80px 0 100px;
}
#block-cta h2 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: var(--cream);
  margin: 16px 0 28px;
}
#block-cta h2 em { color: var(--gold); font-style: normal; }
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
  text-align: left;
}
@media (max-width: 400px) { .choice-grid { grid-template-columns: 1fr; } }
.choice-card {
  border-radius: 10px;
  padding: 20px;
  font-size: 0.85rem;
  line-height: 1.65;
}
.choice-bad {
  background: rgba(255, 108, 167, 0.06);
  border: 1px solid rgba(255, 108, 167, 0.2);
  color: #ef9ec0;
}
.choice-good {
  background: rgba(231, 163, 255, 0.07);
  border: 1px solid rgba(231, 163, 255, 0.24);
  color: #efb9ff;
}
.choice-card .choice-label {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
}
.final-phrase {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text);
  margin: 28px 0 36px;
  font-style: italic;
  line-height: 1.5;
}
.final-phrase strong { color: var(--gold); font-style: normal; }

/* FOOTER */
footer {
  padding: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 117, 217, 0.08);
}

/* HIDDEN BLOCKS */
.hidden { display: none !important; }

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  #block-headline.hero-section {
    min-height: auto;
  }

  .testi-card,
  .expert-layout,
  .insight-grid-compact {
    grid-template-columns: 1fr;
  }

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

  .photo-slot-avatar {
    width: 82px;
    min-width: 82px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    margin: 0 auto;
  }

  .photo-slot-portrait {
    min-height: 260px;
  }
}
