:root {
  --color-ink: #111827;
  --color-muted: #5f6878;
  --color-line: #dfe5ec;
  --color-white: #ffffff;
  --color-soft: #f5f7f3;
  --color-dark: #101820;
  --color-dark-2: #16232c;
  --color-navy: #07131f;
  --color-teal: #0f766e;
  --color-teal-dark: #0b5f59;
  --color-green: #22c55e;
  --color-green-dark: #16a34a;
  --color-coral: #ff6b4a;
  --color-coral-dark: #e84f31;
  --color-gold: #22c55e;
  --shadow-soft: 0 18px 60px rgba(17, 24, 39, 0.12);
  --shadow-strong: 0 22px 70px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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;
}

a {
  color: inherit;
}

.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));
}

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

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

.section-accent {
  background: linear-gradient(180deg, #fff8eb 0%, #f7fbfa 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);
}

.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, 1.02fr) minmax(320px, 0.98fr);
  gap: 52px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 620px;
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  line-height: 1.16;
  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(100%, 620px);
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.35));
  transform: scale(1.04);
}

.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);
}

.visual-demo,
.benefits,
.comparison,
.ideal,
.deliverables,
.bonuses,
.pricing,
.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(86vw, 780px);
  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,
.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,
.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);
}

.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: "🎁";
  font-size: 0.95rem;
}

.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.76);
}

.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;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -4px 0 28px;
}

.timer span {
  min-width: 84px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
}

.timer strong {
  display: block;
  color: #ef4444 !important;
  font-size: 1.5rem;
  line-height: 1;
}

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

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

.ideal-list article:last-child {
  grid-column: 1 / -1;
  width: calc((100% - 18px) / 2);
  justify-self: center;
}

.ideal-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.12);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.28);
}

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

.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;
}

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

.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-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: radial-gradient(circle at center, rgba(34, 197, 94, 0.12), rgba(255, 255, 255, 0) 66%);
}

.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: 245px;
  height: 245px;
  max-width: 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 h3 {
  margin-bottom: 8px;
}

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

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

.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: radial-gradient(circle at center, rgba(34, 197, 94, 0.13), rgba(255, 255, 255, 0) 66%);
}

.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: radial-gradient(circle at center, rgba(34, 197, 94, 0.2), rgba(255, 255, 255, 0) 68%);
}

.price-card--featured .plan-mockup img {
  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-card--featured .price small,
.price-card--featured .price span {
  color: rgba(255, 255, 255, 0.72);
}

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

.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: #ef4444;
}

.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,
  .deliverable-card,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    order: 2;
  }

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

  .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, 680px);
  }

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

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

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

  .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;
  }

  .visual-demo,
  .benefits,
  .comparison,
  .ideal,
  .deliverables,
  .bonuses,
  .pricing,
  .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: calc(100% + 18px);
    height: 300px;
    margin-left: -9px;
    margin-right: -9px;
    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,
  .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;
  }

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

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

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

  .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;
  }

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

  .timer {
    gap: 6px;
  }

  .timer span {
    min-width: 0;
    flex: 1;
  }
}
