:root {
  --navy: #0b2146;
  --navy-2: #06152f;
  --blue: #173f78;
  --gold: #c99a1b;
  --gold-dark: #be8f13;
  --gold-light: #e8cd78;
  --cream: #fbf7ed;
  --soft: #f7f3e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #162033;
  --muted: #596579;
  --line: rgba(11, 33, 70, 0.13);
  --shadow: 0 14px 36px rgba(11, 33, 70, 0.12);
  --shadow-strong: 0 22px 58px rgba(4, 15, 36, 0.24);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --gutter: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

main,
section,
header,
footer {
  min-width: 0;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
li,
span {
  overflow-wrap: break-word;
}

[id] {
  scroll-margin-top: 12px;
}

.container,
.container--narrow,
.container--video,
.container--faq {
  width: min(100% - (var(--gutter) * 2), 1120px);
  margin-inline: auto;
}

.container--narrow {
  max-width: 860px;
}

.container--video {
  max-width: 920px;
}

.container--faq {
  max-width: 820px;
}

/* Trust bar */
.trust-bar {
  background: var(--navy-2);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar__inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8px;
  padding-block: 7px;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}

.trust-bar__inner span {
  color: rgba(255, 255, 255, 0.9);
}

.trust-bar__inner span:nth-child(2) {
  display: none;
}

/* Shared typography */
.hero h1,
.section-heading h2,
.belief-copy h2,
.cost-copy h2,
.closing h2,
.guarantee-card h2,
.method-summary p,
.bonus-heading h3,
.main-product-card h3,
.content-extra h3,
.offer-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.section-kicker--gold {
  color: var(--gold-light);
}

/* Hero: mobile-first */
.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 50px;
  background:
    radial-gradient(circle at 85% 5%, rgba(201, 154, 27, 0.12), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #faf6eb 100%);
}

.hero__glow {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  right: -150px;
  top: -150px;
  background: rgba(201, 154, 27, 0.10);
  filter: blur(14px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.hero__copy {
  min-width: 0;
  text-align: center;
}

.hero h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 9.2vw, 2.55rem);
  line-height: 1.04;
}

.hero__lead {
  margin: 0 auto 18px;
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero__lead strong {
  color: var(--navy);
}

.hero__mechanism {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 20px;
  padding: 14px;
  border: 1px solid rgba(201, 154, 27, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #39465b;
  text-align: left;
}

.hero__mechanism p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero__mechanism-icon {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 850;
}

.hero__visual {
  min-width: 0;
}

.hero__image-wrap {
  overflow: hidden;
  border: 1px solid rgba(11, 33, 70, 0.11);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.hero__image-wrap img {
  aspect-ratio: 1.5;
  object-fit: cover;
}

.hero__proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
  padding: 11px 6px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(11, 33, 70, 0.08);
}

.hero__proof-strip span {
  min-width: 0;
  padding-inline: 4px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.61rem;
  line-height: 1.3;
  text-align: center;
}

.hero__proof-strip span:last-child {
  border-right: 0;
}

.hero__proof-strip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 13px;
  text-decoration: none;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.25;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn--large {
  min-height: 58px;
  padding: 16px 20px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--navy), #163e79);
  color: var(--white);
  box-shadow: 0 13px 30px rgba(11, 33, 70, 0.22);
}

.btn--gold {
  background: linear-gradient(135deg, #e8cd78, #c99a1b);
  color: #0c1d3d;
  box-shadow: 0 13px 30px rgba(201, 154, 27, 0.26);
}

.btn--outline {
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
}

.btn:focus-visible,
.sample-button:focus-visible,
.faq-toggle:focus-visible,
.lightbox__close:focus-visible,
.sticky-cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.microcopy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  position: relative;
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 154, 27, 0.11), transparent 28%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.section--pattern {
  background-color: #fffdf8;
  background-image: radial-gradient(rgba(201, 154, 27, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading--wide {
  max-width: 860px;
}

.section-heading h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 8.3vw, 2.3rem);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

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

.section-heading--light p {
  color: rgba(255, 255, 255, 0.76);
}

/* Pain */
.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.pain-card {
  position: relative;
  min-width: 0;
  padding: 21px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 33, 70, 0.07);
}

.pain-card__number {
  position: absolute;
  right: 16px;
  top: 14px;
  color: rgba(201, 154, 27, 0.20);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 850;
  line-height: 1;
}

.pain-card h3 {
  max-width: 82%;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.32;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.58;
}

/* Cost */
.cost-copy {
  text-align: center;
}

.cost-copy h2 {
  margin: 12px 0 17px;
  color: var(--white);
  font-size: clamp(1.85rem, 8.5vw, 2.4rem);
  line-height: 1.12;
}

.cost-copy p {
  max-width: 740px;
  margin: 0 auto 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.cost-copy__emphasis {
  padding-top: 10px;
  color: var(--gold-light) !important;
  font-weight: 750;
}

/* Belief */
.belief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.belief-visual {
  order: 2;
  min-width: 0;
  padding: 7px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.belief-visual img {
  border-radius: 11px;
}

.belief-copy {
  min-width: 0;
  text-align: center;
}

.belief-copy h2 {
  margin: 10px 0 16px;
  color: var(--navy);
  font-size: clamp(1.8rem, 8.3vw, 2.35rem);
  line-height: 1.1;
}

.belief-copy > p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 0.94rem;
}

.belief-note {
  display: grid;
  gap: 5px;
  margin-top: 19px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: var(--cream);
  text-align: left;
}

.belief-note strong {
  color: var(--navy);
  line-height: 1.35;
}

.belief-note span {
  color: var(--muted);
  font-size: 0.87rem;
}

/* Method */
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.method-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(11, 33, 70, 0.07);
}

.method-card__letter {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(11, 33, 70, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 850;
}

.method-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.3;
}

.method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.method-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 15px;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow-strong);
}

.method-summary img {
  border-radius: 11px;
}

.method-summary__label {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.method-summary p {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.2;
}

/* Demonstration */
.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.sample-feature,
.sample-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: zoom-in;
}

.sample-feature {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.sample-feature img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sample-feature__zoom {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(6, 21, 47, 0.92);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
}

.demo-points {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.demo-points article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.demo-points article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 850;
}

.demo-points h3 {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 0.9rem;
}

.demo-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.48;
}

.sample-grid {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  padding: 2px 1px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sample-grid::-webkit-scrollbar,
.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.sample-card {
  flex: 0 0 min(78vw, 300px);
  border-radius: 13px;
  box-shadow: 0 7px 21px rgba(11, 33, 70, 0.08);
  scroll-snap-align: start;
}

.sample-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sample-card > span {
  display: block;
  padding: 10px 11px;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 800;
  text-align: left;
}

/* Video */
.video-shell {
  overflow: hidden;
  border: 1px solid rgba(11, 33, 70, 0.14);
  border-radius: 16px;
  background: #020712;
  box-shadow: var(--shadow-strong);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020712;
  object-fit: contain;
}

.center-action {
  margin-top: 20px;
  text-align: center;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
}

.benefit-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 33, 70, 0.06);
}

.benefit-grid article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 1.2rem;
  font-weight: 850;
}

.benefit-grid h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.32;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.audience-grid article {
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.audience-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 13px;
  border-radius: 50%;
  background: rgba(241, 213, 121, 0.16);
  color: var(--gold-light);
  font-size: 1.2rem;
}

.audience-grid h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 1.05rem;
}

.audience-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.87rem;
}

/* Light audience section: preserves rhythm on long mobile pages */
.section--audience-light {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.section--audience-light .section-heading h2 {
  color: var(--navy);
}

.section--audience-light .section-heading p {
  color: var(--muted);
}

.section--audience-light .audience-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 33, 70, 0.06);
}

.section--audience-light .audience-icon {
  background: rgba(201, 154, 27, 0.13);
  color: var(--gold-dark);
}

.section--audience-light .audience-grid h3 {
  color: var(--navy);
}

.section--audience-light .audience-grid p {
  color: var(--muted);
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 21px 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 33, 70, 0.06);
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
}

.pillar-card--green::before { background: #438653; }
.pillar-card--orange::before { background: #cf7825; }
.pillar-card--purple::before { background: #7750a5; }

.pillar-card > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-card--green > span { color: #347143; }
.pillar-card--orange > span { color: #ae5d16; }
.pillar-card--purple > span { color: #67418f; }

.pillar-card h3 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 1.03rem;
  line-height: 1.32;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.content-extra {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 21px;
  border-radius: 18px;
  background: var(--cream);
}

.content-extra__label,
.product-tag {
  display: inline-flex;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-extra h3 {
  margin: 7px 0 9px;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.2;
}

.content-extra p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.content-extra img {
  border-radius: 13px;
  box-shadow: var(--shadow);
}

/* Testimonials: horizontal swipe on phones */
.mobile-swipe-hint {
  margin: -16px 0 13px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 12px;
  padding: 2px 1px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial {
  flex: 0 0 min(84vw, 330px);
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 33, 70, 0.06);
  scroll-snap-align: start;
}

.stars {
  margin-bottom: 10px;
  color: #c58d05;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.testimonial > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.testimonial > div:last-child {
  display: grid;
  gap: 1px;
}

.testimonial strong {
  color: var(--navy);
  font-size: 0.87rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.74rem;
}

/* Product and bonuses */
.main-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.main-product-card__image,
.main-product-card__copy {
  min-width: 0;
}

.main-product-card__image img {
  border-radius: 13px;
}

.main-product-card h3 {
  margin: 7px 0 9px;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1.16;
}

.main-product-card__copy > p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.91rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-width: 0;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(201, 154, 27, 0.16);
  color: #80600c;
  font-size: 0.68rem;
  font-weight: 850;
}

.bonus-heading {
  margin: 42px 0 20px;
  text-align: center;
}

.bonus-heading > span {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bonus-heading h3 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 7.2vw, 2.15rem);
  line-height: 1.15;
}

.bonus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.bonus-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 33, 70, 0.06);
}

.bonus-card img,
.bonus-card--featured img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: #f5efe2;
}

.bonus-card > div {
  min-width: 0;
  padding: 15px 14px;
}

.bonus-card span {
  color: #80600c;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin: 5px 0 6px;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.28;
}

.bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Offers */
.section--offers {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(201, 154, 27, 0.15), transparent 28%),
    linear-gradient(150deg, #0b2146, #041126);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 20px;
}

.offer-card--complete {
  order: 1;
  border: 2px solid var(--gold);
  background: linear-gradient(155deg, #102f5f, #06152f);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.offer-card--basic {
  order: 2;
  border: 1px solid rgba(11, 33, 70, 0.16);
  background: var(--white);
  box-shadow: 0 17px 44px rgba(0, 0, 0, 0.2);
}

.offer-card__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-card__image {
  max-height: 230px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card__body {
  min-width: 0;
  padding: 23px 20px;
}

.offer-card__eyebrow {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card--basic .offer-card__eyebrow {
  color: var(--blue);
}

.offer-card h3 {
  margin: 6px 0 14px;
  font-size: clamp(1.65rem, 7.5vw, 2.15rem);
  line-height: 1.1;
}

.offer-card--complete h3 {
  color: var(--white);
}

.offer-card--basic h3 {
  color: var(--navy);
}

.offer-card--basic p {
  color: var(--muted);
  font-size: 0.88rem;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.85);
}

.check-list--light li::before {
  background: rgba(232, 205, 120, 0.18);
  color: var(--gold-light);
}

.price-block {
  display: grid;
  gap: 2px;
  margin: 23px 0 16px;
  text-align: center;
}

.price-block span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.price-block strong {
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1;
}

.price-block small {
  font-size: 1.05rem;
}

.price-block--dark span {
  color: var(--muted);
}

.price-block--dark strong {
  color: var(--navy);
}

.offer-card .btn {
  width: 100%;
}

.offer-microcopy {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  text-align: center;
}

.offer-microcopy--dark {
  color: var(--muted);
}

.payment-note {
  max-width: 600px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  line-height: 1.45;
  text-align: center;
}

/* Guarantee */
.guarantee-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 23px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: var(--shadow);
  text-align: center;
}

.guarantee-card__seal {
  display: grid;
  place-items: center;
  align-content: center;
  width: 112px;
  height: 112px;
  margin-inline: auto;
  border: 4px double var(--gold);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  box-shadow: 0 13px 30px rgba(11, 33, 70, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  font-weight: 850;
  line-height: 0.75;
}

.guarantee-card__seal small {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.guarantee-card h2 {
  margin: 8px 0 11px;
  color: var(--navy);
  font-size: clamp(1.8rem, 8vw, 2.3rem);
  line-height: 1.1;
}

.guarantee-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.89rem;
}

.text-link {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.faq-toggle {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 0.9rem;
  font-weight: 780;
  cursor: pointer;
}

.faq-toggle svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

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

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Closing */
.closing {
  position: relative;
  overflow: hidden;
  padding: 62px 0 82px;
  background: linear-gradient(150deg, #0b2146, #041126);
  color: var(--white);
  text-align: center;
}

.closing__glow {
  position: absolute;
  right: 50%;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(201, 154, 27, 0.14);
  filter: blur(25px);
  transform: translateX(50%);
  pointer-events: none;
}

.closing__content {
  position: relative;
}

.closing h2 {
  margin: 12px 0 17px;
  color: var(--white);
  font-size: clamp(1.9rem, 8.6vw, 2.45rem);
  line-height: 1.09;
}

.closing p {
  max-width: 700px;
  margin: 0 auto 23px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.closing__microcopy {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

/* Footer */
.footer {
  padding: 24px 0;
  background: #020b1a;
  color: rgba(255, 255, 255, 0.56);
}

.footer__inner {
  display: grid;
  gap: 10px;
  font-size: 0.69rem;
  line-height: 1.45;
  text-align: center;
}

.footer__inner p {
  margin: 0;
}

/* Mobile sticky CTA */
.sticky-cta {
  position: fixed;
  z-index: 50;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  background: linear-gradient(135deg, #e8cd78, #c99a1b);
  color: var(--navy);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta span {
  min-width: 0;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.2;
}

.sticky-cta strong {
  flex: 0 0 auto;
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: right;
}

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  overflow: auto;
  padding: calc(58px + env(safe-area-inset-top, 0px)) 12px calc(22px + env(safe-area-inset-bottom, 0px));
  background: rgba(2, 9, 22, 0.95);
  overscroll-behavior: contain;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: none;
  border-radius: 9px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.58);
  touch-action: pinch-zoom;
}

.lightbox p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  z-index: 2;
  top: calc(10px + env(safe-area-inset-top, 0px));
  right: 12px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(6, 21, 47, 0.86);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

/* Tablet */
@media (min-width: 641px) {
  :root {
    --gutter: 24px;
  }

  .trust-bar__inner {
    min-height: 44px;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.76rem;
  }

  .trust-bar__inner span:nth-child(2) {
    display: inline;
  }

  .hero {
    padding: 54px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 7vw, 3.5rem);
  }

  .hero__lead {
    font-size: 1.06rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .belief-copy h2,
  .cost-copy h2,
  .guarantee-card h2,
  .closing h2 {
    font-size: clamp(2.15rem, 5.5vw, 2.8rem);
  }

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

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

  .method-summary {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 25px;
    padding: 20px;
  }

  .sample-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .sample-card {
    width: auto;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .testimonial {
    width: auto;
  }

  .mobile-swipe-hint {
    display: none;
  }

  .content-extra {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 28px;
  }

  .main-product-card {
    padding: 28px;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .bonus-card {
    display: block;
  }

  .bonus-card img,
  .bonus-card--featured img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.45;
    object-fit: cover;
  }

  .bonus-card--featured img {
    aspect-ratio: 1.35;
    object-position: center 37%;
  }

  .bonus-card > div {
    padding: 19px;
  }

  .bonus-card h3 {
    font-size: 1rem;
  }

  .bonus-card p {
    font-size: 0.82rem;
  }

  .offer-card__body {
    padding: 30px;
  }

  .offer-card__image {
    max-height: 300px;
  }

  .guarantee-card {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 28px;
    padding: 34px;
    text-align: left;
  }

  .guarantee-card__seal {
    margin-inline: 0;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
  }

  .footer__inner p:last-child {
    text-align: right;
  }
}

/* Desktop */
@media (min-width: 901px) {
  :root {
    --gutter: 28px;
  }

  body {
    padding-bottom: 0;
  }

  .sticky-cta {
    display: none;
  }

  .hero {
    padding: 78px 0 76px;
  }

  .hero__glow {
    width: 520px;
    height: 520px;
    right: -180px;
    top: -200px;
  }

  .hero__grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 58px;
  }

  .hero__copy {
    text-align: left;
  }

  .eyebrow,
  .hero__copy .section-kicker {
    justify-content: flex-start;
  }

  .hero h1 {
    margin: 18px 0 22px;
    font-size: clamp(3.15rem, 5vw, 4.65rem);
    line-height: 0.99;
  }

  .hero__lead {
    margin-inline: 0;
    font-size: 1.12rem;
  }

  .hero__mechanism {
    margin-bottom: 28px;
  }

  .hero__image-wrap {
    border-radius: 24px;
    transform: rotate(1deg);
  }

  .hero__proof-strip {
    margin: 18px 8px 0;
    padding: 14px;
  }

  .hero__proof-strip span {
    font-size: 0.75rem;
  }

  .hero__proof-strip strong {
    font-size: 1rem;
  }

  .btn {
    width: auto;
  }

  .microcopy {
    text-align: left;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 3.7vw, 3.2rem);
  }

  .pain-grid {
    gap: 18px;
  }

  .pain-card {
    padding: 28px 28px 26px;
  }

  .belief-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
  }

  .belief-visual {
    order: initial;
    padding: 10px;
    border-radius: 20px;
    transform: rotate(-1.5deg);
  }

  .belief-copy {
    text-align: left;
  }

  .belief-copy .section-kicker {
    justify-content: flex-start;
  }

  .belief-copy h2 {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
  }

  .method-grid {
    gap: 18px;
  }

  .method-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    padding: 26px;
  }

  .method-card__letter {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 2rem;
  }

  .method-summary {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 38px;
    margin-top: 28px;
    padding: 24px;
    border-radius: 22px;
  }

  .method-summary p {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
  }

  .demo-layout {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 28px;
  }

  .sample-feature {
    border-radius: 20px;
  }

  .sample-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }

  .center-action {
    margin-top: 24px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .benefit-grid article {
    padding: 24px;
  }

  .pillar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .content-extra {
    grid-template-columns: 1.35fr 0.65fr;
    margin-top: 22px;
    padding: 32px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .testimonial {
    padding: 24px;
  }

  .main-product-card {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 38px;
    padding: 34px;
  }

  .main-product-card h3 {
    font-size: 2rem;
  }

  .bonus-heading {
    margin-top: 58px;
  }

  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
  }

  .offer-grid {
    grid-template-columns: 1.16fr 0.84fr;
    gap: 22px;
    align-items: center;
  }

  .offer-card {
    border-radius: 24px;
  }

  .offer-card__body {
    padding: 34px;
  }

  .offer-card h3 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  }

  .price-block {
    text-align: left;
  }

  .price-block strong {
    font-size: 3rem;
  }

  .offer-card .btn {
    width: 100%;
  }

  .guarantee-card {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 38px;
    padding: 44px;
  }

  .guarantee-card__seal {
    width: 135px;
    height: 135px;
    font-size: 3.1rem;
  }

  .closing {
    padding: 98px 0;
  }

  .closing h2 {
    font-size: clamp(2.5rem, 4.5vw, 3.7rem);
  }

  .footer {
    padding: 27px 0;
  }

  .footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 28px;
  }

  .footer__inner p:last-child {
    text-align: right;
  }

  .lightbox {
    align-content: center;
    padding: 58px 20px 24px;
  }

  .lightbox img {
    max-width: min(1200px, 95vw);
    max-height: 82vh;
  }
}

.btn--gold:active,
.sticky-cta:active {
  background: var(--gold-dark);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
  }

  .btn--gold:hover {
    background: linear-gradient(135deg, #dfc36e, var(--gold-dark));
  }

  .sample-card img {
    transition: transform 0.24s ease;
  }

  .sample-card:hover img {
    transform: scale(1.035);
  }

  .text-link:hover {
    text-decoration: underline;
  }
}

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

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

/* =========================================================
   IMAGE LAYOUT RESTORATION
   Restores the image proportions from the previous version
   while preserving the revised mobile-first layout and copy.
   ========================================================= */

/* Product samples keep the earlier, slightly more compact card width. */
.sample-card {
  flex-basis: min(72vw, 300px);
}

/* Bonus images return to the original full-width card presentation. */
.bonus-card {
  display: block;
}

.bonus-card img,
.bonus-card--featured img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center;
  background: #f5efe2;
}

.bonus-card--featured img {
  aspect-ratio: 1.35;
  object-position: center 37%;
}

.bonus-card > div {
  padding: 20px;
}

/* The complete-offer composition uses the original image height. */
.offer-card__image {
  width: 100%;
  height: auto;
  max-height: 310px;
  object-fit: cover;
}

/* Preserve the original image proportions on phones without changing
   the mobile-first typography, buttons, spacing or interactions. */
@media (max-width: 640px) {
  .hero__image-wrap img,
  .belief-visual img,
  .method-summary img,
  .sample-feature img,
  .sample-card img,
  .content-extra img,
  .main-product-card__image img {
    width: 100%;
    height: auto;
  }

  .sample-feature img,
  .sample-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .sample-card {
    flex: 0 0 72%;
  }

  .offer-card__image {
    max-height: 310px;
  }
}

/* =========================================================
   MOBILE BONUS COMPACT LAYOUT
   Keeps every bonus image fully visible while reducing the
   vertical length of the section on phones.
   ========================================================= */
@media (max-width: 640px) {
  #tudo-receber .bonus-heading {
    margin: 30px 0 14px;
  }

  #tudo-receber .bonus-heading h3 {
    max-width: 19ch;
    margin-inline: auto;
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    line-height: 1.12;
  }

  #tudo-receber .bonus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  #tudo-receber .bonus-card,
  #tudo-receber .bonus-card--featured {
    display: grid;
    grid-template-columns: clamp(108px, 31vw, 124px) minmax(0, 1fr);
    align-items: stretch;
    min-height: 126px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 7px 20px rgba(11, 33, 70, 0.055);
  }

  #tudo-receber .bonus-card--featured {
    min-height: 148px;
  }

  #tudo-receber .bonus-card img,
  #tudo-receber .bonus-card--featured img {
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    padding: 5px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(145deg, #f8f1e5, #eee2cc);
  }

  #tudo-receber .bonus-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 12px 13px 12px 14px;
  }

  #tudo-receber .bonus-card span {
    font-size: 0.59rem;
    letter-spacing: 0.08em;
  }

  #tudo-receber .bonus-card h3 {
    margin: 4px 0 5px;
    font-size: clamp(0.82rem, 3.7vw, 0.94rem);
    line-height: 1.22;
  }

  #tudo-receber .bonus-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: clamp(0.68rem, 3vw, 0.76rem);
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 359px) {
  #tudo-receber .bonus-card,
  #tudo-receber .bonus-card--featured {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  #tudo-receber .bonus-card > div {
    padding: 11px 11px 11px 12px;
  }

  #tudo-receber .bonus-card h3 {
    font-size: 0.8rem;
  }

  #tudo-receber .bonus-card p {
    font-size: 0.66rem;
  }
}
