:root {
  --green-950: #061712;
  --green-900: #09251b;
  --green-800: #0c3828;
  --green-700: #125238;
  --green-500: #1f8b58;
  --navy-950: #060d16;
  --navy-900: #0a1421;
  --gold: #f2c451;
  --gold-light: #ffe18c;
  --cream: #fbfaf5;
  --paper: #ffffff;
  --gray-100: #f1f4f2;
  --gray-200: #e1e7e3;
  --gray-500: #6b7770;
  --ink: #12201a;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 20px 55px rgba(4, 19, 13, .12);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { width: 100%; max-width: 100%; scroll-behavior: smooth; scroll-padding-top: 108px; overflow-x: clip; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); max-width: 100%; min-width: 0; margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: #fff; background: var(--green-700); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.topbar {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.topbar__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 14px;
  color: rgba(255,255,255,.9);
  background: rgba(2,10,8,.72);
  border-bottom: 1px solid rgba(242,196,81,.2);
  font-size: .62rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .075em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}
.topbar__urgency time { color: var(--gold-light); white-space: nowrap; }
.topbar__urgency-dot { width: 7px; height: 7px; flex: 0 0 auto; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(242,196,81,.12); animation: urgencyPulse 1.6s ease-in-out infinite; }
.topbar__inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand__logo { display: block; width: clamp(180px, 18vw, 230px); height: auto; filter: drop-shadow(0 5px 14px rgba(0,0,0,.2)); }
.brand--footer .brand__logo { width: min(280px, 82vw); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .025em;
  text-align: center;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button--gold { color: #142016; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 30px rgba(242,196,81,.25); }
.button--gold:hover { box-shadow: 0 17px 38px rgba(242,196,81,.34); }
.button--green { color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-500)); box-shadow: 0 12px 30px rgba(18,82,56,.22); }
.button--outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.34); }
.button--outline:hover { color: var(--navy-950); background: #fff; }
.button--small { min-height: 42px; padding: 10px 17px; font-size: .76rem; }
.button--wide { width: 100%; }
.eyebrow { margin: 0 0 15px; color: var(--gold); font-size: .72rem; font-weight: 900; line-height: 1.3; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow--green { color: var(--green-500); }

.hero {
  position: relative;
  min-height: 760px;
  padding: 148px 0 64px;
  color: #fff;
  background:
    linear-gradient(130deg, rgba(4,18,14,.98) 0%, rgba(7,29,21,.95) 58%, rgba(7,16,28,.98) 100%);
  overflow: hidden;
}
.hero::before, .offer__pattern {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, transparent);
  pointer-events: none;
}
.hero__glow { position: absolute; right: -12%; top: -30%; width: 760px; aspect-ratio: 1; background: radial-gradient(circle, rgba(36,146,91,.2), transparent 65%); pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; min-width: 0; gap: 48px; align-items: center; }
.hero__grid > *, .hero__copy, .hero__visual { min-width: 0; }
.hero h1 { max-width: 760px; margin: 0 0 20px; font-size: clamp(2.6rem, 12vw, 4.8rem); font-weight: 900; line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.hero h1 span, .section-heading h2 span, .guarantee h2 span, .faq h2 span, .final-cta h2 span { color: var(--gold); }
.hero__lead { max-width: 700px; margin: 0 0 15px; font-size: 1.15rem; font-weight: 700; line-height: 1.45; }
.hero__text { max-width: 690px; margin: 0 0 23px; color: rgba(255,255,255,.73); font-size: .97rem; }
.hero h1, .hero__lead, .hero__text, .eyebrow, .section-heading h2, .plan h3, .plan__price strong, .final-cta h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .12em; display: grid; place-items: center; width: 19px; height: 19px; color: #122014; background: var(--gold); border-radius: 50%; font-size: .69rem; font-weight: 900; }
.check-list--hero { margin-bottom: 27px; grid-template-columns: 1fr; color: rgba(255,255,255,.9); font-size: .91rem; font-weight: 600; }
.hero__copy .button { max-width: 540px; }
.button-note { margin: 11px 0 0; color: rgba(255,255,255,.59); font-size: .77rem; text-align: center; max-width: 540px; }
.button-note span { color: var(--gold); }
.hero__visual { min-width: 0; }
.hero__image-wrap { position: relative; min-height: 430px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: var(--navy-950); box-shadow: 0 30px 90px rgba(0,0,0,.42); overflow: hidden; }
.hero__image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(3,11,9,.82)); pointer-events: none; }
.hero__image-wrap > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: 55% center; opacity: .78; }
.product-mockup { position: absolute; z-index: 2; left: 7%; bottom: 6%; width: min(47%, 250px); aspect-ratio: .72; filter: drop-shadow(14px 19px 22px rgba(0,0,0,.55)); transform: perspective(800px) rotateY(7deg) rotateZ(-2deg); }
.product-mockup__cover { position: absolute; inset: 0 0 0 7%; display: flex; flex-direction: column; justify-content: space-between; padding: 10% 9%; color: #fff; background: linear-gradient(145deg, #0c3c2b, #071612 72%); border: 1px solid rgba(242,196,81,.65); border-radius: 5px 10px 10px 5px; overflow: hidden; }
.product-mockup__cover::after { content: ""; position: absolute; right: -25%; bottom: 12%; width: 90%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.product-mockup__spine { position: absolute; inset: 1% 91% 1% 0; background: #05110e; border-left: 1px solid rgba(242,196,81,.6); border-radius: 5px 0 0 5px; }
.product-mockup__tag { position: relative; z-index: 1; color: var(--gold); font-size: clamp(.34rem, 1.2vw, .51rem); font-weight: 900; letter-spacing: .13em; }
.product-mockup strong { position: relative; z-index: 1; font-size: clamp(.74rem, 3.4vw, 1.45rem); line-height: 1.03; letter-spacing: -.04em; }
.product-mockup strong b { display: block; color: var(--gold); font-size: 2.55em; line-height: .8; }
.product-mockup sup { font-size: .35em; }
.product-mockup__field { position: relative; z-index: 1; display: block; width: 100%; height: 25%; border: 1px solid rgba(255,255,255,.28); }
.product-mockup__field::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; border-left: 1px solid rgba(255,255,255,.28); }
.product-mockup__field::after { content: ""; position: absolute; left: 50%; top: 50%; width: 23%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transform: translate(-50%,-50%); }
.product-mockup small { position: relative; z-index: 1; color: rgba(255,255,255,.64); font-size: clamp(.3rem, 1.1vw, .47rem); font-weight: 800; line-height: 1.3; letter-spacing: .08em; }
.hero__badges { position: relative; z-index: 3; display: grid; width: calc(100% - 26px); min-width: 0; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: -28px 13px 0; }
.hero__badges span { min-width: 0; padding: 12px 5px; color: rgba(255,255,255,.72); background: rgba(9,27,21,.92); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; backdrop-filter: blur(12px); font-size: .62rem; line-height: 1.25; overflow-wrap: anywhere; text-align: center; }
.hero__badges b { display: block; color: var(--gold); font-size: 1rem; }

.trust-strip { color: #fff; background: #06110d; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-strip__grid { display: grid; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trust-strip span { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 66px; padding: 12px 8px; color: rgba(255,255,255,.73); border-right: 1px solid rgba(255,255,255,.08); font-size: .67rem; font-weight: 700; text-align: center; }
.trust-strip i { color: var(--gold); font-size: 1rem; font-style: normal; }

.section { position: relative; padding: 82px 0; }
.section--light { background: var(--gray-100); }
.section--dark { color: #fff; background: linear-gradient(145deg, var(--green-950), var(--navy-950)); }
.section-heading { max-width: 820px; margin: 0 auto 43px; text-align: center; }
.section-heading--left { max-width: 880px; margin-left: 0; text-align: left; }
.section-heading h2, .guarantee h2, .faq h2, .final-cta h2 { margin: 0 0 15px; color: var(--navy-950); font-size: clamp(2rem, 8vw, 3.25rem); font-weight: 900; line-height: 1.03; letter-spacing: -.05em; text-transform: uppercase; }
.section-heading h2 span { color: var(--green-700); }
.section-heading p:last-child { max-width: 660px; margin: 0 auto; color: var(--gray-500); }
.section-heading--left p:last-child { margin-left: 0; }
.section--dark .section-heading h2 { color: #fff; }
.section--dark .section-heading h2 span { color: var(--gold); }

.material-grid { display: grid; gap: 15px; }
.material-card { position: relative; min-height: 250px; padding: 28px 24px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(7,34,23,.055); overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.material-card:hover { transform: translateY(-5px); border-color: rgba(31,139,88,.28); box-shadow: var(--shadow); }
.material-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--green-500), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.material-card:hover::after { transform: scaleX(1); }
.card-icon { display: grid; place-items: center; width: 48px; aspect-ratio: 1; margin-bottom: 27px; color: #fff; background: var(--green-700); border-radius: 12px; font-size: 1.3rem; font-weight: 900; }
.card-number { position: absolute; right: 20px; top: 20px; color: #dfe5e1; font-size: 1.65rem; font-weight: 900; }
.material-card h3 { margin: 0 0 9px; font-size: 1.12rem; line-height: 1.25; }
.material-card p { margin: 0; color: var(--gray-500); font-size: .86rem; }
.highlight-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; margin-top: 26px; padding: 22px 24px; color: #fff; background: linear-gradient(100deg, var(--green-800), var(--green-700)); border-radius: var(--radius); box-shadow: var(--shadow); }
.highlight-bar > span { display: grid; place-items: center; width: 42px; aspect-ratio: 1; color: var(--gold); background: rgba(255,255,255,.09); border-radius: 50%; }
.highlight-bar p { flex: 1 1 250px; margin: 0; }
.highlight-bar a { color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .07em; }

.section--benefits { overflow: hidden; }
.section--benefits::before { content: ""; position: absolute; width: 620px; aspect-ratio: 1; right: -250px; top: -280px; border: 1px solid rgba(242,196,81,.15); border-radius: 50%; box-shadow: 0 0 0 80px rgba(242,196,81,.025), 0 0 0 160px rgba(242,196,81,.018); }
.benefit-grid { display: grid; gap: 13px; }
.benefit-card { display: flex; gap: 17px; min-height: 175px; padding: 24px 21px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); }
.benefit-card > span { flex: 0 0 auto; color: var(--gold); font-size: .69rem; font-weight: 900; letter-spacing: .08em; }
.benefit-card h3 { margin: 0 0 8px; font-size: 1.02rem; line-height: 1.3; }
.benefit-card p { margin: 0; color: rgba(255,255,255,.63); font-size: .84rem; }
.statement { display: flex; align-items: center; gap: 20px; margin-top: 28px; padding: 28px 24px; background: rgba(242,196,81,.08); border: 1px solid rgba(242,196,81,.25); border-radius: var(--radius); }
.statement__icon { flex: 0 0 auto; display: grid; place-items: center; width: 54px; aspect-ratio: 1; color: #132016; background: var(--gold); border-radius: 50%; font-size: 1.5rem; }
.statement p { margin: 0; color: var(--gold-light); font-size: 1.22rem; font-weight: 900; line-height: 1.3; }
.statement strong { display: block; margin-top: 5px; color: rgba(255,255,255,.68); font-size: .85rem; font-weight: 500; }
.center-cta { margin-top: 29px; text-align: center; }

.bonus-grid { display: grid; gap: 18px; }
.bonus-card { padding: 13px 13px 25px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: 0 15px 45px rgba(6,26,18,.08); }
.bonus-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 5px 4px 12px; }
.bonus-card__top span { color: var(--green-700); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.bonus-card__top b { padding: 4px 8px; color: var(--green-700); background: #e5f3ec; border-radius: 50px; font-size: .58rem; letter-spacing: .08em; }
.bonus-card__visual { position: relative; display: flex; align-items: flex-end; justify-content: space-between; height: 170px; padding: 22px; color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-950)); border-radius: 14px; overflow: hidden; }
.bonus-card__visual::before { content: ""; position: absolute; width: 160px; aspect-ratio: 1; right: -55px; top: -50px; border: 1px solid rgba(255,255,255,.19); border-radius: 50%; box-shadow: 0 0 0 25px rgba(255,255,255,.03); }
.bonus-card__visual--navy { background: linear-gradient(135deg, #183451, var(--navy-950)); }
.bonus-card__visual--gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.bonus-card__visual span { position: relative; z-index: 1; font-size: 1.1rem; font-weight: 900; line-height: 1.05; letter-spacing: -.03em; }
.bonus-card__visual i { position: relative; z-index: 1; font-size: 2.4rem; font-style: normal; }
.bonus-card h3 { min-height: 48px; margin: 21px 7px 10px; font-size: .95rem; line-height: 1.28; }
.bonus-card p { min-height: 115px; margin: 0 7px 18px; color: var(--gray-500); font-size: .81rem; }
.bonus-card__value { margin: 0 7px; padding-top: 13px; color: var(--gray-500); border-top: 1px solid var(--gray-200); font-size: .72rem; font-weight: 700; }
.bonus-card__value s { color: var(--ink); font-size: .9rem; }
.bonus-total { margin-top: 24px; padding: 18px; color: var(--green-800); background: #dff0e6; border: 1px solid #b9ddc8; border-radius: 14px; font-size: .95rem; text-align: center; }
.bonus-total span { display: inline-grid; place-items: center; width: 23px; aspect-ratio: 1; margin-right: 7px; color: #fff; background: var(--green-500); border-radius: 50%; }

.offer { color: #fff; background: linear-gradient(145deg, #071a14 0%, #08111e 100%); overflow: hidden; }
.offer__pattern { opacity: .12; }
.offer .container { position: relative; z-index: 1; }
.timer { width: min(100%, 410px); display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 38px; padding: 14px 20px; background: rgba(242,196,81,.08); border: 1px solid rgba(242,196,81,.33); border-radius: 15px; }
.timer__dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 6px rgba(242,196,81,.1); animation: pulse 1.5s infinite; }
.timer div { display: flex; align-items: center; gap: 15px; }
.timer small { color: rgba(255,255,255,.66); font-size: .66rem; font-weight: 800; line-height: 1.25; letter-spacing: .08em; }
.timer strong { color: var(--gold); font-size: 1.8rem; line-height: 1; font-variant-numeric: tabular-nums; }
.section-heading--offer h2 { color: #fff; }
.section-heading--offer h2 span { color: var(--gold); }
.section-heading--offer p:last-child { color: rgba(255,255,255,.6); }
.plans { display: grid; gap: 22px; align-items: center; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 23px 25px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); }
.plan--premium { padding-top: 44px; background: linear-gradient(165deg, rgba(18,82,56,.7), rgba(8,20,32,.9)); border: 2px solid var(--gold); box-shadow: 0 0 0 7px rgba(242,196,81,.06), 0 30px 70px rgba(0,0,0,.28); }
.plan__ribbon { position: absolute; left: 50%; top: 0; padding: 8px 24px; color: #142016; background: var(--gold); border-radius: 0 0 11px 11px; font-size: .66rem; font-weight: 900; letter-spacing: .11em; transform: translateX(-50%); }
.plan__tag { display: inline-block; margin-bottom: 13px; color: var(--gold); font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.plan__head h3 { margin: 0 0 7px; color: #fff; font-size: 1.33rem; line-height: 1.12; letter-spacing: -.03em; }
.plan__head p { margin: 0; color: rgba(255,255,255,.57); font-size: .8rem; }
.plan__list { flex: 1; gap: 12px; margin: 25px 0; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.plan__list li { color: rgba(255,255,255,.84); font-size: .82rem; }
.plan__price { margin-bottom: 18px; }
.plan__price small, .plan__price span { display: block; color: rgba(255,255,255,.56); font-size: .66rem; font-weight: 700; }
.plan__price span { margin-top: 7px; color: var(--gold-light); letter-spacing: .08em; }
.plan__price strong { display: block; margin-top: 2px; color: #fff; font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.1; letter-spacing: -.04em; }
.plan__instant { margin: 11px 0 0; color: rgba(255,255,255,.53); font-size: .68rem; text-align: center; }
.plan__instant span { color: var(--gold); }
.secure-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 31px auto 0; max-width: 730px; }
.secure-row span { display: flex; flex-direction: column; align-items: center; padding: 13px 5px; text-align: center; }
.secure-row i { display: grid; place-items: center; width: 37px; aspect-ratio: 1; margin-bottom: 7px; color: var(--gold); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; font-style: normal; }
.secure-row b { font-size: .67rem; }
.secure-row small { color: rgba(255,255,255,.45); font-size: .55rem; }

.examples { background: #fff; overflow: hidden; }
.carousel { width: min(100%, 980px); margin-inline: auto; }
.carousel__viewport { overflow: hidden; padding: 10px 0 4px; touch-action: pan-y; }
.carousel__track { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(250px, 76vw, 330px); gap: 16px; transition: transform .58s cubic-bezier(.22,.8,.2,1); will-change: transform; }
.carousel__slide { margin: 0; opacity: .52; transform: scale(.94); transition: opacity .4s ease, transform .4s ease; }
.carousel__slide.is-active { opacity: 1; transform: scale(1); }
.carousel__slide button { display: grid; place-items: center; width: 100%; aspect-ratio: 16 / 10; padding: 12px; background: linear-gradient(145deg, #071710, #0c2118); border: 0; border-radius: var(--radius); box-shadow: 0 17px 42px rgba(4,20,13,.13); cursor: zoom-in; overflow: hidden; }
.carousel__slide img { width: 100%; height: 100%; max-height: 100%; aspect-ratio: auto; object-fit: contain; object-position: center; transition: transform .4s ease; }
.carousel__slide button:hover img { transform: scale(1.025); }
.carousel__slide figcaption { display: flex; align-items: flex-start; gap: 10px; min-height: 2.8em; margin-top: 12px; color: var(--ink); font-size: .77rem; font-weight: 800; line-height: 1.4; }
.carousel__slide figcaption span { color: var(--green-500); font-size: .65rem; }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.carousel__arrow { display: grid; place-items: center; width: 46px; aspect-ratio: 1; color: var(--green-800); background: #fff; border: 1px solid var(--gray-200); border-radius: 50%; cursor: pointer; transition: color .2s, background .2s, transform .2s; }
.carousel__arrow:hover { color: #fff; background: var(--green-700); transform: translateY(-2px); }
.carousel__dots { display: flex; gap: 7px; }
.carousel__dot { width: 8px; height: 8px; padding: 0; background: #c8d0cb; border: 0; border-radius: 50%; cursor: pointer; transition: width .25s, background .25s; }
.carousel__dot.is-active { width: 26px; background: var(--green-500); border-radius: 10px; }
.examples__note { margin: 17px 0 0; color: var(--gray-500); font-size: .7rem; text-align: center; }
.image-modal { width: min(94vw, 1080px); padding: 0; color: #fff; background: var(--navy-950); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); box-shadow: 0 30px 100px rgba(0,0,0,.7); overflow: visible; }
.image-modal::backdrop { background: rgba(3,9,7,.88); backdrop-filter: blur(5px); }
.image-modal img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius) var(--radius) 0 0; }
.image-modal p { margin: 0; padding: 14px 20px; font-size: .85rem; font-weight: 700; text-align: center; }
.image-modal__close { position: absolute; z-index: 2; right: -8px; top: -12px; display: grid; place-items: center; width: 42px; aspect-ratio: 1; color: var(--navy-950); background: var(--gold); border: 0; border-radius: 50%; font-size: 1.7rem; cursor: pointer; }

.testimonials { color: #fff; background: var(--green-950); }
.testimonials .section-heading h2 { color: #fff; }
.testimonials .section-heading h2 span { color: var(--gold); }
.testimonials .section-heading p:last-child { color: rgba(255,255,255,.62); }
.testimonial-disclaimer { max-width: 720px !important; padding: 10px 14px; color: var(--gold-light) !important; background: rgba(242,196,81,.08); border: 1px solid rgba(242,196,81,.22); border-radius: 10px; font-size: .76rem; }
.testimonial-grid { display: grid; gap: 16px; }
.testimonial-card { display: flex; flex-direction: column; min-height: 300px; padding: 25px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.illustrative-label { align-self: flex-start; padding: 5px 8px; color: var(--gold-light); background: rgba(242,196,81,.1); border: 1px solid rgba(242,196,81,.2); border-radius: 50px; font-size: .55rem; font-weight: 900; letter-spacing: .09em; }
.testimonial-card blockquote { flex: 1; margin: 25px 0; color: rgba(255,255,255,.86); font-size: .95rem; font-weight: 500; line-height: 1.7; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.avatar { display: grid; place-items: center; width: 43px; aspect-ratio: 1; color: var(--navy-950); background: var(--gold); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.testimonial-card footer strong, .testimonial-card footer small { display: block; line-height: 1.35; }
.testimonial-card footer strong { font-size: .8rem; }
.testimonial-card footer small { color: rgba(255,255,255,.48); font-size: .68rem; }

.testimonial-stars {
  color: var(--gold);
  font-size: .98rem;
  letter-spacing: .18em;
}

.testimonial-avatar {
  display: block;
  width: 43px !important;
  height: 43px !important;
  min-width: 43px;
  max-width: 43px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(242,196,81,.42);
  box-shadow: none;
  flex: 0 0 43px;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  text-align: left;
}

.testimonial-card footer > div:last-child {
  min-width: 0;
}

.plan-card__media {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.plan-card__media--basic {
  background: linear-gradient(145deg, #08130f, #10251c);
}

.plan-card__media--basic img,
.plan-card__media--premium img {
  max-width: 100%;
  max-height: 100%;
}

.guarantee { background: linear-gradient(135deg, #e9f3ed, #fbfaf5); }
.guarantee__grid { display: grid; align-items: center; gap: 45px; }
.guarantee__seal { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; width: min(68vw, 300px); aspect-ratio: 1; margin: auto; color: #fff; background: linear-gradient(145deg, var(--green-500), var(--green-900)); border: 9px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--green-700), 0 22px 60px rgba(7,45,29,.25); }
.guarantee__seal::before, .guarantee__seal::after { content: ""; position: absolute; inset: 15px; border: 1px dashed rgba(242,196,81,.75); border-radius: 50%; }
.guarantee__seal::after { inset: 25px; border-style: solid; border-color: rgba(255,255,255,.16); }
.guarantee__seal span, .guarantee__seal b, .guarantee__seal small, .guarantee__seal strong { position: relative; z-index: 1; line-height: 1; }
.guarantee__seal span { color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .18em; }
.guarantee__seal strong { margin-top: 5px; color: #fff; font-size: 6.5rem; letter-spacing: -.08em; }
.guarantee__seal b { color: var(--gold-light); font-size: 1.35rem; letter-spacing: .13em; }
.guarantee__seal small { margin-top: 8px; color: rgba(255,255,255,.7); font-size: .52rem; font-weight: 800; letter-spacing: .15em; }
.guarantee h2 span { color: var(--green-700); }
.guarantee__lead { color: var(--green-800); font-size: 1.08rem; font-weight: 800; }
.guarantee__copy > p:not(.eyebrow) { color: var(--gray-500); }
.guarantee__final { display: block; margin: 23px 0; padding-left: 15px; color: var(--ink); border-left: 3px solid var(--gold); }

.faq { background: #fff; }
.faq__layout { display: grid; gap: 40px; }
.faq__intro h2 { margin-bottom: 16px; }
.faq__intro h2 span { color: var(--green-700); }
.faq__intro > p:not(.eyebrow) { color: var(--gray-500); }
.text-link { display: inline-flex; gap: 8px; margin-top: 10px; color: var(--green-700); font-size: .8rem; font-weight: 900; }
.faq__list { border-top: 1px solid var(--gray-200); }
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 22px 3px; font-size: .91rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; flex: 0 0 auto; width: 30px; aspect-ratio: 1; background: var(--gray-100); border-radius: 50%; }
.faq summary span::before, .faq summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 2px; background: var(--green-700); transform: translate(-50%,-50%); transition: transform .25s; }
.faq summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq details[open] summary { color: var(--green-700); }
.faq details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq details p { margin: -5px 40px 22px 3px; color: var(--gray-500); font-size: .85rem; }

.final-cta { padding: 64px 0; color: #fff; background: linear-gradient(115deg, var(--green-800), var(--green-950)); }
.final-cta__inner { display: grid; align-items: center; gap: 28px; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 7vw, 3rem); }
.final-cta h2 span { color: var(--gold); }
.final-cta p:last-child { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.62); }
.footer { padding: 42px 0 100px; color: rgba(255,255,255,.52); background: #050b10; }
.footer__grid { display: grid; gap: 28px; text-align: center; }
.brand--footer { justify-content: center; color: #fff; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px 22px; font-size: .72rem; }
.footer nav a:hover { color: var(--gold); }
.footer p { margin: 0; font-size: .67rem; }

.mobile-sticky { position: fixed; z-index: 50; left: 10px; right: 10px; bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 9px 9px 15px; color: #fff; background: rgba(6,23,18,.96); border: 1px solid rgba(255,255,255,.14); border-radius: 15px; box-shadow: 0 15px 45px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
.mobile-sticky small, .mobile-sticky strong { display: block; line-height: 1.25; }
.mobile-sticky small { color: rgba(255,255,255,.6); font-size: .58rem; }
.mobile-sticky strong { color: var(--gold-light); font-size: .73rem; }
.mobile-sticky .button { min-height: 44px; padding: 11px 16px; font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 50% { opacity: .45; transform: scale(.86); } }
@keyframes urgencyPulse { 50% { opacity: .48; transform: scale(.82); } }

@media (min-width: 620px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
  .hero { padding-top: 162px; }
  .check-list--hero { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .material-grid, .bonus-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bonus-card:last-child, .testimonial-card:last-child { grid-column: 1 / -1; }
  .carousel__track { grid-auto-columns: min(47%, 390px); gap: 20px; }
}

@media (min-width: 860px) {
  .section { padding: 105px 0; }
  .hero__grid { grid-template-columns: minmax(0,1.03fr) minmax(390px,.97fr); gap: 42px; }
  .hero h1 { font-size: clamp(3.5rem, 6.5vw, 5.2rem); }
  .hero__image-wrap { min-height: 570px; }
  .hero__image-wrap > img { min-height: 570px; }
  .trust-strip__grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .trust-strip span { font-size: .75rem; }
  .material-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .benefit-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .bonus-grid, .testimonial-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .bonus-card:last-child, .testimonial-card:last-child { grid-column: auto; }
  .plans { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 970px; margin: auto; }
  .plan { min-height: 720px; }
  .plan--basic { order: 1; }
  .plan--premium { order: 2; min-height: 780px; }
  .carousel__track { grid-auto-columns: calc((100% - 40px) / 3); gap: 20px; }
  .guarantee__grid { grid-template-columns: .8fr 1.2fr; }
  .faq__layout { grid-template-columns: .72fr 1.28fr; gap: 80px; }
  .faq__intro { position: sticky; top: 100px; align-self: start; }
  .final-cta__inner { grid-template-columns: 1fr auto; }
  .final-cta .button { max-width: 310px; }
  .footer { padding-bottom: 42px; }
  .footer__grid { grid-template-columns: 1fr auto; align-items: center; text-align: left; }
  .brand--footer { justify-content: flex-start; }
  .footer nav { justify-content: flex-end; }
  .footer p { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
  .mobile-sticky { display: none; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .hero { padding-top: 140px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.7rem); line-height: .98; letter-spacing: -.045em; }
  .hero .eyebrow { font-size: .64rem; letter-spacing: .1em; }
  .hero__lead { font-size: 1rem; }
  .hero__text { font-size: .91rem; }
  .check-list--hero { font-size: .84rem; }
  .hero__badges { margin-inline: 8px; }
  .hero__badges span { font-size: .56rem; }
  .section-heading h2, .guarantee h2, .faq h2 { font-size: 2.05rem; }
  .statement { align-items: flex-start; }
  .statement__icon { width: 44px; }
  .statement p { font-size: 1.05rem; }
  .timer { padding-inline: 13px; }
  .timer div { gap: 10px; }
  .timer strong { font-size: 1.55rem; }
  .secure-row b { font-size: .58rem; }
  .secure-row small { display: none; }
}

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

/* ===== EntrenaPro Fútbol — adaptación de estructura de venta ===== */
.topbar__offer { display: none; text-align: center; line-height: 1.15; }
.topbar__offer small, .topbar__offer strong { display: block; }
.topbar__offer small { color: rgba(255,255,255,.56); font-size: .52rem; font-weight: 800; letter-spacing: .13em; }
.topbar__offer strong { margin-top: 4px; color: var(--gold-light); font-size: .72rem; font-weight: 900; }
.topbar__offer s { color: rgba(255,255,255,.48); }

.hero h1 { font-size: clamp(2.15rem, 9vw, 4.55rem); }
.hero__lead strong { color: var(--gold-light); }
.hero__image-wrap--clean { min-height: auto; background: #06100d; }
.hero__image-wrap--clean::after { background: linear-gradient(180deg, transparent 72%, rgba(3,11,9,.42)); }
.hero__image-wrap--clean > img { min-height: 0; aspect-ratio: 4 / 3; object-fit: contain; object-position: center; opacity: 1; }
.hero__badges { margin-top: -22px; }

.pain-section { color: #fff; background: linear-gradient(135deg, #06110d, #081725 70%, #06110d); overflow: hidden; }
.pain-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at 15% 20%, rgba(242,196,81,.28), transparent 28%), linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: auto, 64px 64px, 64px 64px; pointer-events: none; }
.pain-layout { position: relative; z-index: 1; display: grid; gap: 32px; align-items: center; }
.pain-section .section-heading h2 { color: #fff; }
.pain-section .section-heading h2 span { color: var(--gold); }
.pain-section .section-heading > p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.pain-card { padding: 27px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); box-shadow: 0 24px 65px rgba(0,0,0,.2); }
.pain-card__label { display: inline-flex; padding: 7px 11px; color: var(--gold-light); background: rgba(242,196,81,.08); border: 1px solid rgba(242,196,81,.22); border-radius: 999px; font-size: .61rem; font-weight: 900; letter-spacing: .1em; }
.pain-list { display: grid; gap: 14px; margin: 22px 0 0; padding: 0; list-style: none; }
.pain-list li { position: relative; padding-left: 28px; color: rgba(255,255,255,.82); font-size: .89rem; }
.pain-list li::before { content: "×"; position: absolute; left: 0; top: .05em; display: grid; place-items: center; width: 19px; height: 19px; color: #fff; background: rgba(231,84,84,.78); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.statement--dark { position: relative; z-index: 1; margin-top: 42px; color: #fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.statement--dark p { color: var(--gold-light); }
.statement--dark strong { color: rgba(255,255,255,.82); }

.solution__grid { display: grid; gap: 40px; align-items: center; }
.solution__visual { position: relative; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.solution__visual::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.3); border-radius: inherit; pointer-events: none; }
.solution__visual { display: grid; place-items: center; aspect-ratio: 4 / 3; padding: 10px; background: #071710; overflow: hidden; }
.solution__visual img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; object-position: center; }
.solution__copy h2 { margin: 0 0 20px; font-size: clamp(2rem, 7vw, 3.45rem); line-height: 1.02; letter-spacing: -.045em; }
.solution__copy h2 span { color: var(--green-700); }
.solution__copy > p:not(.eyebrow,.microcopy-dark) { color: var(--gray-500); }
.solution__highlight { margin: 24px 0; padding: 19px 20px; color: var(--ink); background: #fff; border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; box-shadow: 0 12px 35px rgba(4,19,13,.07); font-weight: 700; }
.microcopy-dark { margin: 12px 0 0; color: var(--gray-500); font-size: .73rem; text-align: center; }

.receive-grid { display: grid; gap: 16px; }
.receive-card { position: relative; padding: 27px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(4,19,13,.06); }
.receive-card .card-number { position: absolute; right: 20px; top: 18px; color: #dfe7e2; font-size: 2.3rem; font-weight: 900; }
.receive-card .card-icon { margin-bottom: 20px; }
.receive-card h3 { margin: 0 0 11px; font-size: 1.05rem; line-height: 1.25; }
.receive-card p { margin: 0 0 16px; color: var(--gray-500); font-size: .85rem; }
.receive-card strong { display: block; padding-top: 15px; color: var(--green-700); border-top: 1px solid var(--gray-200); font-size: .78rem; line-height: 1.5; }
.value-box { display: flex; align-items: flex-start; gap: 18px; max-width: 920px; margin: 34px auto 0; padding: 24px; color: #fff; background: linear-gradient(125deg, var(--green-800), var(--green-950)); border-radius: var(--radius); box-shadow: var(--shadow); }
.value-box > span { flex: 0 0 auto; display: grid; place-items: center; width: 43px; aspect-ratio: 1; color: var(--green-950); background: var(--gold); border-radius: 50%; font-weight: 900; }
.value-box p { margin: 0 0 5px; color: var(--gold-light); font-size: 1.05rem; font-weight: 800; }
.value-box strong { color: rgba(255,255,255,.8); font-size: .84rem; }

.how-it-works { background: #fff; }
.steps-grid { display: grid; gap: 16px; }
.step-card { position: relative; padding: 28px 24px; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius); }
.step-card > span { display: grid; place-items: center; width: 48px; aspect-ratio: 1; margin-bottom: 21px; color: var(--green-950); background: var(--gold); border-radius: 50%; font-size: 1.1rem; font-weight: 900; box-shadow: 0 10px 25px rgba(242,196,81,.24); }
.step-card h3 { margin: 0 0 9px; font-size: 1rem; }
.step-card p { margin: 0; color: var(--gray-500); font-size: .82rem; }
.method-box { max-width: 820px; margin: 34px auto 0; padding: 27px; color: #fff; background: var(--green-950); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); text-align: center; }
.method-box small, .method-box strong { display: block; }
.method-box small { color: var(--gold); font-size: .63rem; font-weight: 900; letter-spacing: .18em; }
.method-box strong { margin: 6px 0 8px; font-size: clamp(1.35rem, 5vw, 2.1rem); line-height: 1.1; }
.method-box p { margin: 0; color: rgba(255,255,255,.65); font-size: .82rem; }
.center-cta { margin-top: 31px; }

.comparison { color: #fff; background: linear-gradient(135deg, #071710, #081522); }
.comparison .section-heading h2 { color: #fff; }
.comparison .section-heading p:last-child { color: rgba(255,255,255,.62); }
.comparison-grid { display: grid; gap: 16px; }
.comparison-card { padding: 26px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.comparison-card--best { background: linear-gradient(145deg, rgba(31,139,88,.24), rgba(255,255,255,.055)); border-color: rgba(242,196,81,.42); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.comparison-card__tag { display: inline-flex; padding: 6px 9px; color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); border-radius: 999px; font-size: .57rem; font-weight: 900; letter-spacing: .11em; }
.comparison-card--best .comparison-card__tag { color: var(--green-950); background: var(--gold); }
.comparison-card h3 { margin: 18px 0; color: #fff; font-size: 1.08rem; }
.comparison-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.comparison-card li { position: relative; padding-left: 24px; color: rgba(255,255,255,.66); font-size: .82rem; }
.comparison-card li::before { content: "–"; position: absolute; left: 0; color: rgba(255,255,255,.45); font-weight: 900; }
.comparison-card--best li { color: rgba(255,255,255,.87); }
.comparison-card--best li::before { content: "✓"; color: var(--gold); }
.comparison__closing { max-width: 890px; margin: 33px auto 0; color: rgba(255,255,255,.67); font-size: .89rem; text-align: center; }

.carousel__slide--contain button { background: linear-gradient(145deg, #071710, #0c2118); }
.carousel__slide--contain img { object-fit: contain; }
.examples .center-cta { text-align: center; }

.credibility { color: #fff; background: var(--green-950); }
.credibility .section-heading h2 { color: #fff; }
.credibility .section-heading p:last-child { color: rgba(255,255,255,.62); }
.proof-grid { display: grid; gap: 16px; }
.proof-card { padding: 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.proof-card > span { display: block; color: var(--gold); font-size: 2.4rem; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.proof-card h3 { margin: 14px 0 10px; color: #fff; font-size: 1rem; }
.proof-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; }
.transparency-note { max-width: 930px; margin: 30px auto 0; padding: 18px 20px; color: rgba(255,255,255,.68); background: rgba(242,196,81,.07); border: 1px solid rgba(242,196,81,.22); border-radius: var(--radius-sm); font-size: .75rem; text-align: center; }
.transparency-note strong { color: var(--gold-light); }

.audience__grid { display: grid; gap: 18px; }
.audience-card { position: relative; padding: 29px; border-radius: var(--radius); box-shadow: 0 14px 42px rgba(4,19,13,.07); overflow: hidden; }
.audience-card--yes { background: #fff; border: 1px solid var(--gray-200); }
.audience-card--no { color: #fff; background: linear-gradient(145deg, #101820, #07110d); border: 1px solid rgba(255,255,255,.09); }
.audience-card__icon { position: absolute; right: 23px; top: 20px; display: grid; place-items: center; width: 42px; aspect-ratio: 1; border-radius: 50%; font-size: 1.2rem; font-weight: 900; }
.audience-card--yes .audience-card__icon { color: #fff; background: var(--green-500); }
.audience-card--no .audience-card__icon { color: #fff; background: rgba(231,84,84,.75); }
.audience-card h2 { max-width: 520px; margin: 0 0 23px; font-size: clamp(1.65rem, 6vw, 2.65rem); line-height: 1.04; letter-spacing: -.045em; }
.audience-card--no h2 { color: #fff; }
.audience-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.audience-list li { position: relative; padding-left: 26px; font-size: .83rem; }
.audience-card--yes .audience-list li { color: var(--gray-500); }
.audience-card--no .audience-list li { color: rgba(255,255,255,.66); }
.audience-card--yes .audience-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-500); font-weight: 900; }
.audience-card--no .audience-list li::before { content: "×"; position: absolute; left: 0; color: #ef8b8b; font-weight: 900; }
.audience-card__closing { margin: 23px 0 0; padding-top: 19px; color: var(--gold-light); border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; font-weight: 700; }

.plans--single { display: block; max-width: 760px; margin: auto; }
.plans--single .plan { min-height: 0; }
.offer-card { max-width: 760px; margin: auto; padding-top: 0; overflow: hidden; }
.offer-card__media { display: grid; place-items: center; min-height: 300px; margin: 0 -28px 28px; padding: 22px; background: linear-gradient(145deg, #07110d, #0b2118); overflow: hidden; }
.offer-card__media img { width: min(100%, 470px); height: auto; max-height: 470px; object-fit: contain; object-position: center; }
.offer-card .plan__head { text-align: center; }
.offer-card .plan__head h3 { font-size: clamp(1.65rem, 6vw, 2.75rem); }
.offer-card .plan__list { max-width: 560px; margin-inline: auto; }
.offer-card .plan__price strong { display: flex; align-items: flex-end; justify-content: center; gap: 8px; }
.offer-card .plan__price em { padding-bottom: .65em; color: var(--gold-light); font-size: .24em; font-style: normal; letter-spacing: .08em; }
.offer-equivalence { max-width: 580px; margin: 0 auto 22px; padding: 14px 16px; color: rgba(255,255,255,.68); background: rgba(255,255,255,.05); border-radius: var(--radius-sm); font-size: .76rem; text-align: center; }
.after-purchase { max-width: 720px; margin: 22px auto 0; color: rgba(255,255,255,.55); font-size: .72rem; text-align: center; }

.footer__grid { grid-template-columns: 1fr; }
.footer__support { color: rgba(255,255,255,.72); font-weight: 700; }
.footer__legal { max-width: 900px; margin-inline: auto !important; color: rgba(255,255,255,.42); line-height: 1.6; }

@media (min-width: 620px) {
  .topbar__offer { display: block; }
  .receive-grid, .steps-grid, .proof-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .audience-card { padding: 36px; }
}

@media (min-width: 860px) {
  .hero h1 { font-size: clamp(3.15rem, 5.35vw, 4.65rem); }
  .hero__image-wrap--clean > img { min-height: 0; }
  .pain-layout { grid-template-columns: 1.05fr .95fr; gap: 65px; }
  .solution__grid { grid-template-columns: 1.04fr .96fr; gap: 64px; }
  .receive-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .steps-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .comparison-grid { grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; }
  .comparison-card--best { transform: translateY(-14px); }
  .proof-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .audience__grid { grid-template-columns: 1.05fr .95fr; align-items: stretch; }
  .offer-card { padding: 0 44px 40px; }
  .offer-card__media { margin: 0 -44px 35px; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .brand--footer { justify-content: center; }
  .footer p { grid-column: auto; padding-top: 0; border-top: 0; }
}

@media (max-width: 620px) {
  .topbar__urgency { min-height: 28px; padding-inline: 8px; font-size: .55rem; letter-spacing: .045em; }
  .topbar__inner { gap: 9px; }
  .topbar .button { padding-inline: 12px; }
  .topbar .brand__logo { width: 152px; }
  .hero__image-wrap--clean { border-radius: 18px; }
  .pain-card, .receive-card, .step-card, .comparison-card, .proof-card, .audience-card { padding: 23px; }
  .value-box { align-items: flex-start; padding: 20px; }
  .offer-card { padding-inline: 20px; }
  .offer-card__media { margin-inline: -20px; }
  .offer-card__media { min-height: 250px; padding: 16px; }
  .offer-card__media img { max-height: 330px; }
}


/* ===== Comparação de ofertas: Esencial x Premium ===== */
.plans--comparison {
  align-items: stretch;
  max-width: 1040px;
  margin-inline: auto;
}

.plans--comparison .plan {
  min-height: 0;
  height: 100%;
  padding: 0 24px 28px;
  overflow: hidden;
}

.plans--comparison .plan--basic {
  background: linear-gradient(165deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.2);
}

.plans--comparison .plan--premium {
  min-height: 0;
  padding-top: 0;
}

.plan-card__media {
  display: grid;
  place-items: center;
  width: auto;
  height: 250px;
  margin: 0 -24px 26px;
  padding: 18px;
  background: linear-gradient(145deg, #07110d, #0b2118);
  overflow: hidden;
}

.plan-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.plan-card__media--basic {
  align-content: center;
  gap: 2px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 28%, rgba(242,196,81,.16), transparent 37%),
    linear-gradient(145deg, #10251c, #07110d);
  text-align: center;
}

.plan-card__media--basic span {
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.plan-card__media--basic strong {
  color: #fff;
  font-size: clamp(4.8rem, 20vw, 7.4rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.075em;
  text-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.plan-card__media--basic small {
  color: rgba(255,255,255,.76);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.plans--comparison .plan__head {
  text-align: center;
}

.plans--comparison .plan__head h3 {
  font-size: clamp(1.45rem, 5vw, 2rem);
}

.plans--comparison .plan__list {
  margin-block: 22px;
}

.plans--comparison .plan__price {
  text-align: center;
}

.plans--comparison .plan__price strong {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
}

.plans--comparison .plan__price em {
  padding-bottom: .62em;
  color: var(--gold-light);
  font-size: .24em;
  font-style: normal;
  letter-spacing: .08em;
}

.plan__limited {
  color: rgba(255,255,255,.5) !important;
}

.plan__limited::before {
  content: "○" !important;
  color: rgba(255,255,255,.5) !important;
}

.plan__value-badge {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 13px 15px;
  color: #162017;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-sm);
  text-align: center;
}

.plan__value-badge strong {
  font-size: .74rem;
  letter-spacing: .09em;
}

.plan__value-badge span {
  font-size: .7rem;
  font-weight: 700;
}

.plans--comparison .offer-equivalence {
  margin-bottom: 18px;
}

.plans--comparison .offer-equivalence strong {
  color: var(--gold-light);
}

.premium-recommendation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 24px auto 0;
  padding: 15px 18px;
  color: rgba(255,255,255,.76);
  background: rgba(242,196,81,.08);
  border: 1px solid rgba(242,196,81,.24);
  border-radius: var(--radius-sm);
  text-align: center;
}

.premium-recommendation span {
  color: var(--gold);
  font-size: 1.05rem;
}

.premium-recommendation p {
  margin: 0;
  font-size: .76rem;
}

.premium-recommendation strong {
  color: var(--gold-light);
}

@media (min-width: 860px) {
  .plans--comparison {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 26px;
  }

  .plans--comparison .plan {
    min-height: 760px;
  }

  .plans--comparison .plan--premium {
    min-height: 790px;
  }

  .plan-card__media {
    height: 285px;
  }
}

@media (max-width: 620px) {
  .plans--comparison {
    gap: 22px;
  }

  .plans--comparison .plan {
    padding-inline: 20px;
  }

  .plan-card__media {
    height: 215px;
    margin-inline: -20px;
    padding: 14px;
  }

  .plan__ribbon {
    width: max-content;
    max-width: calc(100% - 28px);
    padding-inline: 14px;
    text-align: center;
  }

  .premium-recommendation {
    align-items: flex-start;
    text-align: left;
  }
}


/* Offer cards image fit fix */
.plans--comparison .plan-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  height: auto !important;
  max-height: none;
  overflow: hidden;
}

.plans--comparison .plan-card__media img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 860px) {
  .plans--comparison .plan-card__media {
    aspect-ratio: 1 / 1;
    height: auto !important;
  }
}

@media (max-width: 620px) {
  .plans--comparison .plan-card__media {
    aspect-ratio: 1 / 1;
    height: auto !important;
    margin-inline: -20px;
    padding: 12px;
  }
}

@media (max-width: 430px) {
  .topbar .brand__logo { width: 138px; }
}
