:root {
  --color-ink: #102018;
  --color-muted: #5b6d64;
  --color-line: #dce8e0;
  --color-white: #ffffff;
  --color-soft: #eef7f1;
  --color-dark: #101814;
  --color-dark-2: #18241d;
  --color-navy: #07120d;
  --color-teal: #0f8a7d;
  --color-teal-dark: #0b6258;
  --color-green: #19c96b;
  --color-green-dark: #0ea05a;
  --color-coral: #f59e0b;
  --color-coral-dark: #d97706;
  --color-gold: #facc15;
  --shadow-soft: 0 18px 60px rgba(16, 32, 24, 0.12);
  --shadow-strong: 0 24px 72px rgba(0, 0, 0, 0.26);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.55;
  overflow-x: clip;
  width: 100%;
}

a {
  color: inherit;
}

.page {
  width: 100%;
  overflow-x: clip;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section-dark {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(7, 19, 31, 0.98), rgba(16, 32, 48, 0.98)),
    linear-gradient(90deg, var(--color-teal), var(--color-coral));
}

.hero.section-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #07131f;
}

.hero.section-dark::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
  filter: none;
  opacity: 0.34;
  transform: none;
}

.hero.section-dark::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.94) 0%, rgba(12, 38, 28, 0.82) 48%, rgba(15, 138, 125, 0.2) 100%),
    linear-gradient(180deg, rgba(250, 204, 21, 0.08), rgba(7, 18, 13, 0.72));
}

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

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

.section-accent {
  background: linear-gradient(180deg, #f8fff9 0%, #ecf8f1 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-green {
  color: var(--color-green);
}

.text-gold {
  color: var(--color-gold);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.urgency h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.demo-subtitle {
  color: #0b5f59 !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.js-checkout,
.js-scroll-offer {
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

.button--primary {
  color: var(--color-white);
  background: var(--color-green);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.34);
}

.button--primary:hover {
  color: var(--color-white);
  background: var(--color-green-dark);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.44);
}

.button--secondary {
  color: var(--color-white);
  background: var(--color-green);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.34);
}

.button--secondary:hover {
  background: var(--color-green-dark);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.44);
}

.button--outline {
  color: var(--color-green-dark);
  background: transparent;
  border: 2px solid var(--color-green);
}

.button--outline:hover {
  color: #052e16;
  background: var(--color-green);
}

.hero {
  padding: 58px 0 70px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 58px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 720px;
  font-size: clamp(1.9rem, 3.65vw, 3.45rem);
  line-height: 1.07;
  letter-spacing: 0;
}

.hero__text {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--color-white);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-assets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 22px;
}

.hero-assets span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(245, 184, 75, 0.28);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(245, 184, 75, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-assets span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero__offer {
  display: grid;
  gap: 2px;
  max-width: 360px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero__offer strong {
  color: var(--color-coral);
  font-size: 2rem;
  line-height: 1.05;
}

.hero__label,
.hero__offer small,
.trust-line {
  color: rgba(255, 255, 255, 0.7);
}

.trust-line {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-right: 0;
  color: var(--color-green);
  place-items: center;
  font-size: 13px;
  line-height: 1;
  vertical-align: middle;
}

.trust-icon--lock::before {
  content: "🔒";
  position: static;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-icon--lock::after {
  content: none;
}

.trust-icon--instant::before {
  content: "⚡";
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  clip-path: none;
}

.product-showcase {
  position: relative;
  min-height: 520px;
}

.product-showcase--image {
  display: grid;
  min-height: auto;
  place-items: center;
}

.product-showcase--image img {
  display: block;
  width: min(108%, 680px);
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.35));
  transform: translateX(24px) scale(1.02);
}

.product-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #e8f4f1);
  color: var(--color-ink);
  box-shadow: var(--shadow-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card--main {
  right: 58px;
  bottom: 34px;
  width: min(72%, 360px);
  min-height: 450px;
  padding: 34px 28px;
}

.product-card--main::after {
  content: "";
  display: block;
  width: 100%;
  height: 190px;
  margin-top: 42px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(255, 107, 74, 0.8)),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(255, 255, 255, 0.28) 15px 16px);
}

.product-card--main::before {
  content: "";
  position: absolute;
  right: -16px;
  bottom: 28px;
  width: 82px;
  height: 260px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(180deg, #d6ede7, #f8fffc);
  box-shadow: 16px 18px 34px rgba(0, 0, 0, 0.18);
  transform: skewY(-4deg);
}

.product-card--main h2 {
  margin: 16px 0 8px;
  font-size: 1.75rem;
  line-height: 1.05;
}

.product-card__tag,
.pill,
.badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__tag,
.pill {
  color: var(--color-teal-dark);
  background: #d9f2ee;
}

.product-card--side {
  left: 8px;
  top: 68px;
  width: 190px;
  padding: 24px;
  background: #fff7e5;
}

.product-card--mini {
  right: 10px;
  top: 36px;
  width: 132px;
  min-height: 132px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-coral);
}

.market-validation,
.visual-demo,
.benefits,
.comparison,
.ideal,
.deliverables,
.bonuses,
.pricing,
.guarantee,
.faq {
  padding: 78px 0;
}

.comparison {
  padding: 42px 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 18px;
}

.demo-grid--proof {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  align-items: stretch;
}

.demo-frame {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(223, 239, 235, 0.86)),
    repeating-linear-gradient(0deg, rgba(17, 24, 39, 0.05) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.demo-frame h3 {
  margin: 8px 0 10px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.demo-frame p {
  margin: 0 0 12px;
  color: var(--color-muted);
}

.demo-frame--large {
  grid-row: span 2;
  min-height: 438px;
}

.demo-frame span,
.bonus-card span,
.price-card__name {
  color: var(--color-teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card .price-card__name {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-dark-2);
  box-shadow: 0 10px 24px rgba(7, 19, 31, 0.16);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.price-card--featured .price-card__name {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.demo-frame strong {
  margin-top: 6px;
  font-size: 1.35rem;
}

.visual-carousel {
  position: relative;
  margin-top: 30px;
}

.visual-carousel::before,
.visual-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
  content: "";
}

.visual-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-soft), rgba(245, 247, 243, 0));
}

.visual-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-soft), rgba(245, 247, 243, 0));
}

.visual-carousel__track {
  display: flex;
  gap: 20px;
  padding: 10px 6px 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.visual-carousel__track::-webkit-scrollbar {
  display: none;
}

.visual-carousel__track.is-dragging {
  cursor: grabbing;
}

.visual-slide {
  flex: 0 0 min(82vw, 540px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 95, 89, 0.14);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-slide:hover {
  border-color: rgba(34, 197, 94, 0.48);
  box-shadow: 0 22px 70px rgba(11, 95, 89, 0.18);
  transform: translateY(-4px) scale(1.015);
}

.visual-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: transparent;
  pointer-events: none;
}

.visual-slide figcaption {
  display: none;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.benefit-card,
.validation-card,
.guarantee-card,
.bonus-card,
.price-card,
.ideal-list article,
.deliverable-card,
.comparison-table__col,
.faq details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.demo-frame:hover,
.benefit-card:hover,
.validation-card:hover,
.guarantee-card:hover,
.bonus-card:hover,
.price-card:hover,
.ideal-list article:hover,
.deliverable-card:hover,
.comparison-table__col:hover,
.faq details:hover,
.before-after__panel:hover,
.summary-box:hover {
  transform: scale(1.025);
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.16);
  border-color: rgba(34, 197, 94, 0.32);
}

.benefit-card {
  padding: 26px 22px;
}

.benefit-card--full {
  grid-column: span 3;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-green));
  box-shadow: 0 12px 26px rgba(11, 95, 89, 0.22);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3,
.ideal-list h3,
.deliverable-content h3,
.bonus-card h3,
.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.22;
}

.benefit-card p,
.ideal-list p,
.bonus-card p,
.faq p {
  margin: 0;
  color: var(--color-muted);
}

.market-validation {
  position: relative;
  overflow: hidden;
}

.market-validation::before {
  position: absolute;
  inset: 16px auto auto 50%;
  width: 1px;
  height: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.09);
  content: "";
}

.market-validation .section-heading {
  position: relative;
  max-width: 880px;
}

.market-validation .section-heading h2,
.market-validation .section-heading p {
  color: var(--color-ink);
}

.market-validation .section-heading p {
  color: var(--color-muted);
}

.validation-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 34px auto 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.validation-card {
  display: grid;
  min-height: 220px;
  align-content: end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 245, 0.94));
}

.validation-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #052e16;
  background: rgba(34, 197, 94, 0.16);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.validation-card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.36;
}

.validation-board--prints {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding: 20px;
  border-color: rgba(15, 138, 125, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(240, 250, 245, 0.68));
  box-shadow: 0 24px 70px rgba(7, 18, 13, 0.12);
}

.validation-card--print {
  align-content: start;
  grid-column: span 3;
  min-height: 0;
  padding: 10px;
  border-color: rgba(15, 138, 125, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 18, 13, 0.1);
}

.validation-card--print:nth-child(n + 3) {
  grid-column: span 2;
}

.validation-card--print span {
  width: fit-content;
  margin: 0 0 10px;
  color: #064e3b;
  background: rgba(18, 201, 106, 0.14);
}

.validation-card--print img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(7, 18, 13, 0.12);
}

.validation-close {
  position: relative;
  max-width: 820px;
  margin: 30px auto 0;
  text-align: center;
}

.validation-close p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.5;
}

.validation-close p + p {
  margin-top: 8px;
}

.validation-close p:last-child {
  color: var(--color-white);
  font-weight: 900;
}

.comparison__grid {
  display: block;
}

.comparison .container {
  width: min(100% - 12px, 1240px);
}

.comparison__text {
  max-width: 780px;
  margin: 0 auto 16px;
  text-align: center;
}

.image-compare {
  position: relative;
  width: min(88%, 980px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 31, 0.14);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-strong);
  cursor: ew-resize;
  touch-action: none;
}

.image-compare::before {
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 1px solid rgba(7, 19, 31, 0.12);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  content: "";
}

.image-compare__image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.image-compare__overlay {
  position: absolute;
  inset: 0;
  width: var(--compare-position);
  overflow: hidden;
}

.image-compare__overlay .image-compare__image {
  width: auto;
  max-width: none;
  height: 100%;
}

.image-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 4;
  width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.image-compare__handle::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--color-navy);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42), 0 0 22px rgba(7, 19, 31, 0.34);
  content: "";
  transform: translateX(-50%);
}

.image-compare__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-navy);
  box-shadow: 0 16px 34px rgba(7, 19, 31, 0.26);
  transform: translate(-50%, -50%);
}

.image-compare__handle span::before {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--color-white);
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 900;
  content: "↔";
}

.image-compare__labels {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.image-compare__labels span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(7, 19, 31, 0.72);
  box-shadow: 0 10px 24px rgba(7, 19, 31, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.comparison-table__col {
  padding: 28px;
}

.comparison-table__col--highlight {
  color: var(--color-white);
  background: var(--color-teal);
  border-color: transparent;
}

.comparison-table__col h3 {
  margin: 0 0 18px;
}

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

.comparison-table li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.comparison-table li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-green);
  font-weight: 900;
}

.check-list li.bonus-item::before {
  content: "🎁";
  top: 0.05em;
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-size: 0.86rem;
  line-height: 1;
}

.comparison-table__col--highlight li::before {
  color: var(--color-gold);
}

.urgency {
  padding: 64px 0;
  text-align: center;
}

.urgency__inner {
  max-width: 840px;
}

.urgency p {
  margin: 0 auto 28px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.urgency-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(239, 68, 68, 0.55);
  border-radius: 999px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ideal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ideal-list article {
  padding: 28px;
  text-align: center;
}

.ideal-icon {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.92) 46%, rgba(209, 250, 229, 0.78));
  border: 1px solid rgba(15, 138, 125, 0.18);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.ideal-icon::before,
.ideal-icon::after {
  content: "";
  position: absolute;
}

.ideal-icon--svg::before,
.ideal-icon--svg::after {
  content: none;
}

.ideal-icon--svg svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--color-green);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ideal-icon--visual::before,
.ideal-icon--visual::after {
  content: none;
}

.ideal-icon--visual svg {
  width: 46px;
  height: 46px;
  overflow: visible;
}

.ideal-icon--premium::before,
.ideal-icon--premium::after {
  content: none;
}

.ideal-icon--premium svg {
  width: 38px;
  height: 38px;
  overflow: visible;
  fill: none;
  stroke: #0b6258;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ideal-icon--premium .gold-stroke {
  stroke: var(--color-gold);
}

.ideal-icon--target::before {
  width: 34px;
  height: 34px;
  border: 3px solid var(--color-green);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 6px rgba(34, 197, 94, 0.18),
    inset 0 0 0 12px var(--color-white);
  background: var(--color-green);
}

.ideal-icon--target::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
}

.ideal-icon--compare::before {
  width: 32px;
  height: 28px;
  background:
    linear-gradient(var(--color-green), var(--color-green)) left 0 bottom 0 / 8px 18px no-repeat,
    linear-gradient(var(--color-green), var(--color-green)) center bottom / 8px 28px no-repeat,
    linear-gradient(var(--color-green), var(--color-green)) right 0 bottom 0 / 8px 12px no-repeat;
  border-bottom: 3px solid var(--color-dark);
}

.ideal-icon--map::before {
  width: 34px;
  height: 28px;
  border: 3px solid var(--color-green);
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 31%, var(--color-green) 31% 39%, transparent 39% 64%, var(--color-green) 64% 72%, transparent 72%),
    linear-gradient(135deg, rgba(34, 197, 94, 0.24), rgba(34, 197, 94, 0));
  transform: skewY(-3deg);
}

.ideal-icon--map::after {
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-green);
  transform: translate(4px, -3px) rotate(-45deg);
}

.ideal-icon--material::before {
  width: 28px;
  height: 34px;
  border: 3px solid var(--color-green);
  border-radius: 4px;
  background:
    linear-gradient(var(--color-green), var(--color-green)) 7px 10px / 14px 2px no-repeat,
    linear-gradient(var(--color-green), var(--color-green)) 7px 17px / 14px 2px no-repeat,
    linear-gradient(var(--color-green), var(--color-green)) 7px 24px / 10px 2px no-repeat;
}

.ideal-icon--confidence::before {
  width: 32px;
  height: 34px;
  background: var(--color-green);
  clip-path: polygon(50% 0, 88% 14%, 82% 68%, 50% 100%, 18% 68%, 12% 14%);
}

.ideal-icon--confidence::after {
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--color-white);
  border-bottom: 3px solid var(--color-white);
  transform: rotate(-45deg);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.deliverables--dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-white);
  background: #07120d;
}

.deliverables--dark::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
  opacity: 0.28;
}

.deliverables--dark::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.92), rgba(12, 38, 28, 0.78), rgba(15, 138, 125, 0.18)),
    linear-gradient(180deg, rgba(250, 204, 21, 0.06), rgba(7, 18, 13, 0.78));
}

.deliverables--dark .section-heading h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  color: var(--color-white);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.deliverables--dark .section-heading p {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.deliverable-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.deliverables {
  padding-bottom: 42px;
}

.deliverable-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  padding: 28px;
}

.deliverable-card--content-only {
  display: block;
  align-self: start;
  min-height: auto;
  padding: 38px;
  color: var(--color-ink);
  margin-top: 0;
  margin-left: clamp(24px, 3vw, 54px);
}

.deliverable-product-name {
  display: block;
  margin: 14px 0 18px;
  color: var(--color-teal-dark);
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  font-weight: 950;
  line-height: 1.16;
}

.deliverable-card--content-only .deliverable-content h3 {
  margin-bottom: 16px;
  font-size: clamp(1.18rem, 1.6vw, 1.38rem);
}

.deliverable-card--content-only .check-list {
  gap: 14px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 750;
}

.deliverable-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.deliverable-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(7, 19, 31, 0.2));
}

.deliverable-visual--outside {
  min-height: auto;
  overflow: visible;
}

.deliverable-visual--outside img {
  width: min(108%, 700px);
  margin: 0 auto;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.45));
  transform: translateX(-34px);
}

.deliverable-content {
  align-self: center;
}

.summary-box {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.summary-box h3 {
  margin: 0 0 6px;
  font-size: 1.28rem;
}

.summary-box p {
  margin: 0 0 18px;
  color: var(--color-muted);
}

.check-list--columns {
  grid-template-columns: repeat(2, 1fr);
}

.more-title {
  margin: 44px 0 0;
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bonus-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 270px auto;
  gap: 14px;
  align-items: start;
  padding: 20px;
  text-align: center;
}

.bonus-card__visual {
  position: relative;
  height: 270px;
  min-height: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(25, 201, 107, 0.1), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(15, 138, 125, 0.08) 0 1px, transparent 1px 26px);
}

.bonus-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: 92px;
  margin: 0;
  transform: rotate(-7deg);
}

.bonus-ribbon strong,
.bonus-ribbon small {
  display: block;
  margin: 0;
  border-radius: 999px;
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(7, 19, 31, 0.18);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.bonus-ribbon strong {
  padding: 7px 9px 6px;
  background: #ef233c;
  font-size: 0.62rem;
}

.bonus-ribbon strong::before {
  content: "";
}

.bonus-ribbon small {
  justify-self: end;
  width: 72px;
  padding: 6px 8px 5px;
  background: var(--color-green);
  color: var(--color-navy);
  font-size: 0.58rem;
}

.bonus-card__visual img {
  display: block;
  width: auto;
  height: 255px;
  max-width: 92%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(7, 19, 31, 0.2));
  transition: transform 180ms ease;
}

.bonus-card > div:not(.bonus-card__visual) {
  display: block;
  align-self: stretch;
}

.bonus-card span {
  display: block;
  margin-bottom: 8px;
}

.bonus-card .bonus-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  margin: 0;
}

.bonus-card h3 {
  margin-bottom: 8px;
}

.bonus-card p {
  margin-top: 0;
}

.bonus-takeaway {
  display: block;
  margin-top: 14px;
  color: #065f46;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.35;
}

.bonus-found-title {
  margin-top: 18px !important;
  margin-bottom: 10px !important;
  color: var(--color-ink) !important;
  font-weight: 650;
}

.bonus-benefits {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.bonus-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.32;
}

.bonus-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 3px;
  color: var(--color-white);
  background: #4ade80;
  font-size: 0.7rem;
  font-weight: 950;
}

.bonus-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px !important;
  padding: 11px 18px;
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: 999px;
  color: #065f46 !important;
  background: #e9f9ef;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(6, 95, 70, 0.1);
}

.bonus-value s {
  color: #dc2626;
  text-decoration-color: #dc2626;
  text-decoration-thickness: 1.2px;
  text-decoration-skip-ink: none;
  font-size: 0.9em;
  font-weight: 800;
}

.bonus-value strong {
  color: #047857;
  font-weight: 900;
  letter-spacing: 0;
}

.bonus-card:hover .bonus-card__visual img {
  transform: scale(1.04);
}

@media (min-width: 981px) {
  .bonus-grid .bonus-card:nth-child(7):last-child {
    grid-column: 2;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .bonus-grid .bonus-card:nth-child(7):last-child {
    grid-column: 1 / -1;
    width: calc((100% - 18px) / 2);
    justify-self: center;
  }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.pricing .container {
  width: min(100% - 24px, 1240px);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px;
}

.plan-mockup {
  display: grid;
  min-height: 330px;
  margin: -4px 0 24px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(25, 201, 107, 0.12), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(15, 138, 125, 0.08) 0 1px, transparent 1px 26px);
}

.plan-bonus-included {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.plan-bonus-included span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-navy);
  background: var(--color-green);
  font-size: 0.78rem;
  line-height: 1;
}

.plan-mockup img {
  display: block;
  width: min(100%, 390px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(7, 19, 31, 0.2));
}

.price-card--featured .plan-mockup {
  background:
    linear-gradient(180deg, rgba(25, 201, 107, 0.18), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(250, 204, 21, 0.12) 0 1px, transparent 1px 26px);
}

.price-card--featured .plan-mockup img {
  width: min(112%, 500px);
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.36));
}

.price-card--featured {
  padding-top: 52px;
  color: var(--color-white);
  background: var(--color-dark);
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.28),
    0 0 36px rgba(34, 197, 94, 0.28),
    var(--shadow-strong);
}

.badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #052e16;
  background: #86ef8f;
  border: 1px solid #16a34a;
  white-space: nowrap;
  font-size: 0.92rem;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.24);
}

.price-card .check-list {
  margin: 8px 0 24px;
}

.price-card__intro {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-weight: 800;
}

.price-card--featured .price-card__intro {
  color: rgba(255, 255, 255, 0.78);
}

.plan-plus {
  display: grid;
  gap: 8px;
  margin: 4px 0 14px;
}

.plan-plus > span {
  display: block;
  color: var(--color-green);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.plan-plus p {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.plan-plus p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-green);
  font-weight: 900;
}

.price {
  display: grid;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 22px;
}

.price strong {
  color: var(--color-green);
  font-size: 2.8rem;
  line-height: 1;
}

.price-card--featured .price strong {
  color: var(--color-green);
}

.price small,
.price span {
  color: var(--color-muted);
}

.price em {
  color: var(--color-teal-dark);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}

.price .old-price-line {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.price .old-price-line--basic {
  color: var(--color-muted);
}

.price .old-price-line s {
  color: #b91c1c;
  font-weight: 850;
  text-decoration-color: rgba(185, 28, 28, 0.82);
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: auto;
}

.price-card--featured .price small,
.price-card--featured .price span {
  color: rgba(255, 255, 255, 0.82);
}

.price-card--featured .price em {
  color: var(--color-green);
}

.pricing-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--color-muted);
  font-weight: 800;
}

.guarantee {
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: "";
  display: none;
}

.guarantee__inner {
  max-width: 980px;
}

.guarantee-card {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(15, 138, 125, 0.22), rgba(7, 18, 13, 0.24));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.34);
}

.guarantee-seal {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  justify-self: center;
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(250, 204, 21, 0.12), rgba(25, 201, 107, 0.08)),
    rgba(0, 0, 0, 0.54);
  box-shadow:
    0 0 0 12px rgba(34, 197, 94, 0.05),
    0 0 42px rgba(34, 197, 94, 0.2);
  text-align: center;
}

.guarantee-seal strong {
  display: block;
  color: var(--color-green);
  font-size: 4.4rem;
  line-height: 0.88;
}

.guarantee-seal span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.guarantee-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.58;
}

.guarantee-list {
  display: grid;
  gap: 8px;
  max-width: 640px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.guarantee-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.42;
}

.guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-green);
  font-weight: 900;
}

.guarantee-close {
  color: var(--color-white) !important;
  font-weight: 850;
}

.guarantee-copy p:last-child {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.58;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
}

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

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq summary::marker {
  color: var(--color-teal);
}

.faq p {
  padding-top: 12px;
}

.footer {
  padding: 56px 0 34px;
}

.footer__inner {
  display: grid;
  gap: 26px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer h2,
.footer h3 {
  margin: 0 0 10px;
}

.footer__brand {
  max-width: 760px;
}

.footer__essentials {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 14px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer__essentials li::before {
  content: "✓ ";
  color: var(--color-gold);
  font-weight: 900;
}

.footer__disclaimer {
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 920px) {
  .hero__grid,
  .comparison__grid,
  .guarantee-card,
  .deliverable-layout,
  .deliverable-card,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    display: contents;
  }

  .deliverable-layout {
    align-items: center;
  }

  .deliverable-card--content-only {
    margin-top: 0;
    margin-left: 0;
  }

  .hero h1 {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .hero .product-showcase {
    order: 2;
  }

  .hero__text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }

  .hero__content > .button {
    order: 4;
    justify-self: center;
  }

  .trust-badges {
    order: 5;
    justify-content: center;
  }

  .section-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .product-showcase {
    min-height: 460px;
  }

  .product-showcase--image {
    min-height: auto;
  }

  .product-showcase--image img {
    width: min(100%, 560px);
    transform: scale(1);
  }

  .visual-slide {
    flex-basis: min(88vw, 560px);
  }

  .product-card--main {
    right: 0;
    width: min(78%, 360px);
  }

  .benefit-grid,
  .benefit-grid--wide,
  .validation-board,
  .demo-grid,
  .demo-grid--proof,
  .bonus-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card,
  .validation-card,
  .guarantee-card,
  .bonus-card,
  .price-card,
  .deliverable-card--content-only,
  .comparison__text,
  .urgency__inner {
    text-align: center;
  }

  .price-card .check-list,
  .deliverable-card--content-only .check-list {
    width: 100%;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .price-card .check-list li,
  .deliverable-card--content-only .check-list li {
    text-align: left;
  }

  .benefit-card .icon {
    margin-right: auto;
    margin-left: auto;
  }

  .pricing .price-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .guarantee-copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .guarantee-copy > p:not(.eyebrow),
  .guarantee-close {
    margin-right: auto;
    margin-left: auto;
  }

  .guarantee-list {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .benefit-card--full {
    grid-column: span 2;
  }

  .demo-frame--large {
    grid-column: span 2;
    grid-row: auto;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    padding: 42px 0 52px;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 7.8vw, 2.3rem);
    line-height: 1.08;
  }

  .market-validation,
  .visual-demo,
  .benefits,
  .comparison,
  .ideal,
  .deliverables,
  .bonuses,
  .pricing,
  .guarantee,
  .faq {
    padding: 56px 0;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .product-showcase {
    min-height: 410px;
  }

  .product-showcase--image {
    min-height: auto;
  }

  .product-showcase--image img {
    width: min(100%, 440px);
  }

  .product-card--main {
    width: 74%;
    min-height: 360px;
    padding: 24px 20px;
  }

  .product-card--main::after {
    height: 140px;
  }

  .product-card--side {
    width: 150px;
    padding: 18px;
  }

  .product-card--mini {
    width: 102px;
    min-height: 102px;
  }

  .visual-carousel {
    margin-inline: -12px;
  }

  .visual-carousel::before,
  .visual-carousel::after {
    width: 28px;
  }

  .visual-carousel__track {
    gap: 14px;
    padding: 8px 12px 22px;
  }

  .image-compare::before {
    inset: 8px;
  }

  .comparison__text {
    margin-bottom: 12px;
  }

  .comparison__text h2 {
    font-size: 1.28rem;
    line-height: 1.14;
  }

  .comparison .container {
    width: 100%;
  }

  .image-compare {
    width: 100%;
    height: 300px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .image-compare > .image-compare__image {
    height: 100%;
    object-fit: cover;
  }

  .image-compare__overlay .image-compare__image {
    height: 100%;
    object-fit: cover;
  }

  .comparison {
    padding: 34px 0;
  }

  .image-compare__handle span {
    width: 44px;
    height: 44px;
  }

  .image-compare__labels {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .image-compare__labels span {
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .visual-slide {
    flex-basis: 88vw;
  }

  .visual-slide figcaption {
    font-size: 0.78rem;
  }

  .demo-grid,
  .demo-grid--proof,
  .benefit-grid,
  .benefit-grid--wide,
  .validation-board,
  .comparison-table,
  .ideal-list,
  .bonus-grid,
  .price-grid,
  .check-list--columns {
    grid-template-columns: 1fr;
  }

  .ideal-list article:last-child {
    width: 100%;
  }

  .benefit-card--full {
    grid-column: auto;
  }

  .demo-frame--large {
    grid-column: auto;
    min-height: 320px;
  }

  .validation-board {
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .validation-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .guarantee-card {
    padding: 28px 20px;
  }

  .guarantee-seal {
    width: 154px;
    height: 154px;
  }

  .guarantee-seal strong {
    font-size: 3.4rem;
  }

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

  .bonus-card__visual {
    min-height: 220px;
  }

  .bonus-card .bonus-ribbon {
    top: 10px;
    left: 10px;
    width: 92px;
    transform: rotate(-7deg);
  }

  .bonus-card__visual img {
    width: auto;
    height: min(66vw, 250px);
    max-width: 78vw;
  }

  .deliverable-card,
  .price-card {
    padding: 22px;
  }

  .price-card--featured {
    padding-top: 66px;
  }

  .plan-mockup {
    min-height: 260px;
  }

  .plan-mockup img {
    width: min(86vw, 320px);
  }

  .deliverable-visual {
    min-height: 280px;
  }

  .deliverable-visual--outside {
    min-height: auto;
  }

  .deliverable-visual--outside img {
    width: min(92vw, 430px);
    transform: none;
  }

  .badge {
    position: absolute;
    margin-bottom: 0;
  }

}

/* Visual refresh: evidence-based fitness palette */
.section-dark {
  background:
    linear-gradient(135deg, rgba(7, 18, 13, 0.98), rgba(16, 35, 25, 0.98)),
    linear-gradient(90deg, var(--color-teal), var(--color-green));
}

.hero.section-dark {
  background:
    linear-gradient(135deg, #18201c 0%, #1b2420 58%, #202b25 100%);
}

.hero.section-dark::before {
  opacity: 0.34;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
}

.hero.section-dark::after {
  background:
    linear-gradient(90deg, rgba(24, 32, 28, 0.92) 0%, rgba(27, 36, 32, 0.8) 48%, rgba(18, 201, 106, 0.14) 100%),
    linear-gradient(180deg, rgba(18, 201, 106, 0.06), rgba(17, 23, 19, 0.68));
}

.section-light {
  background: #eef7f1;
}

.market-validation.section-dark {
  color: var(--color-ink);
  background:
    linear-gradient(180deg, #f7fff9 0%, #edf8f1 100%);
  border-top: 1px solid rgba(15, 138, 125, 0.12);
}

.section-accent {
  background: linear-gradient(180deg, #f8fff9 0%, #ecf8f1 100%);
}

.eyebrow {
  color: var(--color-teal);
}

.section-dark .eyebrow,
.deliverables--dark .eyebrow,
.guarantee .eyebrow {
  color: var(--color-gold);
}

.market-validation .section-heading h2 {
  color: var(--color-ink);
}

.market-validation .section-heading p,
.market-validation .section-heading p:last-child {
  color: var(--color-muted);
}

.visual-demo.section-light {
  background: linear-gradient(180deg, #e5fbf6 0%, #f5fffb 100%);
  border-top: 3px solid rgba(15, 138, 125, 0.22);
  border-bottom: 1px solid rgba(15, 138, 125, 0.14);
}

.visual-demo .section-heading h2 {
  color: var(--color-ink);
}

.visual-demo .section-heading p {
  color: var(--color-muted);
}

.visual-demo .visual-carousel {
  margin-top: 34px;
  padding: 18px 0 6px;
  border: 1px solid rgba(15, 138, 125, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 58px rgba(15, 138, 125, 0.09);
}

.visual-demo .visual-carousel::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.visual-demo .visual-carousel::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.text-green {
  color: #12c96a;
}

.button--primary,
.button--secondary {
  color: #ffffff;
  background: linear-gradient(135deg, #18d875, #12c96a);
  box-shadow:
    0 16px 34px rgba(18, 201, 106, 0.3),
    0 0 18px rgba(18, 201, 106, 0.16);
  text-shadow: 0 1px 2px rgba(7, 18, 13, 0.32);
}

.button--primary:hover,
.button--secondary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #34e58a, #16d874);
  box-shadow:
    0 18px 40px rgba(18, 201, 106, 0.38),
    0 0 22px rgba(18, 201, 106, 0.2);
}

.button--outline {
  color: #ffffff;
  border-color: #12c96a;
  background: linear-gradient(135deg, #18d875, #12c96a);
  box-shadow:
    0 16px 34px rgba(18, 201, 106, 0.26),
    0 0 16px rgba(18, 201, 106, 0.12);
  text-shadow: 0 1px 2px rgba(7, 18, 13, 0.32);
}

.button--outline:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #34e58a, #16d874);
}

.trust-badges span {
  color: rgba(255, 255, 255, 0.82);
}

.product-showcase--image {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-showcase--image img {
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.34));
}

.visual-slide,
.benefit-card,
.validation-card,
.bonus-card,
.price-card,
.ideal-list article,
.deliverable-card,
.faq details {
  border-color: rgba(15, 138, 125, 0.14);
}

.validation-board {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, rgba(15, 138, 125, 0.08) 0 1px, transparent 1px 28px);
  border-color: rgba(15, 138, 125, 0.18);
  box-shadow: 0 24px 72px rgba(16, 32, 24, 0.1);
}

.validation-card {
  background:
    linear-gradient(180deg, #ffffff, #f2fbf5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.validation-card span {
  color: #0b3d2c;
  background: rgba(25, 201, 107, 0.16);
}

.validation-close p:last-child {
  color: var(--color-teal-dark);
}

.validation-close p {
  color: var(--color-muted);
}

.icon {
  background: linear-gradient(135deg, #0f8a7d, #19c96b);
}

.urgency-tag {
  color: #07120d;
  border-color: rgba(167, 255, 61, 0.76);
  background: linear-gradient(135deg, #a7ff3d, #8cff00);
  box-shadow:
    0 10px 24px rgba(167, 255, 61, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.deliverables--dark {
  background:
    linear-gradient(135deg, #18201c 0%, #1b2420 58%, #202b25 100%);
}

.deliverables--dark::before {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
  opacity: 0.28;
}

.deliverables--dark::after {
  background:
    linear-gradient(90deg, rgba(24, 32, 28, 0.92) 0%, rgba(27, 36, 32, 0.8) 48%, rgba(18, 201, 106, 0.14) 100%),
    linear-gradient(180deg, rgba(18, 201, 106, 0.06), rgba(17, 23, 19, 0.68));
}

.bonus-card > div:not(.bonus-card__visual) > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 7px 13px 6px;
  border: 1px solid rgba(18, 201, 106, 0.32);
  border-radius: 999px;
  color: #064e3b;
  background: rgba(220, 252, 231, 0.82);
  box-shadow: 0 8px 18px rgba(18, 201, 106, 0.1);
  font-size: 0.86rem;
  line-height: 1;
}

.bonus-card h3 {
  color: #07120d;
}

.bonus-card p {
  color: #475569;
}

.bonus-card .bonus-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  margin: 16px auto 0;
  padding: 8px 16px;
  border: 1px solid rgba(18, 201, 106, 0.32);
  border-radius: 999px;
  color: #064e3b;
  background: rgba(220, 252, 231, 0.82);
  box-shadow: 0 10px 24px rgba(18, 201, 106, 0.1);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
}

.bonus-card .bonus-value s {
  color: #b91c1c;
  font-weight: 850;
  text-decoration-color: rgba(185, 28, 28, 0.82);
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: auto;
}

.bonus-card .bonus-value strong {
  color: #047857;
  font-weight: 950;
}

.bonus-takeaway {
  position: relative;
  display: block;
  padding: 0 0 0 14px;
  color: #1e293b;
  background: transparent;
}

.bonus-takeaway::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a7ff3d, #12c96a);
  content: "";
}

.bonus-ribbon small,
.badge,
.plan-bonus-included span {
  color: #07120d;
  background: var(--color-gold);
  border-color: #eab308;
}

.bonus-ribbon small {
  background: linear-gradient(135deg, #c6ff5f, #9bef24);
  border-color: rgba(166, 242, 64, 0.72);
  box-shadow: 0 8px 18px rgba(155, 239, 36, 0.22);
}

.price-card--featured .badge,
.price-card--featured .plan-bonus-included span {
  color: #07120d;
  background: linear-gradient(135deg, #a7ff3d, #8cff00);
  border-color: rgba(167, 255, 61, 0.76);
  box-shadow:
    0 8px 18px rgba(167, 255, 61, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.price-card--featured {
  background: #111713;
  box-shadow:
    0 0 0 1px rgba(182, 255, 0, 0.14),
    0 24px 64px rgba(7, 18, 13, 0.3),
    var(--shadow-strong);
}

.plan-mockup,
.price-card--featured .plan-mockup {
  background:
    linear-gradient(180deg, rgba(25, 201, 107, 0.12), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(15, 138, 125, 0.08) 0 1px, transparent 1px 26px);
}

.price strong,
.price-card--featured .price strong,
.price-card--featured .price em {
  color: #12c96a;
}

.price-card:not(.price-card--featured) .price strong {
  color: #12c96a;
}

.price-card--featured .price strong,
.price-card--featured .price em {
  color: #12c96a;
}

.price-card--featured .button {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.price-card--featured .button:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.guarantee-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(15, 138, 125, 0.22), rgba(7, 18, 13, 0.24));
}

.guarantee {
  background:
    radial-gradient(circle at 20% 18%, rgba(18, 201, 106, 0.12), transparent 34%),
    linear-gradient(135deg, #18201c 0%, #1b2420 58%, #202b25 100%);
}

.guarantee-seal {
  width: min(230px, 64vw);
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.guarantee-seal img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 18px rgba(250, 204, 21, 0.12));
}

.guarantee-card {
  border-color: rgba(18, 201, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(18, 201, 106, 0.12), rgba(7, 18, 13, 0.72));
  box-shadow:
    0 0 0 1px rgba(18, 201, 106, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.28);
}

.guarantee .eyebrow,
.guarantee-list li::before {
  color: #facc15;
}

.hero h1 .text-gold {
  color: var(--color-white);
  background-image: linear-gradient(90deg, rgba(182, 255, 0, 0.95), rgba(18, 201, 106, 0.9));
  background-repeat: no-repeat;
  background-position: 0 94%;
  background-size: 100% 0.12em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.faq summary::marker {
  color: var(--color-teal);
}

.footer__essentials li::before {
  color: var(--color-gold);
}

@media (max-width: 680px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body,
  .page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .container,
  .hero__grid,
  .hero__content,
  .section-heading,
  .deliverable-card,
  .deliverable-card--content-only,
  .deliverable-content,
  .price-card,
  .bonus-card,
  .guarantee-card,
  .faq__grid,
  .faq-list,
  .footer .container {
    min-width: 0;
  }

  .hero__grid,
  .demo-grid,
  .demo-grid--proof,
  .benefit-grid,
  .benefit-grid--wide,
  .ideal-list,
  .deliverable-layout,
  .deliverable-card,
  .bonus-grid,
  .price-grid,
  .guarantee-card,
  .faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 {
    width: min(100%, 320px);
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    padding-inline: 2px;
    font-size: clamp(1.28rem, 5.55vw, 1.66rem);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero__text,
  .section-heading h2,
  .section-heading p,
  .deliverable-card h3,
  .deliverable-product-name,
  .bonus-card h3,
  .bonus-card p,
  .bonus-takeaway,
  .price-card h3,
  .price-card__intro,
  .price-card__name,
  .pricing-note,
  .guarantee-copy h2,
  .guarantee-copy p,
  .faq summary,
  .faq p,
  .footer h2,
  .footer p,
  .footer li {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .button {
    display: inline-flex;
    width: min(100%, 320px);
    max-width: 320px;
    min-height: auto;
    padding: 13px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.16;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero__content > .button,
  .urgency .button,
  .price-card .button {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading {
    max-width: 320px;
  }

  .section-heading h2 {
    font-size: clamp(1.34rem, 5.75vw, 1.82rem);
    line-height: 1.13;
  }

  .hero__text {
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .trust-badges {
    width: 100%;
    gap: 10px;
  }

  .trust-badges span {
    max-width: 100%;
    white-space: normal;
  }

  .deliverable-card,
  .price-card,
  .bonus-card,
  .validation-comments,
  .comment-card,
  .faq details {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .visual-carousel,
  .visual-carousel__track,
  .visual-slide {
    max-width: 100%;
    overflow: hidden;
  }

  .visual-carousel {
    margin-right: 0;
    margin-left: 0;
  }

  .visual-carousel__track {
    min-width: 0;
    gap: 12px;
    padding-right: 0;
    padding-left: 0;
  }

  .visual-slide {
    flex: 0 0 100%;
    width: 100%;
  }

  .visual-slide img {
    width: 100%;
    max-width: 100%;
  }

  .check-list {
    width: 100%;
    max-width: 100%;
  }

  .check-list li,
  .price-card .check-list li,
  .deliverable-card--content-only .check-list li {
    max-width: 100%;
    padding-left: 24px;
    overflow-wrap: break-word;
    word-break: normal;
    text-align: left;
  }

  .check-list li::before {
    left: 0;
  }

  .price-card--featured .plan-mockup img {
    width: min(88vw, 315px);
  }

  .guarantee-seal {
    width: min(190px, 58vw);
    height: auto;
  }

  .bonus-card {
    padding: 16px;
  }

  .bonus-card > div:not(.bonus-card__visual) {
    min-width: 0;
  }

  .bonus-card h3 {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .bonus-card p,
  .bonus-takeaway {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .bonus-card .bonus-value {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .deliverable-card,
  .price-card {
    padding: 18px;
  }

  .price-card h3,
  .price-card__intro,
  .price-card__name {
    max-width: 100%;
  }

  .price-card .check-list {
    align-self: stretch;
    justify-items: stretch;
    font-size: 0.88rem;
  }

  .check-list li.bonus-item::before {
    top: 0.04em;
  }

  .pricing-note {
    width: min(100%, 320px);
    margin-inline: auto;
    padding-inline: 2px;
  }

  .guarantee-copy {
    min-width: 0;
  }

  .faq summary {
    line-height: 1.35;
    padding-right: 0;
    font-size: 0.96rem;
  }

  .faq p {
    font-size: 0.96rem;
  }

  .footer__inner,
  .footer__brand,
  .footer__essentials,
  .footer__disclaimer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer h2 {
    font-size: clamp(1.28rem, 5.5vw, 1.7rem);
    line-height: 1.22;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 44px), 330px);
    max-width: 330px;
  }

  .hero__content,
  .hero__media,
  .hero__visual,
  .section-heading,
  .hero__text,
  .pricing-note,
  .footer__brand,
  .footer__disclaimer {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 {
    width: 100%;
    max-width: 292px;
    font-size: clamp(1.18rem, 5.2vw, 1.48rem);
  }

  .section-heading h2 {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.25rem, 5.35vw, 1.62rem);
  }

  .section-heading p {
    max-width: 296px;
    margin-right: auto;
    margin-left: auto;
  }

  .button {
    width: 100%;
    max-width: 290px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.78rem;
  }

  .hero__mockup img,
  .hero-mockup,
  .hero-mockup img,
  .deliverable-mockup img,
  .plan-mockup img {
    max-width: 100%;
    transform: none !important;
  }

  .deliverable-card,
  .price-card,
  .bonus-card,
  .guarantee-card,
  .faq details,
  .validation-comments,
  .comment-card {
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .deliverable-card,
  .price-card,
  .bonus-card {
    padding-right: 14px;
    padding-left: 14px;
  }

  .price-card .check-list,
  .deliverable-card--content-only .check-list {
    max-width: 292px;
    margin-right: auto;
    margin-left: auto;
  }

  .check-list li,
  .price-card .check-list li,
  .deliverable-card--content-only .check-list li {
    padding-left: 22px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .bonus-card h3,
  .price-card h3,
  .deliverable-product-name,
  .faq summary,
  .footer h2 {
    max-width: 292px;
    margin-right: auto;
    margin-left: auto;
  }

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

  .bonus-card p,
  .bonus-takeaway {
    max-width: 292px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.88rem;
  }

  .faq summary {
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .faq p,
  .footer p,
  .footer li {
    max-width: 292px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.94rem;
  }

  .footer__essentials {
    max-width: 292px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Mobile polish: mirrors the tighter, vertical rhythm used in the last landing. */
@media (max-width: 920px) {
  .hero__grid,
  .demo-grid,
  .demo-grid--proof,
  .benefit-grid,
  .benefit-grid--wide,
  .ideal-list,
  .deliverable-layout,
  .deliverable-card,
  .bonus-grid,
  .price-grid,
  .guarantee-card,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .benefit-card,
  .ideal-list article,
  .bonus-card,
  .price-card,
  .deliverable-card--content-only,
  .urgency__inner {
    text-align: center;
  }

  .benefit-card .icon,
  .ideal-list .icon {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  html,
  body,
  .page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .pricing .container,
  .comparison .container {
    width: min(100% - 24px, var(--container));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .hero {
    padding: 42px 0 52px;
  }

  .market-validation,
  .visual-demo,
  .benefits,
  .urgency,
  .ideal,
  .deliverables,
  .bonuses,
  .pricing,
  .guarantee,
  .faq {
    padding: 52px 0;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .hero__content,
  .product-showcase,
  .section-heading,
  .hero__text,
  .pricing-note,
  .footer__brand,
  .footer__disclaimer {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero__content {
    display: contents;
  }

  .hero h1 {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.6rem, 7vw, 2.12rem);
    line-height: 1.08;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .product-showcase {
    order: 2;
    min-height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-showcase--image img {
    width: min(100%, 430px);
    max-width: 100%;
    transform: none !important;
  }

  .hero__text {
    order: 3;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    text-align: center;
  }

  .hero__content > .button {
    order: 4;
    justify-self: center;
  }

  .trust-badges {
    order: 5;
    justify-content: center;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    padding: 0 16px;
    font-size: 0.86rem;
    line-height: 1.15;
    white-space: normal;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.6vw, 2rem);
    line-height: 1.13;
    overflow-wrap: anywhere;
  }

  .section-heading p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .validation-comments,
  .comment-card,
  .benefit-card,
  .ideal-list article,
  .deliverable-card,
  .price-card,
  .bonus-card,
  .guarantee-card,
  .faq details {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .validation-comments,
  .visual-carousel,
  .visual-carousel__track {
    max-width: 100%;
    overflow: hidden;
  }

  .visual-carousel {
    margin-inline: 0;
  }

  .visual-carousel__track {
    gap: 12px;
    padding: 8px 0 22px;
  }

  .visual-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .visual-slide img {
    width: 100%;
    max-width: 100%;
  }

  .deliverable-card,
  .price-card {
    padding: 22px;
  }

  .bonus-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .bonus-card__visual {
    min-height: 220px;
  }

  .bonus-card__visual img {
    width: auto;
    height: min(62vw, 245px);
    max-width: 100%;
  }

  .plan-mockup {
    min-height: 240px;
  }

  .plan-mockup img,
  .price-card--featured .plan-mockup img {
    width: min(100%, 320px);
    max-width: 100%;
  }

  .deliverable-visual,
  .deliverable-mockup {
    min-height: auto;
  }

  .deliverable-mockup img {
    width: min(100%, 420px);
    max-width: 100%;
    transform: none !important;
  }

  .check-list,
  .price-card .check-list,
  .deliverable-card--content-only .check-list {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    justify-items: stretch;
  }

  .check-list li,
  .price-card .check-list li,
  .deliverable-card--content-only .check-list li {
    max-width: 100%;
    padding-left: 24px;
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .check-list li::before {
    left: 0;
  }

  .bonus-card h3,
  .price-card h3,
  .deliverable-product-name,
  .faq summary,
  .footer h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .bonus-card p,
  .bonus-takeaway,
  .faq p,
  .footer p,
  .footer li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .faq summary {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .footer__inner,
  .footer__brand,
  .footer__essentials,
  .footer__disclaimer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

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

@media (max-width: 680px) {
  .validation-board--prints {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 10px;
  }

  .validation-card--print,
  .validation-card--print:nth-child(n + 3) {
    grid-column: auto;
    padding: 8px;
  }

  .validation-card--print span {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .validation-card--print img {
    border-radius: 10px;
  }
}

@media (max-width: 680px) {
  .footer__essentials {
    justify-items: start;
    text-align: left;
  }

  .footer__essentials li {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .price-card--featured {
    padding-top: 78px;
    overflow: visible;
  }

  .price-card--featured .badge {
    top: 18px;
    left: 50%;
    z-index: 3;
    max-width: calc(100% - 32px);
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .visual-carousel__track {
    overflow-x: auto !important;
    overflow-y: hidden;
    overscroll-behavior-x: auto;
    touch-action: pan-y;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    will-change: scroll-position;
  }

  .visual-carousel__track.is-dragging {
    cursor: grabbing;
  }

  .visual-carousel__track .visual-slide {
    flex: 0 0 min(86vw, 320px);
  }

  .visual-carousel__track img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }
}
