:root {
  --font-body: 'Inter', sans-serif;
  --font-title: 'Sora', sans-serif;

  --green: #16a34a;
  --green-light: #4ade80;
  --navy: #0f172a;
  --navy2: #1e293b;
  --slate: #94a3b8;
  --slate2: #cbd5e1;

  --bg: var(--navy);
  --surface: var(--navy2);
  --paper: #ffffff;
  --ink: #f8fafc;
  --dark-ink: #111827;
  --muted: var(--slate2);
  --muted-dark: #475569;
  --green-dark: #15803d;
  --green-soft: #d9f7e6;
  --red: #ef233c;
  --gold: #f2b705;
  --warm: #f4f1e8;
  --warm-deep: #e8e0cf;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(9, 9, 11, 0.12);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --display: var(--font-title);
  --body: var(--font-body);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--body);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar strong {
  min-width: 0;
  color: #ffffff;
  font-size: clamp(0.82rem, 2.7vw, 0.98rem);
  font-weight: 800;
}

.topbar .button {
  width: auto;
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--display);
  font-weight: 800;
}

.brand img {
  flex: 0 0 auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green-soft);
}

.hero,
.section {
  padding-inline: clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  gap: 22px;
  min-height: auto;
  padding-top: 18px;
  padding-bottom: 42px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid rgba(217, 247, 230, 0.14);
}

.hero-panel,
.section-heading,
.split,
.pricing-grid,
.benefit-grid,
.choice-layout,
.final-offer-grid,
.carousel-shell {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.eyebrow,
.plan-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--green);
  border: 1px solid rgba(217, 247, 230, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.proof-section h2 {
  max-width: 860px;
  font-size: clamp(1.55rem, 6.6vw, 3.2rem);
  line-height: 1.04;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(1.78rem, 8.3vw, 4.15rem);
  line-height: 1;
}

h2 {
  font-size: clamp(1.48rem, 6.2vw, 3.15rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.05rem, 4vw, 1.55rem);
  line-height: 1.08;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 690px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(0.98rem, 3.8vw, 1.16rem);
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--green);
  border-color: rgba(217, 247, 230, 0.24);
  box-shadow: 0 16px 30px rgba(22, 163, 74, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--navy);
  background: var(--green-light);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 10px;
  background: rgba(30, 41, 59, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.context-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 9px 12px;
  color: var(--slate2);
  background: var(--navy2);
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.context-badge svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--green-light);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--slate2);
  font-size: 0.92rem;
  font-weight: 700;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  color: var(--navy);
  background: var(--green-light);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-product {
  min-height: 0;
  display: grid;
  place-items: center;
}

.hero-cover-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(90vw, 520px);
  min-height: min(74vw, 420px);
  padding: 8px;
}

.cover-image {
  position: relative;
  z-index: 3;
  width: min(86vw, 500px);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.42));
}

.hero-preview-sheet {
  position: absolute;
  z-index: 1;
  width: min(28vw, 150px);
  height: auto;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.28);
  opacity: 0.86;
  object-fit: cover;
}

.sheet-one {
  left: 2%;
  bottom: 6%;
  transform: rotate(-8deg);
}

.sheet-two {
  right: 2%;
  top: 7%;
  transform: rotate(7deg);
}

.cover-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--dark-ink);
  background: var(--gold);
  border: 3px solid var(--dark-ink);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  font-family: var(--display);
  font-size: 1rem;
  transform: rotate(10deg);
}

.section {
  padding-top: 48px;
  padding-bottom: 48px;
  color: var(--dark-ink);
  background: #ffffff;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted-dark);
  font-size: 1.06rem;
}

.inside-section,
.faq-section {
  background: #f8fafc;
}

.proof-section,
.transform-section {
  background: #ffffff;
}

.closing-line {
  width: min(1120px, 100%);
  margin: 20px auto 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.pain-section {
  background: #f8fafc;
}

.pain-section .section-heading h2 {
  max-width: 920px;
}

.pain-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: #334155;
  font-weight: 700;
}

.pain-section .benefit-grid article {
  background: #ffffff;
  border-top: 0;
  border-left: 5px solid var(--green);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.pain-section .benefit-grid h3 {
  color: var(--navy);
}

.pain-section .benefit-grid p {
  color: #334155;
  font-weight: 650;
}

.benefit-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.benefit-grid article,
.price-card,
.proof-card,
.preview-page,
.modal-card {
  color: var(--dark-ink);
  background: #fbfaf5;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(21, 33, 31, 0.08);
}

.benefit-grid article {
  border-top: 5px solid var(--green);
}

.benefit-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.benefit-grid svg,
.check-list svg,
.price-card svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.benefit-grid p,
.price-card p,
.proof-card small,
.faq-answer {
  color: var(--muted-dark);
}

.carousel-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 78%);
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.preview-page,
.proof-card {
  min-height: 360px;
  padding: 22px;
  text-align: left;
  scroll-snap-align: start;
}

.preview-page {
  display: grid;
  align-content: end;
  gap: 10px;
  width: 100%;
  color: inherit;
  cursor: zoom-in;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), #fff 56%),
    repeating-linear-gradient(0deg, rgba(22, 163, 74, 0.08) 0 1px, transparent 1px 34px);
}

.preview-page-image {
  min-height: 0;
  padding: 0;
  align-content: stretch;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 3 / 4;
}

.preview-page-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.preview-page span,
.proof-card span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-page p {
  color: var(--muted-dark);
}

.proof-track {
  grid-auto-columns: minmax(250px, 82%);
  align-items: start;
}

.proof-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 260px;
}

.proof-card-image {
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  border-color: rgba(217, 247, 230, 0.18);
  cursor: zoom-in;
}

.proof-card-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--navy);
}

.proof-card p {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.12;
}

#modal-content .proof-card-image img {
  max-height: 74svh;
  aspect-ratio: auto;
}

.carousel-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.carousel-button svg {
  width: 20px;
  height: 20px;
}

.split {
  display: grid;
  gap: 22px;
  padding: 24px;
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
}

.split p {
  margin-top: 12px;
  color: var(--slate2);
}

.split .eyebrow {
  color: #fff;
  background: var(--green);
  border-color: rgba(217, 247, 230, 0.22);
}

.check-list,
.compact-list,
.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.compact-list li,
.price-card li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.receive-grid {
  display: grid;
  gap: 16px;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.receive-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  color: #ffffff;
  background: var(--navy2);
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.content-section {
  background: var(--navy);
  color: #ffffff;
}

.choice-section {
  color: #ffffff;
  background: var(--navy);
}

.choice-section .section-heading p:not(.eyebrow) {
  color: var(--slate2);
}

.choice-layout {
  display: grid;
  gap: 16px;
}

.choice-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.2);
}

.choice-card-featured {
  border: 3px solid var(--green);
  box-shadow: 0 28px 70px rgba(22, 163, 74, 0.18);
}

.choice-card p {
  color: #475569;
  font-weight: 650;
}

.choice-media {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.12), rgba(15, 23, 42, 0.04)),
    #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
}

.choice-media img {
  width: min(310px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.38));
}

.content-list,
.benefit-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.content-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.benefit-list {
  gap: 8px;
}

.benefit-list li {
  padding: 8px 10px;
  color: var(--navy);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.card-price {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 8px;
}

.card-price span {
  color: #475569;
  font-size: 0.88rem;
  font-weight: 800;
}

.card-price strong {
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.4rem, 10vw, 3.35rem);
  line-height: 1;
}

.package-detail {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.package-detail h4 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.1;
}

.package-detail p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bonus-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
}

.bonus-showcase figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.bonus-showcase img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.bonus-showcase figcaption {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.bonus-showcase-complete {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card:not(.choice-card-featured) .bonus-showcase {
  grid-template-columns: minmax(0, 1fr);
}

.choice-card:not(.choice-card-featured) .bonus-showcase img {
  max-height: 230px;
}

.choice-divider {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-inline: auto;
  color: var(--green-light);
  background: var(--navy2);
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  z-index: 1;
}

.choice-divider::before,
.choice-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(34vw, 160px);
  height: 1px;
  background: rgba(203, 213, 225, 0.18);
  transform: none;
  z-index: -1;
}

.choice-divider::before {
  left: auto;
  right: calc(100% + 8px);
}

.choice-divider::after {
  left: calc(100% + 8px);
}

.content-section .section-heading p:not(.eyebrow) {
  color: var(--slate2);
}

.receive-portuguese::before,
.receive-card-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}

.receive-card-featured {
  border: 3px solid var(--green);
  box-shadow: 0 28px 70px rgba(22, 163, 74, 0.18);
}

.receive-card p {
  color: rgba(255, 255, 255, 0.74);
}

.material-list {
  display: grid;
  gap: 12px;
}

.material-list-complete {
  gap: 10px;
}

.material-group-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  padding: 7px 10px;
  color: #181510;
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.material-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 150px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(217, 247, 230, 0.16);
  border-radius: 8px;
}

.material-item img {
  width: 92px;
  height: auto;
  max-height: 130px;
  aspect-ratio: 420 / 594;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.material-item > div {
  min-width: 0;
}

.material-item span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  color: #ffffff;
  background: rgba(22, 163, 74, 0.76);
  border: 1px solid rgba(217, 247, 230, 0.16);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.material-bonus span {
  color: #181510;
  background: rgba(242, 183, 5, 0.92);
  border-color: rgba(242, 183, 5, 0.2);
}

.material-item h4 {
  margin: 8px 0 5px;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.material-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.42;
}

.receive-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 4px;
}

.receive-card-head > strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(22, 163, 74, 0.92);
  border: 1px solid rgba(217, 247, 230, 0.2);
  border-radius: 8px;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.compact-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(22, 163, 74, 0.22);
  border: 1px solid rgba(217, 247, 230, 0.18);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.topic-cloud span:nth-child(4n),
.topic-cloud span:nth-child(7n) {
  color: #ffffff;
  background: rgba(239, 35, 60, 0.24);
  border-color: rgba(239, 35, 60, 0.2);
}

.topic-cloud span:nth-child(5n) {
  color: #181510;
  background: rgba(242, 183, 5, 0.9);
  border-color: rgba(242, 183, 5, 0.3);
}

.subject-board {
  display: grid;
  gap: 10px;
}

.subject-panel {
  display: grid;
  gap: 10px;
  padding: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-dark), var(--navy2));
  border: 1px solid rgba(217, 247, 230, 0.16);
  border-radius: 8px;
}

.subject-panel:nth-child(2) {
  background: linear-gradient(135deg, #185c72, var(--navy2));
}

.subject-panel:nth-child(3) {
  background: linear-gradient(135deg, #8a2830, var(--navy2));
}

.subject-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.subject-panel-head strong {
  font-family: var(--display);
  line-height: 1.08;
  text-transform: uppercase;
}

.subject-panel-head > span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 900;
}

.subject-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.subject-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.receive-card .button-secondary {
  color: #ffffff;
  background: rgba(22, 163, 74, 0.86);
  border-color: rgba(217, 247, 230, 0.2);
}

.offer-section {
  color: #ffffff;
  background: var(--navy);
}

.offer-section .section-heading p:not(.eyebrow) {
  color: var(--slate2);
}

.final-offer-grid {
  display: grid;
  gap: 14px;
}

.offer-card-compact {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  color: #ffffff;
  background: var(--navy2);
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.offer-card-compact.featured {
  border: 3px solid var(--green);
  box-shadow: 0 28px 70px rgba(22, 163, 74, 0.18);
}

.offer-countdown {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: -4px auto 18px;
  padding: 14px;
  color: #ffffff;
  background: var(--navy2);
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.offer-countdown span {
  font-weight: 900;
  text-transform: uppercase;
}

.offer-countdown strong {
  display: inline-grid;
  place-items: center;
  min-width: 92px;
  min-height: 46px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--green-light);
  border-radius: 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
}

.price-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  color: #ffffff;
  background: var(--navy2);
  border-color: rgba(203, 213, 225, 0.18);
}

.price-card .button-secondary {
  color: #ffffff;
  background: rgba(22, 163, 74, 0.18);
  border-color: rgba(74, 222, 128, 0.34);
}

.price-card .bonus-line {
  padding: 9px;
  color: #ffffff;
  background: rgba(242, 183, 5, 0.16);
  border: 1px solid rgba(242, 183, 5, 0.34);
  border-radius: 8px;
  font-weight: 850;
}

.price-card .bonus-line svg {
  color: #a66d00;
}

.price-card.featured {
  border: 3px solid var(--green);
  box-shadow: 0 28px 70px rgba(22, 163, 74, 0.18);
}

.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.7rem, 12vw, 3.8rem);
  line-height: 1;
  color: var(--green-light);
}

.price-box {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 8px;
}

.price-box > span {
  width: fit-content;
  color: var(--slate2);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-card.featured .price-box {
  background: rgba(242, 183, 5, 0.14);
  border-color: rgba(242, 183, 5, 0.28);
}

.price-card .button {
  min-height: 58px;
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.24);
}

.single-cover {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin: -2px -2px 4px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.18), rgba(15, 23, 42, 0)),
    var(--navy);
  border-radius: 8px;
}

.single-cover img {
  width: min(330px, 76vw);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.44));
}

.package-covers {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin: -2px -2px 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(22, 163, 74, 0.18), rgba(15, 23, 42, 0)),
    var(--navy);
  border-radius: 8px;
  overflow: hidden;
}

.package-mockup {
  width: min(370px, 78vw);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.44));
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(880px, 100%);
  margin-inline: auto;
}

.guarantee-section {
  color: #ffffff;
  background: var(--navy);
}

.guarantee-card {
  width: min(900px, 100%);
  display: grid;
  gap: 16px;
  align-items: center;
  margin-inline: auto;
  padding: 24px 18px;
  color: #ffffff;
  text-align: center;
  background: var(--navy2);
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.guarantee-card img {
  width: min(190px, 54vw);
  height: auto;
  justify-self: center;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.guarantee-card h2 {
  max-width: 720px;
  margin-inline: auto;
  color: #f8fafc;
  font-size: clamp(1.65rem, 7vw, 3rem);
  line-height: 1.1;
  text-transform: none;
}

.guarantee-card h2 span {
  color: #ef4b3f;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.guarantee-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--slate2);
  font-size: 1rem;
  font-weight: 700;
}

.faq-item {
  background: #fbfaf5;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 16px;
  color: var(--dark-ink);
  background: transparent;
  border: 0;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 16px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: var(--dark-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.sticky-cta span {
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.sticky-cta .button {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.88rem;
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(9, 9, 11, 0.82);
}

.preview-modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, 90svh);
  overflow: auto;
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.5rem;
}

#modal-content {
  margin-top: 18px;
}

#modal-content .preview-page {
  min-height: 480px;
}

#modal-content .preview-page-image {
  min-height: 0;
  cursor: default;
}

#modal-content .preview-page-image img {
  width: 100%;
  max-height: 74svh;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (min-width: 700px) {
  .nav-links {
    display: flex;
  }

  .hero-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .button {
    width: auto;
  }

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

  .pain-section .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .choice-layout {
    grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
    align-items: center;
  }

  .choice-divider::before,
  .choice-divider::after {
    top: 50%;
    width: 34px;
    transform: none;
  }

  .choice-divider::before {
    left: auto;
    right: calc(100% + 8px);
  }

  .choice-divider::after {
    left: calc(100% + 8px);
  }

  .final-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .receive-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

  .receive-card-featured .material-item {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 132px;
  }

  .receive-card-featured .material-item img {
    width: 82px;
    max-height: 116px;
  }

  .guarantee-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 24px 28px;
  }

  .carousel-track {
    grid-auto-columns: minmax(220px, 24%);
  }

  .proof-track {
    grid-auto-columns: minmax(280px, 32%);
  }

  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    padding: 34px;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.88fr);
    align-items: center;
    min-height: calc(100svh - 62px);
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 5.6vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 4.2vw, 3.15rem);
  }

  h3 {
    font-size: clamp(1.16rem, 2.2vw, 1.55rem);
  }

  .proof-section h2 {
    font-size: clamp(2rem, 3.9vw, 2.85rem);
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .button {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .benefit-grid article,
  .price-card {
    padding: 18px;
  }

  .benefit-grid svg,
  .check-list svg,
  .price-card svg {
    width: 18px;
    height: 18px;
  }

  .check-list li,
  .compact-list li,
  .price-card li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    font-size: 0.9rem;
  }

  .price-card {
    gap: 14px;
  }

  .price {
    font-size: clamp(2.65rem, 4.6vw, 3.25rem);
  }

  .price-card .button {
    min-height: 52px;
  }

  .single-cover,
  .package-covers {
    min-height: 220px;
  }

  .single-cover img {
    width: min(290px, 100%);
  }

  .package-mockup {
    width: min(330px, 100%);
  }

  .offer-countdown strong {
    min-height: 42px;
    font-size: 1.16rem;
  }

  .receive-card {
    gap: 14px;
    padding: 16px;
  }

  .receive-card-head > strong {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.86rem;
  }

  .material-group-label,
  .material-item span {
    font-size: 0.72rem;
  }

  .material-item h4 {
    font-size: 1rem;
  }

  .material-item p {
    font-size: 0.84rem;
  }

  .guarantee-card h2 {
    font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  }

  .hero-panel {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    margin-left: max(0px, calc((100vw - 1120px) / 2));
  }

  .hero-product {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-cover-stage {
    width: min(50vw, 560px);
    min-height: 430px;
    padding: 18px;
  }

  .cover-image {
    width: min(48vw, 540px);
  }

  .hero-preview-sheet {
    width: min(15vw, 170px);
  }

  .cover-badge {
    width: 92px;
    height: 92px;
    font-size: 1.15rem;
  }
}

@media (max-width: 430px) {
  .carousel-track {
    grid-auto-columns: minmax(230px, 78%);
  }

  .preview-page-image {
    border-radius: 8px;
  }

  .material-item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    min-height: 116px;
    padding: 9px;
  }

  .material-item img {
    width: 70px;
    max-height: 100px;
  }

  .material-item h4 {
    font-size: 0.98rem;
  }

  .material-item p {
    font-size: 0.84rem;
  }

  .offer-countdown {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .sticky-cta {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
