@font-face {
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("assets/fontes/league-spartan-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("assets/fontes/montserrat-latin.woff2") format("woff2");
}

:root {
  --teal-950: #052f31;
  --teal-900: #073f41;
  --teal-700: #0f5c5e;
  --sage: #93c7b6;
  --sage-soft: #e4f1ec;
  --coral: #f2a65a;
  --coral-strong: #e8872e;
  --ivory: #fff8ee;
  --cream: #f6ecdd;
  --ink: #243334;
  --muted: #657574;
  --white: #ffffff;
  --red: #bf493c;
  --title: "League Spartan", Impact, sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --shadow: 0 24px 60px rgba(5, 47, 49, 0.15);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  overflow-x: hidden;
  padding-bottom: 72px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: 20px;
  width: 100%;
}

.section {
  padding-block: 74px;
}

.session-offer {
  align-items: center;
  background: var(--teal-950);
  color: var(--white);
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  min-height: 64px;
  padding: 9px 14px;
  position: relative;
  z-index: 80;
}

.session-offer__pulse {
  animation: pulse 1.6s ease-in-out infinite;
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(242, 166, 90, 0.13);
  height: 9px;
  width: 9px;
}

.session-offer__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.session-offer__copy strong {
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.session-offer__copy span {
  display: none;
  font-size: 0.62rem;
  opacity: 0.72;
}

.session-offer__timer {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  font-family: var(--title);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  gap: 2px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-width: 72px;
  padding: 5px 8px 3px;
}

.session-offer__timer i {
  color: var(--coral);
  font-style: normal;
}

.nav {
  align-items: center;
  background: rgba(255, 248, 238, 0.94);
  border-bottom: 1px solid rgba(15, 92, 94, 0.1);
  display: flex;
  height: 66px;
  justify-content: space-between;
  padding-inline: 18px;
  position: sticky;
  top: 0;
  transition: box-shadow 180ms ease;
  z-index: 70;
  backdrop-filter: blur(12px);
}

.nav.is-scrolled {
  box-shadow: 0 12px 30px rgba(5, 47, 49, 0.11);
}

.nav__brand {
  height: 52px;
  overflow: hidden;
  width: 188px;
}

.nav__brand img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.nav__link {
  color: var(--teal-900);
  font-family: var(--title);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.nav__link span {
  color: var(--coral-strong);
}

.hero {
  background:
    radial-gradient(circle at 85% 22%, rgba(147, 199, 182, 0.55), transparent 34%),
    linear-gradient(180deg, var(--ivory), #fffdf8);
  min-height: 760px;
  overflow: hidden;
  padding: 48px 0 20px;
  position: relative;
}

.hero::before,
.hero::after {
  border: 1px solid rgba(15, 92, 94, 0.11);
  border-radius: 50%;
  content: "";
  height: 330px;
  position: absolute;
  right: -190px;
  top: 110px;
  width: 330px;
}

.hero::after {
  height: 250px;
  right: -120px;
  top: 150px;
  width: 250px;
}

.hero__content {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.pill {
  background: var(--sage-soft);
  border: 1px solid rgba(15, 92, 94, 0.12);
  border-radius: 999px;
  color: var(--teal-700);
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 19px;
  padding: 9px 12px;
}

.hero h1,
.section-title {
  color: var(--teal-950);
  font-family: var(--title);
  font-size: clamp(2.9rem, 13.2vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--coral-strong);
  display: block;
  font-style: normal;
  margin-top: 9px;
}

.hero__lead {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  margin-top: 24px;
}

.hero__lead strong {
  color: var(--teal-900);
  font-weight: 900;
}

.hero__checks {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 23px 0 25px;
}

.hero__checks li {
  align-items: center;
  display: flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 9px;
}

.hero__checks b,
.category-list b {
  align-items: center;
  background: var(--sage-soft);
  border-radius: 99px;
  color: var(--teal-700);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  height: 23px;
  justify-content: center;
  width: 23px;
}

.cta,
.buy-button {
  align-items: center;
  background: var(--coral);
  border: 2px solid var(--coral);
  border-radius: 15px;
  box-shadow: 0 15px 32px rgba(232, 135, 46, 0.28);
  color: var(--teal-950);
  display: flex;
  flex-direction: column;
  font-family: var(--title);
  font-size: 1rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.01em;
  min-height: 64px;
  padding: 12px 18px 10px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.cta span,
.buy-button span {
  font-family: var(--body);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.cta:active,
.buy-button:active {
  transform: scale(0.985);
}

.trust-line {
  color: var(--muted);
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 11px;
  text-align: center;
}

.hero__visual {
  height: 355px;
  margin-top: 8px;
  position: relative;
}

.hero__visual::before {
  background: var(--sage-soft);
  border-radius: 48% 52% 44% 56% / 52% 42% 58% 48%;
  content: "";
  height: 300px;
  left: 50%;
  position: absolute;
  top: 30px;
  transform: translateX(-50%) rotate(-6deg);
  width: 360px;
}

.hero__mockup {
  filter: drop-shadow(0 24px 22px rgba(5, 47, 49, 0.18));
  left: 50%;
  max-width: none;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%);
  width: 142%;
  z-index: 2;
}

.burst {
  align-items: center;
  animation: float 3.2s ease-in-out infinite;
  background: var(--teal-900);
  border: 5px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(5, 47, 49, 0.18);
  color: var(--coral);
  display: flex;
  flex-direction: column;
  font-family: var(--title);
  font-size: 1.48rem;
  font-weight: 900;
  height: 88px;
  justify-content: center;
  line-height: 0.72;
  position: absolute;
  width: 88px;
  z-index: 5;
}

.burst span {
  color: var(--white);
  font-size: 0.48rem;
  letter-spacing: 0.07em;
  margin-top: 7px;
}

.burst--top {
  left: -2px;
  top: 34px;
}

.visual-stamp {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(15, 92, 94, 0.12);
  border-radius: 999px;
  bottom: 26px;
  box-shadow: 0 13px 28px rgba(5, 47, 49, 0.12);
  color: var(--teal-900);
  display: flex;
  font-family: var(--title);
  font-size: 0.64rem;
  font-weight: 900;
  gap: 8px;
  left: 50%;
  padding: 9px 14px 7px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 5;
}

.visual-stamp i {
  background: var(--coral);
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.marquee {
  background: var(--coral);
  border-bottom: 3px solid var(--teal-950);
  border-top: 3px solid var(--teal-950);
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee__track {
  align-items: center;
  animation: marquee 19s linear infinite;
  color: var(--teal-950);
  display: flex;
  font-family: var(--title);
  font-size: 0.8rem;
  font-weight: 900;
  gap: 20px;
  min-height: 46px;
  width: max-content;
}

.marquee__track i {
  font-style: normal;
}

.section-tag {
  color: var(--coral-strong);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-tag--light {
  color: var(--coral);
}

.section-title {
  font-size: clamp(2.55rem, 11.4vw, 4rem);
}

.section-title span {
  color: var(--coral-strong);
}

.section-title--light {
  color: var(--white);
}

.section-title--light span {
  color: var(--coral);
}

.section-lead {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 22px;
}

.pain {
  padding-top: 90px;
}

.pain__grid {
  display: grid;
  gap: 13px;
  margin-top: 36px;
}

.pain-card {
  background: var(--white);
  border: 1px solid rgba(15, 92, 94, 0.13);
  border-radius: 17px;
  box-shadow: 0 12px 25px rgba(5, 47, 49, 0.05);
  overflow: hidden;
  padding: 23px;
  position: relative;
}

.pain-card::before {
  background: var(--cream);
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 7px;
}

.pain-card > strong {
  color: var(--coral-strong);
  font-family: var(--title);
  font-size: 1.8rem;
  font-weight: 900;
}

.pain-card h3 {
  color: var(--teal-900);
  font-family: var(--title);
  font-size: 1.35rem;
  font-weight: 900;
  margin: 6px 0 7px;
}

.pain-card p {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 600;
}

.pain-card--answer {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: var(--white);
}

.pain-card--answer::before {
  background: var(--coral);
}

.pain-card--answer h3,
.pain-card--answer p {
  color: var(--white);
}

.pain-card--answer p {
  opacity: 0.76;
}

.big-answer {
  background: var(--sage-soft);
  border: 1px solid var(--sage);
  border-radius: 20px;
  margin-top: 28px;
  padding: 28px 24px;
  text-align: center;
}

.big-answer > span {
  color: var(--coral-strong);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.big-answer h3 {
  color: var(--teal-950);
  font-family: var(--title);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  margin: 10px 0;
}

.big-answer p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.method,
.transformation,
.offers,
.final-call {
  background: var(--teal-950);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.method__shape {
  border: 1px solid rgba(147, 199, 182, 0.16);
  border-radius: 50%;
  height: 420px;
  position: absolute;
  right: -270px;
  top: 20px;
  width: 420px;
}

.method__steps {
  display: grid;
  gap: 14px;
  margin: 35px 0 28px;
}

.method-step {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: 58px 1fr;
  padding: 18px;
}

.method-step__number {
  align-items: center;
  background: var(--coral);
  border-radius: 14px;
  color: var(--teal-950);
  display: flex;
  font-family: var(--title);
  font-size: 1.8rem;
  font-weight: 900;
  height: 58px;
  justify-content: center;
}

.method-step span {
  color: var(--coral);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.method-step h3 {
  color: var(--white);
  font-family: var(--title);
  font-size: 1.33rem;
  font-weight: 900;
  line-height: 1;
  margin: 3px 0 5px;
}

.method-step p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 600;
}

.cta--light {
  background: var(--coral);
  border-color: var(--coral);
}

.real-pages {
  background:
    linear-gradient(rgba(255, 248, 238, 0.94), rgba(255, 248, 238, 0.94)),
    radial-gradient(var(--sage) 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

.pages-slider {
  display: grid;
  gap: 15px;
  grid-auto-columns: 82%;
  grid-auto-flow: column;
  margin-top: 38px;
  overflow-x: auto;
  padding: 12px 20px 28px;
  scroll-padding-inline: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.pages-slider::-webkit-scrollbar {
  display: none;
}

.page-card {
  background: var(--white);
  border: 7px solid var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-snap-align: center;
  transform: rotate(-0.7deg);
}

.page-card:nth-child(even) {
  transform: rotate(0.8deg);
}

.page-card img {
  width: 100%;
}

.drag-note {
  color: var(--teal-700);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.inside {
  background: var(--white);
}

.inside__grid {
  display: grid;
  gap: 48px;
}

.inside__image {
  background: var(--ivory);
  border: 1px solid rgba(15, 92, 94, 0.14);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 10px;
  position: relative;
  transform: rotate(-1.5deg);
}

.inside__image img {
  border-radius: 13px;
}

.inside__sticker {
  align-items: center;
  background: var(--coral);
  border: 5px solid var(--white);
  border-radius: 50%;
  bottom: -20px;
  color: var(--teal-950);
  display: flex;
  font-family: var(--title);
  font-size: 0.78rem;
  font-weight: 900;
  height: 84px;
  justify-content: center;
  line-height: 0.86;
  position: absolute;
  right: -8px;
  text-align: center;
  transform: rotate(8deg);
  width: 84px;
}

.category-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin-top: 30px;
}

.category-list li {
  align-items: center;
  display: flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 9px;
}

.transformation__cards {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.transform-card {
  border-radius: 19px;
  padding: 25px;
}

.transform-card > span {
  display: block;
  font-family: var(--title);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  margin-bottom: 17px;
}

.transform-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.transform-card li {
  font-size: 0.82rem;
  font-weight: 700;
}

.transform-card--before {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.transform-card--before > span {
  color: #ea8b81;
}

.transform-card--after {
  background: var(--sage-soft);
  color: var(--teal-950);
}

.transform-card--after > span {
  color: var(--coral-strong);
}

.transform-arrow {
  color: var(--coral);
  font-family: var(--title);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.bonuses {
  background: var(--cream);
}

.bonus-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.bonus-item {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(15, 92, 94, 0.12);
  border-radius: 17px;
  display: grid;
  gap: 15px;
  grid-template-columns: 62px 1fr;
  padding: 18px;
}

.bonus-item__number {
  align-items: center;
  aspect-ratio: 0.75;
  background: var(--teal-900);
  border-radius: 8px 13px 13px 8px;
  box-shadow: 5px 5px 0 var(--sage);
  color: var(--coral);
  display: flex;
  font-family: var(--title);
  font-size: 1.45rem;
  font-weight: 900;
  justify-content: center;
}

.bonus-item small {
  color: var(--coral-strong);
  display: block;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 3px;
}

.bonus-item h3 {
  color: var(--teal-900);
  font-family: var(--title);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 0.98;
}

.bonus-item p {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1.45;
  margin-top: 7px;
}

.offers {
  padding-top: 88px;
}

.offers__bg-word {
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--title);
  font-size: 8rem;
  font-weight: 900;
  left: -30px;
  line-height: 1;
  position: absolute;
  top: 20px;
  white-space: nowrap;
}

.offers__intro {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 18px;
}

.session-inline {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  margin: 27px 0 52px;
  padding: 12px 14px;
}

.session-inline span {
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.session-inline strong {
  font-family: var(--title);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.offer-stack {
  display: grid;
  gap: 54px;
}

.offer-card {
  background: var(--ivory);
  border-radius: 24px;
  color: var(--ink);
  padding: 27px 20px 24px;
  position: relative;
}

.offer-card--complete {
  border: 3px solid var(--coral);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.offer-card__popular {
  background: var(--coral);
  border-radius: 12px 12px 0 0;
  color: var(--teal-950);
  font-size: 0.68rem;
  font-weight: 900;
  left: 20px;
  letter-spacing: 0.07em;
  padding: 9px 10px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -35px;
}

.offer-card__label {
  color: var(--coral-strong);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
}

.offer-card__head > span {
  color: var(--teal-700);
  display: block;
  font-family: var(--title);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
}

.offer-card__head h3 {
  color: var(--teal-950);
  font-family: var(--title);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.offer-card__head p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 9px;
}

.offer-card__product {
  height: 190px;
  margin: 20px auto 10px;
}

.offer-card__product img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.offer-card__product--mockup {
  height: 205px;
  margin-inline: -20px;
}

.offer-card > ul {
  border-bottom: 1px solid rgba(15, 92, 94, 0.12);
  border-top: 1px solid rgba(15, 92, 94, 0.12);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 10px 0 20px;
  padding-block: 19px;
}

.offer-card li {
  align-items: center;
  display: flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 8px;
}

.offer-card li b {
  align-items: center;
  background: var(--sage-soft);
  border-radius: 50%;
  color: var(--teal-700);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.7rem;
  height: 21px;
  justify-content: center;
  width: 21px;
}

.offer-price {
  text-align: center;
}

.offer-price small {
  color: var(--muted);
  display: block;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.offer-price strong {
  color: var(--teal-950);
  display: block;
  font-family: var(--title);
  font-size: 4.25rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 5px 0 18px;
}

.offer-price sup {
  font-size: 1.05rem;
  letter-spacing: 0;
  vertical-align: 1.75rem;
}

.offer-price strong span {
  font-size: 2.25rem;
}

.buy-button {
  background: var(--coral);
  font-size: 1.02rem;
}

.buy-button--outline {
  background: transparent;
  border-color: var(--teal-700);
  box-shadow: none;
  color: var(--teal-900);
}

.offer-card__safe {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  margin-top: 11px;
  text-align: center;
}

.price-compare {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 38px;
  padding: 16px 10px;
}

.price-compare > div {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.price-compare span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.53rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-compare strong {
  color: var(--white);
  font-family: var(--title);
  font-size: 1.48rem;
  line-height: 1;
}

.price-compare small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.5rem;
}

.price-compare > i {
  color: var(--coral);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
}

.price-compare__winner strong,
.price-compare__winner span {
  color: var(--coral);
}

.delivery {
  background: var(--white);
}

.delivery__steps {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.delivery__steps article {
  align-items: center;
  border: 1px solid rgba(15, 92, 94, 0.13);
  border-radius: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: 52px 1fr;
  padding: 17px;
  position: relative;
}

.delivery__steps article > span {
  align-items: center;
  background: var(--coral);
  border-radius: 12px;
  color: var(--teal-950);
  display: flex;
  font-family: var(--title);
  font-size: 1.45rem;
  font-weight: 900;
  grid-row: 1 / 3;
  height: 52px;
  justify-content: center;
}

.delivery__steps h3 {
  color: var(--teal-900);
  font-family: var(--title);
  font-size: 1.2rem;
  line-height: 1;
}

.delivery__steps p {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
}

.faq {
  background: var(--sage-soft);
}

.faq__list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.faq details {
  background: var(--white);
  border: 1px solid rgba(15, 92, 94, 0.12);
  border-radius: 14px;
  padding-inline: 17px;
}

.faq summary {
  align-items: center;
  color: var(--teal-950);
  cursor: pointer;
  display: flex;
  font-family: var(--title);
  font-size: 1.02rem;
  font-weight: 800;
  justify-content: space-between;
  line-height: 1.05;
  list-style: none;
  min-height: 64px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  color: var(--coral-strong);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 0 19px;
}

.final-call__grid {
  display: grid;
  gap: 15px;
}

.final-call__visual {
  height: 250px;
  position: relative;
}

.final-call__visual img {
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
  left: 50%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
}

.final-call__copy > p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 600;
  margin: 19px 0 25px;
}

.footer {
  background: var(--ivory);
  padding: 45px 0 95px;
  text-align: center;
}

.footer img {
  margin: 0 auto 20px;
  width: 210px;
}

.footer p {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.6;
}

.footer > .shell > span {
  color: var(--muted);
  display: block;
  font-size: 0.58rem;
  margin-top: 18px;
}

.sticky-buy {
  align-items: center;
  background: var(--coral);
  bottom: 0;
  box-shadow: 0 -12px 30px rgba(5, 47, 49, 0.18);
  color: var(--teal-950);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 9px 17px;
  position: fixed;
  right: 0;
  z-index: 90;
}

.sticky-buy span {
  font-family: var(--title);
  font-size: 1.03rem;
  font-weight: 900;
}

.sticky-buy strong {
  border-left: 1px solid rgba(5, 47, 49, 0.2);
  font-size: 0.61rem;
  font-weight: 900;
  padding-left: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.session-expired .session-offer__pulse {
  animation: none;
  background: #b6c2c0;
}

.session-expired .session-offer__copy strong {
  color: #d8dfde;
}

.session-expired .session-offer__timer {
  opacity: 0.62;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.76);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-7px) rotate(-3deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 520px) {
  .session-offer__copy span {
    display: block;
  }

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

  .hero__checks li:last-child {
    grid-column: 1 / -1;
  }

  .pages-slider {
    grid-auto-columns: 62%;
  }

  .bonus-item {
    grid-template-columns: 76px 1fr;
  }
}

@media (min-width: 760px) {
  body {
    font-size: 18px;
    padding-bottom: 0;
  }

  .shell {
    padding-inline: 34px;
  }

  .section {
    padding-block: 100px;
  }

  .session-offer {
    padding-inline: max(32px, calc((100vw - 1112px) / 2));
  }

  .session-offer__copy strong {
    font-size: 0.72rem;
  }

  .nav {
    height: 76px;
    padding-inline: max(34px, calc((100vw - 1112px) / 2));
  }

  .nav__brand {
    height: 60px;
    width: 220px;
  }

  .hero {
    padding: 72px 0 40px;
  }

  .hero__content {
    align-items: center;
    grid-template-columns: 1.02fr 0.98fr;
  }

  .hero__copy {
    max-width: 600px;
  }

  .hero__visual {
    height: 560px;
  }

  .hero__mockup {
    width: 135%;
  }

  .burst--top {
    left: 0;
    top: 76px;
  }

  .pain__grid,
  .method__steps,
  .delivery__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-card {
    min-height: 235px;
  }

  .method-step {
    align-items: start;
    grid-template-columns: 1fr;
    min-height: 235px;
    padding: 26px;
  }

  .method-step__number {
    width: 58px;
  }

  .cta {
    max-width: 460px;
  }

  .pages-slider {
    grid-auto-columns: 38%;
    padding-inline: max(34px, calc((100vw - 1112px) / 2));
  }

  .inside__grid {
    align-items: center;
    gap: 82px;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .transformation__cards {
    align-items: center;
    grid-template-columns: 1fr 70px 1fr;
  }

  .transform-arrow {
    transform: rotate(-90deg);
  }

  .bonus-list {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-item:last-child {
    grid-column: 1 / -1;
    margin-inline: auto;
    max-width: 620px;
    width: 100%;
  }

  .offer-stack {
    align-items: stretch;
    grid-template-columns: 0.94fr 1.06fr;
    margin: 80px auto 0;
    max-width: 980px;
  }

  .offer-card--complete {
    transform: translateY(-20px);
  }

  .offer-card {
    display: flex;
    flex-direction: column;
    padding: 35px;
  }

  .offer-card__product {
    height: 260px;
  }

  .offer-card__product--mockup {
    height: 275px;
    margin-inline: -35px;
  }

  .offer-card > ul {
    flex: 1;
  }

  .price-compare {
    margin-inline: auto;
    max-width: 700px;
  }

  .faq__list {
    margin-inline: auto;
    max-width: 850px;
  }

  .final-call__grid {
    align-items: center;
    gap: 70px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .final-call__visual {
    height: 480px;
  }

  .sticky-buy {
    display: none;
  }

  .footer {
    padding-bottom: 50px;
  }
}

@media (min-width: 1060px) {
  .hero h1 {
    font-size: 5.25rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .section-title {
    font-size: 4.6rem;
    max-width: 900px;
  }

  .section-lead {
    font-size: 1rem;
    max-width: 780px;
  }

  .pages-slider {
    grid-auto-columns: 31%;
  }

  .hero__visual {
    height: 620px;
  }

  .bonus-item {
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track,
  .session-offer__pulse,
  .burst {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
