:root {
  --paper: #fff8e8;
  --paper-deep: #f4ead1;
  --ink: #183153;
  --coral: #ef6351;
  --coral-dark: #c9473a;
  --sun: #f7c948;
  --leaf: #68b984;
  --leaf-dark: #45a962;
  --white: #fffdf8;
  --line: rgba(24, 49, 83, .16);
  --shadow: 5px 5px 0 #183153;
  --radius: 18px;
  --container: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Nunito Sans", sans-serif; font-size: 16px; line-height: 1.5; overflow-x: hidden; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Bree Serif", Georgia, serif; font-weight: 400; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(1.95rem, 7.5vw, 3.4rem); margin-bottom: 12px; }
h2 { font-size: clamp(1.7rem, 6.5vw, 2.8rem); margin-bottom: 12px; }
h3 { font-size: 1.15rem; }
p { margin-bottom: 1em; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ill { width: 1em; height: 1em; display: inline-block; vertical-align: middle; fill: none; }

.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 10px 16px; background: var(--white); border: 2px solid var(--ink); font-weight: 900; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 28px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 48px 0; }
.section-number { margin-bottom: 8px; font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-dark); }
.section-number.light { color: var(--sun); }

/* ---------- Promo / urgência slim ---------- */
.promo-bar { position: relative; z-index: 30; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 38px; padding: 7px 14px; color: var(--white); background: var(--ink); text-align: center; font-size: .8rem; line-height: 1.2; }
.promo-text strong { color: var(--sun); }
.promo-dot { flex: 0 0 auto; width: 7px; height: 7px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 4px rgba(239, 99, 81, .2); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(239, 99, 81, 0); } }
.promo-day { display: inline-block; margin-left: 3px; padding: 2px 9px; color: var(--ink); background: var(--sun); border-radius: 6px; font-weight: 900; text-transform: capitalize; }

/* ---------- CTA ---------- */
.cta-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 54px; padding: 14px 20px; color: var(--white); background: var(--coral); border: 2px solid var(--ink); border-radius: 12px; box-shadow: var(--shadow); text-decoration: none; text-align: center; font-size: .85rem; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; transition: transform .15s, box-shadow .15s, background .15s; animation: ctaPulse 2.2s ease-in-out infinite; }
.cta-button:hover { background: var(--coral-dark); transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); animation: none; }
.cta-button:focus-visible, .faq-question:focus-visible { outline: 4px solid var(--sun); outline-offset: 3px; }
.cta-button--large { min-height: 58px; font-size: .9rem; }
.cta-button span { font-size: 1.3em; transition: transform .15s; }
.cta-button:hover span { transform: translateX(4px); }
@keyframes ctaPulse { 0%, 100% { box-shadow: var(--shadow); transform: none; } 50% { box-shadow: 5px 5px 0 var(--ink), 0 0 0 6px rgba(239,99,81,.18); transform: scale(1.012); } }

/* ---------- HERO ---------- */
.hero { padding: 22px 0 30px; background: radial-gradient(circle at 82% 14%, rgba(247,201,72,.2), transparent 34%), var(--paper); }
.hero-grid { display: grid; grid-template-areas: "heading" "visual" "actions"; row-gap: 16px; }
.hero-heading { grid-area: heading; text-align: center; }
.hero-visual { grid-area: visual; }
.hero-actions { grid-area: actions; }
.hero h1 em { color: var(--coral-dark); font-style: normal; padding-inline: .04em; background: linear-gradient(transparent 68%, rgba(247,201,72,.8) 68% 94%, transparent 94%); -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.hero-lead { max-width: 520px; margin: 0 auto; font-size: .98rem; line-height: 1.45; }

/* ---------- VSL custom player ---------- */
.vsl-player { position: relative; width: min(100%, 340px); margin: 0 auto; aspect-ratio: 9 / 16; border: 3px solid var(--ink); border-radius: 18px; overflow: hidden; box-shadow: 8px 9px 0 var(--ink); background: var(--ink); }
.vsl-player wistia-player { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; display: block; pointer-events: none; }

/* camada de clique cobre o player inteiro: captura toque/clique e bloqueia os controles nativos */
.vsl-click { position: absolute; inset: 0; z-index: 3; background: transparent; border: 0; cursor: pointer; }

.vsl-cover { position: absolute; inset: 0; z-index: 6; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 24px; color: var(--white); background: rgba(24,49,83,.62); backdrop-filter: blur(2px); border: 0; cursor: pointer; text-align: center; }
.vsl-cover-icon { position: relative; display: grid; place-items: center; width: 76px; height: 76px; color: var(--ink); background: var(--sun); border: 3px solid var(--ink); border-radius: 50%; box-shadow: 4px 4px 0 var(--ink); font-size: 2rem; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-6px); } }
.vsl-cover strong { position: relative; font-family: "Bree Serif", serif; font-size: 1.4rem; }
.vsl-cover small { position: relative; font-weight: 800; color: rgba(255,255,255,.82); font-size: .82rem; }
.vsl-cover.is-hidden { display: none; }

/* overlay agressivo de pausa */
.vsl-pause { position: absolute; inset: 0; z-index: 7; display: flex; align-items: center; justify-content: center; padding: 22px; background: rgba(201,71,58,.92); color: var(--white); text-align: center; }
.vsl-pause[hidden] { display: none; }
.vsl-pause-inner { animation: shakein .5s ease; }
@keyframes shakein { 0% { transform: scale(.85); opacity: 0; } 60% { transform: scale(1.04); } 100% { transform: scale(1); opacity: 1; } }
.vsl-pause-badge { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 12px; color: var(--coral-dark); background: var(--sun); border: 3px solid var(--ink); border-radius: 50%; font-size: 1.7rem; animation: jolt .7s ease-in-out infinite; }
@keyframes jolt { 0%, 100% { transform: rotate(-7deg) scale(1); } 50% { transform: rotate(7deg) scale(1.08); } }
.vsl-pause strong { display: block; font-family: "Bree Serif", serif; font-size: 1.55rem; line-height: 1.1; margin-bottom: 6px; }
.vsl-pause p { font-size: .86rem; line-height: 1.4; margin: 0 auto 16px; max-width: 260px; }
.vsl-resume { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; color: var(--ink); background: var(--white); border: 2px solid var(--ink); border-radius: 10px; box-shadow: 3px 3px 0 var(--ink); font-weight: 900; font-size: .82rem; text-transform: uppercase; cursor: pointer; animation: ctaPulse 1.6s ease-in-out infinite; }
.vsl-resume .ill { width: 1.2em; height: 1.2em; }
.vsl-restart { display: block; margin: 12px auto 0; padding: 6px 10px; color: rgba(255,255,255,.85); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); font-weight: 800; font-size: .78rem; cursor: pointer; }
.vsl-restart:hover { color: var(--white); border-bottom-color: var(--white); }

/* barra de progresso falsa */
.vsl-progress { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; height: 6px; background: rgba(255,255,255,.25); pointer-events: none; }
.vsl-progress-bar { display: block; width: 0; height: 100%; background: var(--coral); box-shadow: 0 0 8px rgba(239,99,81,.7); }

.trust-row { display: flex; flex-wrap: nowrap; justify-content: center; gap: 6px 10px; margin: 14px 0 0; padding: 0; list-style: none; font-size: .72rem; font-weight: 800; }
.trust-row li { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.trust-row span { display: inline-grid; place-items: center; width: 20px; height: 20px; flex: 0 0 auto; color: var(--white); background: var(--leaf); border: 1.5px solid var(--ink); border-radius: 50%; font-size: 11px; }

/* ---------- Carrossel arrastável (touch/mouse) ---------- */
.marquee { position: relative; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); scroll-snap-type: x proximity; }
.marquee::-webkit-scrollbar { display: none; }
.marquee.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.marquee.is-dragging * { pointer-events: none; }
.marquee-track { display: flex; gap: 14px; width: max-content; padding: 6px 14px; }
.marquee-track > * { scroll-snap-align: center; }
.swipe-hint { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 12px auto 0; font-size: .72rem; font-weight: 800; color: rgba(24,49,83,.5); }
.swipe-hint .ill { width: 1.2em; height: 1.2em; animation: nudge 1.6s ease-in-out infinite; }
.swipe-hint--light { color: rgba(255,255,255,.55); }
@keyframes nudge { 0%, 100% { transform: translateX(-3px); } 50% { transform: translateX(3px); } }

/* ---------- FEEDBACKS ---------- */
.feedback-section { background: var(--white); padding-inline: 0; }
.feedback-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; padding-inline: 14px; }
.feedback-head h2 { margin: 0; }
.rating-pill { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding: 8px 14px; background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 3px 3px 0 var(--paper-deep); }
.rating-stars { color: var(--sun); font-size: 1.05rem; line-height: 1; }
.rating-stars .ill { filter: drop-shadow(.5px .5px 0 var(--ink)); }
.rating-pill strong { font-family: "Bree Serif"; font-size: 1.2rem; }
.rating-pill small { color: rgba(24,49,83,.65); font-weight: 800; font-size: .76rem; }
.fb-card { flex: 0 0 270px; width: 270px; display: flex; flex-direction: column; padding: 20px; background: var(--paper); border: 2px solid var(--ink); border-radius: 14px 18px 12px 16px; box-shadow: 4px 5px 0 var(--paper-deep); }
.fb-card:nth-child(3n+2) { background: #dcebdd; }
.fb-card:nth-child(3n) { background: #fce5ba; }
.fb-stars { color: var(--sun); font-size: .95rem; margin-bottom: 10px; }
.fb-stars .ill { filter: drop-shadow(.5px .5px 0 var(--ink)); }
.fb-card > p { flex: 1; margin: 0 0 16px; font-size: .88rem; line-height: 1.45; }
.fb-person { display: flex; align-items: center; gap: 11px; }
.fb-avatar { position: relative; flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; background: var(--ink); color: var(--white); border: 2px solid var(--ink); border-radius: 50%; overflow: hidden; font-family: "Bree Serif"; font-size: .92rem; }
.fb-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fb-meta { display: flex; flex-direction: column; line-height: 1.2; }
.fb-meta strong { font-size: .9rem; }
.fb-meta small { color: rgba(24,49,83,.62); font-weight: 700; font-size: .76rem; }

/* ---------- O QUE SERÁ ENTREGUE ---------- */
.receive-section { background: var(--paper); }
.receive-heading { max-width: 700px; margin: 0 auto 22px; text-align: center; }
.receive-heading h2 { margin: 0; }
.receive-heading h2 em { color: var(--coral-dark); font-style: normal; }
.receive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.receive-card { padding: 16px 14px; background: var(--white); border: 2px solid var(--ink); border-radius: 12px 16px 10px 14px; box-shadow: 3px 3px 0 var(--paper-deep); transition: transform .18s, box-shadow .18s; }
.receive-card:hover { transform: translateY(-3px); box-shadow: 5px 6px 0 var(--paper-deep); }
.receive-card:nth-child(3n+2) { background: #dcebdd; }
.receive-card:nth-child(3n) { background: #fce5ba; }
.receive-card > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 11px; color: var(--white); background: var(--coral); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 2px 2px 0 var(--ink); font-size: 1.15rem; }
.receive-card h3 { margin-bottom: 4px; font-size: 1rem; }
.receive-card p { margin: 0; font-size: .76rem; line-height: 1.35; }
.receive-extras { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 12px; color: var(--white); background: var(--ink); border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; }
.receive-extras > div { display: flex; align-items: center; gap: 9px; padding: 13px 12px; border-right: 1px solid rgba(255,255,255,.18); }
.receive-extras > div:last-child { border-right: 0; }
.receive-extras > div > span { color: var(--sun); font-size: 1.25rem; }
.receive-extras p { display: flex; flex-direction: column; margin: 0; line-height: 1.2; font-size: .85rem; }
.receive-extras small { color: rgba(255,255,255,.62); font-size: .72rem; }
.receive-extras .receive-lifetime { color: var(--ink); background: var(--sun); }
.receive-extras .receive-lifetime > span, .receive-extras .receive-lifetime small { color: var(--ink); }

/* ---------- BÔNUS ---------- */
.bonus-showcase { color: var(--white); background: var(--ink); padding-inline: 0; }
.bonus-head { text-align: center; margin-bottom: 20px; padding-inline: 14px; }
.bonus-head h2 { margin: 0; }
.bonus-card { flex: 0 0 240px; width: 240px; padding: 20px; color: var(--ink); background: var(--paper); border: 3px solid var(--white); border-radius: 14px 20px 12px 16px; box-shadow: 5px 6px 0 var(--coral); }
.bonus-card:nth-child(odd) { background: var(--sun); }
.bonus-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bonus-num { display: inline-block; padding: 4px 10px; color: var(--white); background: var(--coral); border: 2px solid var(--ink); font-size: .66rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; transform: rotate(-2deg); }
.bonus-icon { display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: var(--white); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 2px 2px 0 var(--ink); font-size: 1.25rem; }
.bonus-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.bonus-card p { margin: 0; font-size: .82rem; line-height: 1.4; }

/* ---------- PREÇOS ---------- */
.offer-section { background: radial-gradient(circle at 50% 12%, rgba(104,185,132,.16), transparent 42%), var(--paper); }
.offer-container { width: min(calc(100% - 28px), 560px); }
.offer-card { position: relative; padding: 34px 20px 24px; color: var(--ink); background: var(--white); border: 3px solid var(--leaf); border-radius: 22px; box-shadow: 7px 8px 0 var(--ink); text-align: center; }
.offer-ribbon { position: absolute; left: 50%; top: -14px; padding: 6px 16px; color: var(--white); background: var(--ink); border: 2px solid var(--paper); font-size: .64rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; transform: translateX(-50%) rotate(-1deg); white-space: nowrap; }
.offer-card h2 { margin: 4px auto 12px; font-size: 1.55rem; }
.price-line { margin: 0; font-size: .82rem; font-weight: 800; }
.price-line s { color: var(--coral); }
.price { display: flex; align-items: flex-start; justify-content: center; margin: 2px 0 4px; font-family: "Bree Serif"; line-height: 1; }
.price small { margin-top: 13px; font-size: 1.15rem; }
.price strong { display: inline-flex; align-items: baseline; color: var(--leaf-dark); font-size: 4.4rem; letter-spacing: -.05em; }
.price strong span { margin-left: .03em; font-size: .38em; letter-spacing: 0; }
.payment { margin: 0 0 16px; font-size: .68rem; font-weight: 900; text-transform: uppercase; color: rgba(24,49,83,.7); }
.offer-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 10px; margin: 0 0 20px; padding: 0; list-style: none; text-align: left; font-size: .76rem; font-weight: 800; }
.offer-checklist li { position: relative; display: flex; align-items: center; gap: 7px; padding-left: 26px; min-height: 24px; line-height: 1.2; }
.offer-checklist li::before { content: ""; position: absolute; left: 0; flex: 0 0 auto; width: 20px; height: 20px; background: var(--leaf); border: 1.5px solid var(--ink); border-radius: 50%; }
.offer-checklist li::after { content: ""; position: absolute; left: 5px; width: 10px; height: 10px; background: var(--white); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.cta-button--offer { width: 100%; }
.secure-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; }
.pay-chip { display: inline-grid; place-items: center; padding: 5px 7px; background: var(--white); border: 1.5px solid var(--line); border-radius: 8px; box-shadow: 0 1px 3px rgba(24,49,83,.1); }
.pay-logo { width: 48px; height: 22px; display: block; }
.offer-secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 12px 0 0; font-size: .72rem; font-weight: 800; color: var(--leaf-dark); }
.offer-secure-note .ill { width: 1.15em; height: 1.15em; }

/* ---------- GARANTIA ---------- */
.guarantee-section { background: var(--white); }
.guarantee-card { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 18px; padding: 28px 22px; background: var(--paper); border: 3px solid var(--ink); border-radius: 20px; box-shadow: 6px 7px 0 var(--leaf); text-align: center; }
.guarantee-seal { position: relative; width: 116px; flex: 0 0 auto; }
.seal-svg { width: 100%; height: auto; display: block; filter: drop-shadow(4px 5px 0 rgba(24,49,83,.25)); animation: sealpop .6s ease both; }
@keyframes sealpop { from { transform: scale(.7) rotate(-12deg); opacity: 0; } to { transform: none; opacity: 1; } }
.guarantee-copy h2 { font-size: 1.55rem; }
.guarantee-copy > p { max-width: 520px; margin: 0 auto; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
.faq-intro h2 { margin-bottom: 8px; }
.faq-note { display: flex; gap: 10px; align-items: center; margin-top: 14px; padding: 13px; background: var(--white); border: 2px dashed var(--line); font-size: .78rem; font-weight: 700; }
.faq-note span { display: grid; place-items: center; min-width: 30px; height: 30px; color: var(--white); background: var(--leaf-dark); border-radius: 50%; font-size: 1rem; }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 14px; width: 100%; min-height: 58px; padding: 14px 4px; color: var(--ink); background: transparent; border: 0; text-align: left; font: 800 .96rem/1.3 "Nunito Sans", sans-serif; cursor: pointer; }
.faq-question span { flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px; background: var(--white); border: 2px solid var(--ink); border-radius: 50%; transition: transform .2s, background .2s; }
.faq-question[aria-expanded="true"] span { background: var(--sun); transform: rotate(45deg); }
.faq-answer { padding: 0 6px 16px 4px; color: rgba(24,49,83,.82); font-size: .88rem; }
.faq-answer p { margin: 0; }

/* ---------- RODAPÉ profissional ---------- */
footer { padding: 28px 0; color: rgba(255,255,255,.72); background: #102540; font-size: .78rem; }
.footer-top { display: flex; flex-direction: column; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: var(--sun); border-radius: 50% 45% 55% 40%; font-size: 1.4rem; flex: 0 0 auto; }
.footer-brand strong { display: block; color: var(--white); font-size: 1rem; }
.footer-brand small { color: rgba(255,255,255,.6); font-size: .76rem; }
.footer-secure { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-bottom { display: flex; flex-direction: column; gap: 10px; padding: 18px 0; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: rgba(255,255,255,.8); text-decoration: underline; }
.disclaimer { margin: 0; line-height: 1.5; color: rgba(255,255,255,.5); font-size: .72rem; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.8,.24,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===================== TABLET ===================== */
@media (min-width: 700px) {
  .section { padding: 64px 0; }
  .receive-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .feedback-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .rating-pill { align-self: center; }
  .guarantee-card { grid-template-columns: 120px 1fr; justify-items: start; gap: 30px; padding: 36px 36px; text-align: left; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .faq-intro { position: sticky; top: 24px; }
  .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===================== DESKTOP ===================== */
@media (min-width: 981px) {
  body { font-size: 17px; }
  .section { padding: 86px 0; }
  .hero { padding: 34px 0 70px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; grid-template-areas: "heading visual" "actions visual"; column-gap: 50px; align-items: center; }
  .hero-visual { align-self: center; }
  .hero-heading, .hero-actions { text-align: left; }
  .hero-heading { align-self: end; }
  .hero-actions { align-self: start; }
  .hero-lead { margin: 0; }
  .trust-row { justify-content: flex-start; }
  .vsl-player { width: min(100%, 330px); }
  .offer-card { padding: 46px 44px 30px; }
  .offer-card h2 { font-size: 2rem; }
  .price strong { font-size: 5.6rem; }
  .offer-checklist { font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
}
