:root {
  --tank-950: #06282f;
  --tank-900: #08353d;
  --tank-800: #0d4d55;
  --water-600: #188f96;
  --water-450: #43b7b8;
  --water-200: #b9e3df;
  --glass: rgba(255, 255, 255, .09);
  --glass-line: rgba(220, 246, 242, .18);
  --foam: #f4f9f8;
  --paper: #ffffff;
  --sand: #d8c7a4;
  --stone: #667477;
  --leaf: #54775d;
  --heat: #e7963f;
  --coral: #d95f49;
  --ink: #102e33;
  --muted: #587075;
  --line: rgba(16, 46, 51, .13);
  --display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Segoe UI Variable Text", "Aptos", "Segoe UI", sans-serif;
  --utility: "Bahnschrift", "Arial Narrow", sans-serif;
  --shadow-soft: 0 18px 50px rgba(6, 40, 47, .11);
  --shadow-deep: 0 28px 70px rgba(3, 24, 29, .24);
  --radius-section: 34px;
  --radius-card: 22px;
  --radius-image: 20px;
}

html {
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: var(--foam);
  scroll-padding-top: 20px;
}
body {
  margin: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
  color: var(--ink);
  background: var(--foam);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 760;
  letter-spacing: -.042em;
  line-height: 1.05;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 4.05vw, 4.05rem); }
h2 { font-size: clamp(2.05rem, 3.45vw, 3.45rem); }
h3 { font-size: clamp(1.2rem, 1.55vw, 1.48rem); }
p, li { text-wrap: pretty; }
.wrap { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 860px; }
section { position: relative; padding: 104px 0; }
.section-light { color: var(--ink); background: var(--foam); }
.section-dark, .section-purple, .section-wine { color: var(--foam); background: var(--tank-950); }
.center-title, .section-statement {
  width: min(900px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.urgency {
  position: relative;
  z-index: 20;
  padding: 8px 12px;
  color: #fff;
  background: #df1f32;
  font-family: var(--utility);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}
.urgency p { margin: 0; }
.urgency-bolt { margin-right: 4px; color: #ffb43b; }

.hero {
  isolation: isolate;
  min-height: auto;
  margin: 0;
  padding: 82px 0 72px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(67, 183, 184, .24), transparent 31%),
    radial-gradient(circle at 82% 78%, rgba(84, 119, 93, .16), transparent 29%),
    linear-gradient(145deg, #051f26 0%, #093943 58%, #0b4e55 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% 7% auto;
  height: 54%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(194, 240, 234, .08), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.hero-inner { max-width: 1000px; text-align: center; }
.hero h1 { max-width: 960px; margin: 0 auto 38px; text-align: center; }
.hero h1 em { display: block; color: var(--foam); font-style: normal; text-shadow: none; }
.hero h1 .headline-promise,
.hero h1 .headline-result { display: block; }
.hero h1 .headline-result {
  margin-top: .08em;
  color: var(--foam);
  font-style: italic;
  font-weight: 720;
}
.hero h1 > span[data-slot="hero.subhead"] {
  display: block;
  max-width: 780px;
  margin: 24px auto 0;
  color: #d3e9e6;
  font-family: var(--body);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  font-weight: 480;
  letter-spacing: -.012em;
  line-height: 1.48;
}
.hero h1 .headline-accent {
  display: inline;
  max-width: none;
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: nowrap;
}
.hero h1 .headline-accent-water { color: #78ddd8; }
.hero-product {
  width: min(630px, 92%);
  margin: 0 auto 30px;
  border-radius: 28px;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, .35));
  animation: none;
}
.lead {
  max-width: 760px;
  margin-inline: auto;
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.62;
  text-align: center;
}
.inline-price { color: #f2b56f; }
.cta {
  min-height: 58px;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #50bd5a, #37a344);
  box-shadow: 0 9px 0 #22822e, 0 18px 30px rgba(0, 0, 0, .2);
  font-family: var(--utility);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.cta:hover { filter: brightness(1.08); }
.cta:active { transform: translateY(4px); box-shadow: 0 5px 0 #22822e, 0 12px 22px rgba(0, 0, 0, .18); }
.cta-pulse, .package-mockup { transform: none; animation: none; }
.cta:focus-visible, summary:focus-visible, .marquee:focus-visible { outline: 3px solid var(--heat); outline-offset: 4px; }
.cta[aria-disabled="true"] { cursor: not-allowed; opacity: 1; }
.hero-cta { max-width: 590px; margin: 30px auto 0; }
.delivery { color: #c6deda; }
.delivery img { border-radius: 50%; }
.hero-delivery { justify-content: center; gap: 7px; margin-top: 23px; }

.showcase { overflow: hidden; background: linear-gradient(180deg, #edf7f5 0%, var(--foam) 36%, var(--foam) 100%); }
.showcase .center-title { margin-bottom: 50px; }
.marquee {
  padding: 10px 0 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee:focus-within .marquee-track, .marquee:hover .marquee-track, .marquee[data-paused="true"] .marquee-track { animation-play-state: paused; }
.marquee-track { gap: 20px; animation-duration: 44s; }
.marquee img {
  width: clamp(220px, 22vw, 310px);
  aspect-ratio: 1055 / 1492;
  border: 1px solid rgba(16, 46, 51, .11);
  border-radius: var(--radius-image);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  object-fit: contain;
}

.benefits {
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 183, 184, .14), transparent 38%),
    var(--tank-900);
}
.benefits .section-statement { max-width: 800px; margin-bottom: 54px; color: var(--foam); }
.card-grid {
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.card-grid article {
  min-height: 260px;
  padding: 26px 22px;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: rgba(2, 28, 34, .22);
  box-shadow: none;
}
.card-grid article > span { color: #f1b469; font-family: var(--utility); font-size: .82rem; font-weight: 700; letter-spacing: .1em; opacity: 1; }
.card-grid h3 { max-width: 14ch; margin: 34px 0 12px; color: var(--foam); font-size: 1.28rem; }
.card-grid p { margin: 0; color: #c9ddda; font-size: .94rem; line-height: 1.55; }

.comparison { background: #edf6f4; }
.comparison .center-title { max-width: 940px; }
.before-after-image {
  width: min(820px, 100%);
  margin: 46px auto 54px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.compare-grid { gap: 22px; }
.compare-card {
  padding: 32px 30px 24px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 34px rgba(6, 40, 47, .07);
}
.compare-card::before { display: none; }
.before, .after { border-color: var(--line); background: rgba(255, 255, 255, .76); }
.compare-card h3 { margin: 0 0 22px; padding: 0; border: 0; border-radius: 0; color: var(--ink); background: transparent; box-shadow: none; text-align: left; }
.before h3 { color: #934936; }
.after h3 { color: #386b4b; }
.compare-card li { min-height: 0; margin: 0; padding: 14px 0 14px 34px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.compare-card li + li { margin-top: 4px; }
.compare-card li::before { left: 0; font-size: 1.32rem; }
.before li::before { color: var(--coral); }
.after li::before { color: var(--leaf); }
.open-book-image { width: min(560px, 100%); margin: 54px auto 0; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-soft); }
.cta-center, .comparison .cta-center, .included .cta-center, .steps .cta-center { max-width: 460px; margin: 30px auto 0; }

.included {
  background:
    radial-gradient(circle at 50% 16%, rgba(67, 183, 184, .16), transparent 35%),
    linear-gradient(155deg, var(--tank-950), var(--tank-900));
}
.included-stack { max-width: 920px; text-align: center; }
.included-stack h2 { max-width: 780px; margin-right: auto; margin-left: auto; }
.devices-image { width: min(610px, 100%); margin: 44px auto 48px; border: 1px solid var(--glass-line); border-radius: 24px; box-shadow: var(--shadow-deep); }
.included-stack .check-list { max-width: 760px; margin: 0 auto; text-align: left; }
.check-list li, .price-card li { padding: 13px 0 13px 36px; }
.check-list li { border-color: rgba(220, 246, 242, .14); color: #d6e8e5; }
.check-list li::before, .price-card li::before { color: #83d4d0; }
.included-delivery { justify-content: center; }

.bonuses {
  background:
    radial-gradient(circle at 50% 18%, rgba(67, 183, 184, .12), transparent 34%),
    var(--paper);
}
.bonus-subtitle { margin: 20px auto 12px; color: var(--water-600); font-family: var(--utility); font-size: .8rem; letter-spacing: .1em; text-align: center; }
.bonus-banner, .offer-alert {
  width: fit-content;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 10px 16px;
  border: 1px solid rgba(24, 143, 150, .2);
  border-radius: 999px;
  color: var(--tank-800);
  background: rgba(185, 227, 223, .34);
  box-shadow: none;
  font-family: var(--utility);
  font-size: .8rem;
  letter-spacing: .07em;
  text-align: center;
}
.bonus-grid { align-items: stretch; gap: 24px; }
.bonus-grid article {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(16, 46, 51, .12);
  border-radius: 14px;
  background: linear-gradient(180deg, #eaf7f5 0%, #f7fbfa 42%, #fff 100%);
  box-shadow: 0 18px 42px rgba(6, 40, 47, .1);
}
.bonus-grid article > img {
  display: block;
  width: 100%;
  padding: 16px 12px 2px;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .9), rgba(185, 227, 223, .2) 68%, transparent 69%);
  box-shadow: none;
  object-fit: contain;
}
.bonus-grid article > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
  border-top: 1px solid rgba(16, 46, 51, .09);
  background: rgba(255, 255, 255, .72);
}
.bonus-grid small {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(24, 143, 150, .2);
  border-radius: 6px;
  color: var(--water-600);
  background: rgba(185, 227, 223, .28);
  box-shadow: none;
  font-family: var(--utility);
  font-size: .72rem;
  letter-spacing: .08em;
}
.bonus-grid h3 { min-height: 2.5em; margin: 0 0 12px; color: var(--ink); }
.bonus-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.bonus-grid .bonus-value {
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  border-radius: 0;
  color: var(--water-600);
  background: transparent;
  font-family: var(--utility);
  font-size: .72rem;
  text-align: left;
}
.bonus-carousels { margin-top: 76px; padding-top: 0; border: 0; }

.offer {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 20%, rgba(67, 183, 184, .13), transparent 38%),
    #eaf5f3;
  text-align: center;
}
.offer-alert {
  width: min(620px, 100%);
  margin-bottom: 34px;
  padding: 18px 16px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(90deg, #ad0815, #e52b3b);
  box-shadow: 0 10px 24px rgba(173, 8, 21, .25);
  font-size: clamp(.88rem, 3.5vw, 1.15rem);
}
.offer-alert > p {
  margin: 0;
  font-size: inherit;
  font-weight: 1000;
  letter-spacing: .04em;
  line-height: 1.25;
  text-align: center;
}
.offer-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.offer-countdown-unit {
  display: grid;
  width: 82px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  background: rgba(95, 0, 8, .28);
}
.offer-countdown-unit strong {
  display: block;
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.offer-countdown-unit span {
  display: block;
  margin-top: 4px;
  font-size: .67rem;
  text-transform: uppercase;
}
.offer-countdown-separator {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: .65;
}
.offer-countdown:focus-visible {
  outline: 3px solid var(--heat);
  outline-offset: 4px;
}
.offer > .wrap > h2 { max-width: 800px; margin-inline: auto; }
.pricing-grid { gap: 26px; margin-top: 50px; text-align: left; }
.price-card {
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 52px rgba(6, 40, 47, .09);
  backdrop-filter: blur(12px);
}
.price-card.featured {
  color: #fff;
  padding: 28px 22px;
  border: 3px solid #50c960;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0, #0d5962 0, #08353d 46%, #06282f 100%);
  box-shadow: 0 30px 80px rgba(3, 24, 29, .3);
  backdrop-filter: none;
}
.popular {
  margin: -28px -22px 24px;
  padding: 16px 12px;
  border-radius: 16px 16px 0 0;
  color: #fff;
  background: linear-gradient(180deg, #64e879, #1fa93a);
  box-shadow: 0 0 32px rgba(66, 216, 88, .78), 0 10px 24px rgba(23, 137, 45, .34);
  font-size: 1.08rem;
  font-weight: 1000;
  letter-spacing: .075em;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .28);
}
.featured .last-chance {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 9px 12px;
  border: 1px solid #ff7a86;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(90deg, #a80716, #e32b3a);
  text-align: center;
}
.featured h3 { margin-bottom: 14px; color: #fff; font-size: clamp(2rem, 9vw, 2.75rem); text-align: center; }
.included-badge, .content-badge { border: 0; border-radius: 9px; color: #fff; background: linear-gradient(180deg, #50c961, #259f39); box-shadow: none; font-family: var(--utility); }
.featured .included-badge {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 9px 13px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(180deg, #50c961, #259f39);
  font-size: .83rem;
  font-weight: 1000;
  text-align: center;
}
.package-mockup {
  width: min(520px, 100%) !important;
  margin: 4px auto 12px !important;
  border-radius: 0;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .35));
  animation: product-pulse 2.15s ease-in-out infinite;
}
.price-card h3 { font-size: clamp(1.75rem, 2.8vw, 2.4rem); }
.price-card.featured h3 { display: none; }
.price-card li { border-color: var(--line); }
.featured ul { margin-top: 0; }
.featured li { border-color: rgba(255, 255, 255, .16); color: #fff; }
.featured li::before { color: #5deb72; }
.old-price { color: var(--muted); text-decoration: none; }
.current-price, .featured .current-price { color: var(--water-600); text-shadow: none; }
.featured .old-price {
  color: #f1d9f7;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.featured .old-price s {
  margin-inline: 5px;
  color: #fff;
  font-size: 1.48rem;
  text-decoration-color: #ff6574;
  text-decoration-thickness: 1.25px;
}
.featured .current-price { color: #57ec6d; font-size: 1.8rem; text-align: center; text-shadow: 0 0 20px rgba(87, 236, 109, .28); }
.featured .current-price strong { font-size: 4.15rem; }
.featured .current-price + p { margin-bottom: 12px; text-align: center; }
.current-price strong, .featured .current-price strong, .basic-plan .current-price strong { font-family: var(--display); font-size: clamp(3.15rem, 4.7vw, 4.3rem); }
.price-card.featured .current-price strong { font-size: 4.15rem; }
.savings { color: #9cffaa; background: rgba(77, 213, 98, .14); font-family: var(--utility); }
.featured .savings {
  width: fit-content;
  margin: 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #9cffaa;
  background: rgba(77, 213, 98, .14);
  font-weight: 900;
}
.featured .cta-pulse { animation: cta-pulse 1.65s ease-in-out infinite; }
.basic-cover { width: min(240px, 64%); margin: 18px auto 28px; border-radius: 18px; filter: drop-shadow(0 18px 28px rgba(6, 40, 47, .14)); }
.basic-plan .excluded { color: #728287; text-decoration-color: rgba(16, 46, 51, .26); }
.basic-plan .current-price { color: #37a344; }
.basic-cta { color: #fff; background: linear-gradient(180deg, #50bd5a, #37a344); box-shadow: 0 9px 0 #22822e, 0 18px 30px rgba(0, 0, 0, .2); }
.price-card > img:not(.basic-cover) { width: 220px; }
.price-card.featured > img:not(.package-mockup) { width: 230px; margin: auto; opacity: .5; }

.guarantee { background: #dcece8; }
.guarantee-stack { display: grid; grid-template-columns: 210px minmax(0, 1fr); align-items: center; gap: 20px 48px; max-width: 920px; text-align: left; }
.guarantee-stack > img { grid-row: span 2; width: 210px; margin: 0; border: 1px solid rgba(16, 46, 51, .1); border-radius: 24px; box-shadow: var(--shadow-soft); }
.guarantee-stack h2 { max-width: 670px; margin: 0 0 14px; }
.guarantee-stack > div > p { max-width: 670px; margin: 0; color: #425f64; }
.hotmart-secure { width: min(500px, 100%); margin: 0; padding: 13px 16px; border: 1px solid rgba(16, 46, 51, .14); border-radius: 14px; color: var(--tank-900); background: rgba(255, 255, 255, .42); box-shadow: none; font-family: var(--utility); }
.hotmart-secure strong { color: var(--water-600); }

.steps {
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 183, 184, .13), transparent 36%),
    var(--tank-900);
}
.steps .center-title { max-width: 760px; margin-bottom: 48px; }
.steps-grid { gap: 20px; }
.steps-grid li { min-height: 285px; padding: 28px 26px; border: 1px solid var(--glass-line); border-radius: 20px; background: var(--glass); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05); }
.steps-grid span { width: 42px; height: 42px; border: 1px solid rgba(185, 227, 223, .3); border-radius: 50%; color: var(--tank-950); background: #91d8d3; font-family: var(--utility); }
.steps-grid h3 { max-width: 15ch; margin: 36px 0 10px; color: var(--foam); }
.steps-grid p { color: #cadeda; }

.faq { background: var(--paper); }
.faq .kicker { color: var(--water-600); font-family: var(--utility); letter-spacing: .11em; text-align: left; }
.faq h2 { margin-bottom: 38px; text-align: left; }
details { margin: 0 0 10px; border: 1px solid rgba(16, 46, 51, .1); border-radius: 14px; background: #f8fbfa; }
summary { padding: 20px 52px 20px 20px; font-family: var(--display); font-size: 1.06rem; font-weight: 680; }
summary::after { top: 13px; right: 18px; color: var(--water-600); font-weight: 400; }
details p { max-width: 740px; padding: 0 20px 22px; color: var(--muted); }
footer { padding: 50px 0; color: #a9c1be; background: #041c22; font-family: var(--utility); letter-spacing: .02em; }

@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid, .compare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1040px) {
  .hero { min-height: 0; }
  .card-grid, .benefits-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .benefits-five article:last-child { grid-column: auto; max-width: none; }
  .bonus-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  body { font-size: 16px; }
  .wrap { width: min(1120px, calc(100% - 30px)); }
  section { padding: 70px 0; }
  h1 { max-width: 100%; font-size: clamp(1.7rem, 7vw, 2.15rem); text-wrap: wrap; overflow-wrap: normal; }
  h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .urgency { padding: 9px 12px; font-size: .78rem; letter-spacing: .02em; }
  .hero { margin: 0; padding: 60px 0 54px; border-radius: 0; }
  .hero h1 { margin-bottom: 28px; }
  .hero h1 .headline-accent { white-space: normal; }
  .hero h1 > span[data-slot="hero.subhead"] { margin-top: 19px; font-size: .98rem; }
  .hero-product { width: 100%; border-radius: 20px; }
  .lead { font-size: .98rem; }
  .cta { min-height: 56px; padding: 13px 14px; border-radius: 12px; font-size: .78rem; }
  .hero-delivery, .included-delivery { justify-content: center; white-space: normal; }
  .marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
  .marquee-track { gap: 13px; }
  .marquee img { width: 210px; border-radius: 14px; }
  .benefits .section-statement { margin-bottom: 36px; }
  .card-grid { gap: 12px; padding: 12px; border-radius: 20px; }
  .card-grid article { min-height: 0; padding: 24px 20px; border-radius: 15px; }
  .card-grid h3 { margin-top: 22px; }
  .before-after-image, .open-book-image, .devices-image { margin: 34px auto 40px; border-radius: 18px; }
  .compare-grid { gap: 14px; }
  .compare-card { padding: 26px 20px 20px; border-radius: 18px; }
  .included-stack { text-align: center; }
  .bonus-grid { gap: 44px; }
  .bonus-grid h3 { min-height: 0; }
  .bonus-banner { width: 100%; border-radius: 16px; }
  .offer-alert { width: 100%; padding: 18px 14px; border-radius: 10px; }
  .offer-countdown { gap: 6px; margin-top: 15px; }
  .offer-countdown-unit { padding: 10px 4px 9px; border-radius: 6px; }
  .offer-countdown-unit strong { font-size: clamp(1.65rem, 9vw, 2.2rem); }
  .offer-countdown-unit span { font-size: .56rem; letter-spacing: .07em; }
  .offer-countdown-separator { font-size: 1.1rem; }
  .bonus-carousels { margin-top: 60px; }
  .pricing-grid { margin-top: 36px; }
  .price-card { padding: 28px 20px; border-radius: 20px; }
  .popular { margin: -28px -22px 24px; border-radius: 16px 16px 0 0; }
  .guarantee-stack { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .guarantee-stack > img { grid-row: auto; width: 176px; margin: 0 auto; }
  .guarantee-stack > div > p { margin-inline: auto; }
  .hotmart-secure { margin: 0 auto; }
  .steps .center-title { margin-bottom: 34px; }
  .steps-grid { gap: 12px; }
  .steps-grid li { min-height: 0; padding: 24px 20px; border-radius: 16px; }
  .steps-grid h3 { margin-top: 24px; }
  summary { padding-right: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
