:root {
  --navy: #071a33;
  --navy-2: #0b2e59;
  --navy-3: #0f3f73;
  --paper: #f5f7fa;
  --white: #ffffff;
  --ink: #f8fbff;
  --dark-ink: #0a1322;
  --muted: #aebbd0;
  --dark-muted: #5a6678;
  --gold: #f4c35a;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --danger: #c95b4d;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(7, 26, 51, 0.14);
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --max: 1320px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 195, 90, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(37, 211, 102, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--navy) 0%, #061426 42%, #071a33 100%);
  background-size: 118% 118%, 122% 122%, auto;
  font-family: "Satoshi", "Cabinet Grotesk", "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  animation: atmosphereShift 18s ease-in-out infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  animation: gridDrift 18s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--whatsapp));
  box-shadow: 0 0 22px rgba(244, 196, 48, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 45;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 195, 90, 0.15), rgba(37, 211, 102, 0.08) 36%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.74;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.motion-word {
  display: inline-block;
  will-change: transform, opacity;
}

.reveal-item {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 520ms ease,
    translate 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  translate: 0 0;
}

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

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(12, 31, 57, 0.92), rgba(28, 49, 78, 0.78)),
    rgba(7, 26, 51, 0.86);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(155%);
  transform: translateX(-50%);
  overflow: hidden;
  transition:
    top 240ms ease,
    min-height 240ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
  will-change: transform, opacity;
}

.site-nav.is-scrolled {
  top: 9px;
  min-height: 66px;
  border-color: rgba(244, 196, 48, 0.24);
  background:
    linear-gradient(135deg, rgba(9, 26, 49, 0.96), rgba(20, 42, 70, 0.9)),
    rgba(7, 26, 51, 0.92);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(244, 196, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "mark name"
    "mark sub";
  align-items: center;
  column-gap: 11px;
  min-height: 52px;
  padding: 0 10px 0 2px;
  width: max-content;
  border-radius: 999px;
}

.brand-mark {
  grid-area: mark;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 950;
  box-shadow:
    0 12px 26px rgba(244, 196, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  animation: brandSignal 4.8s ease-in-out infinite;
}

.brand-text {
  grid-area: name;
  color: var(--white);
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.brand-text em {
  color: var(--gold);
  font-style: normal;
}

.brand small {
  grid-area: sub;
  margin-top: 4px;
  color: #aebbd0;
  font-size: 11.5px;
}

.site-nav nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  color: #c5cfdd;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  font-size: 14px;
}

.site-nav nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-nav nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.nav-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 3px;
  min-height: 40px;
  padding: 4px;
  color: #c5cfdd;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.language-option {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-option:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.language-option.is-active {
  color: var(--navy);
  background: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.nav-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  color: var(--white);
  background:
    linear-gradient(135deg, #25d366, #1ec45b);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  box-shadow:
    0 18px 42px rgba(37, 211, 102, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button,
.mini-cta,
.nav-action {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::after,
.mini-cta::after,
.nav-action::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.38), transparent 9rem),
    linear-gradient(115deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.28) 48%, transparent 60%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 220ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.button:hover::after,
.mini-cta:hover::after,
.nav-action:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.hero,
.problem-section,
.before-after-section,
.offer-section,
.examples-section,
.plans-section,
.chooser-section,
.about-section,
.safety-section,
.faq-section,
.final-action,
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.problem-section,
.process-section,
.before-after-section,
.offer-section,
.examples-section,
.plans-section,
.chooser-section,
.about-section,
.safety-section,
.faq-section,
.final-action,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 860px;
}

.conversion-hero {
  --orbit-x: 0px;
  --orbit-y: 0px;
  --hero-glow-x: 64%;
  --hero-glow-y: 44%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: 100dvh;
  padding: clamp(124px, 12vw, 178px) 0 clamp(74px, 9vw, 128px);
  isolation: isolate;
}

.conversion-hero::before {
  content: "";
  position: absolute;
  left: -18vw;
  top: 18%;
  z-index: 0;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(244, 195, 90, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(244, 196, 48, 0.16), transparent 14rem),
    radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.08), transparent 68%);
  box-shadow:
    inset 0 0 54px rgba(244, 196, 48, 0.08),
    0 0 80px rgba(244, 196, 48, 0.08);
  opacity: 0.86;
  pointer-events: none;
  transform: translate3d(var(--orbit-x), var(--orbit-y), 0) rotate(-16deg);
  animation: heroOrbit 13s ease-in-out infinite alternate;
  will-change: transform, border-color, opacity;
}

.conversion-hero::after {
  content: "";
  position: absolute;
  right: 29%;
  top: 15%;
  z-index: 0;
  width: clamp(180px, 24vw, 420px);
  height: clamp(180px, 24vw, 420px);
  border: 1px solid rgba(37, 211, 102, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(37, 211, 102, 0.16), transparent 15rem),
    radial-gradient(circle at 72% 68%, rgba(244, 196, 48, 0.12), transparent 14rem);
  filter: blur(0.2px);
  opacity: 0.64;
  pointer-events: none;
  animation: heroInnerOrbit 16s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #b88624;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 5.1vw, 74px);
  line-height: 0.98;
}

.hero-lede {
  max-width: 710px;
  margin-top: 28px;
  color: #eaf2ff;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-offer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 7px;
  color: #eaf2ff;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 62%),
    rgba(7, 26, 51, 0.42);
  background-size: 240% 100%, auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: offerShine 5.8s ease-in-out infinite;
}

.hero-offer-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 950;
  white-space: nowrap;
}

.hero-offer-line strong {
  color: var(--gold);
  margin-left: 4px;
}

.hero-lede strong,
.offer-price strong,
.plan-card strong {
  color: var(--gold);
}

.hero-proof-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-proof-list li {
  position: relative;
  padding-left: 24px;
  color: #d8e2f3;
  font-size: 16px;
}

.hero-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: dotPulse 2.6s ease-in-out infinite;
}

.niche-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 24px;
}

.niche-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #eaf2ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  animation: chipFloat 6s ease-in-out infinite;
}

.niche-chips span:nth-child(2n) {
  animation-delay: -1.4s;
}

.niche-chips span:nth-child(3n) {
  animation-delay: -2.6s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms ease, border-color 240ms ease;
  will-change: transform;
}

.button.whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.22);
  animation: ctaBreath 3.8s ease-in-out infinite;
}

.button.whatsapp:hover {
  background: var(--whatsapp-hover);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button.large {
  min-height: 64px;
  padding: 0 34px;
  font-size: 18px;
}

.button:hover,
.nav-action:hover,
.mini-cta:hover,
.text-link:hover {
  transform: translateY(-3px);
}

.microcopy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: clamp(560px, 50vw, 710px);
  perspective: 1200px;
}

.hero-impact-frame {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  margin-left: clamp(-58px, -3vw, -30px);
  margin-right: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-impact-frame::before {
  content: "";
  position: absolute;
  inset: 6% -4% 0 0;
  z-index: -1;
  background:
    radial-gradient(circle at 64% 42%, rgba(244, 195, 90, 0.2), transparent 20rem),
    radial-gradient(circle at 48% 62%, rgba(37, 211, 102, 0.13), transparent 24rem);
  filter: blur(6px);
}

.hero-impact-frame::after {
  content: "";
  position: absolute;
  inset: 4% 1% 7%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.16) 50%, transparent 58%, transparent 100%);
  border-radius: 30px;
  mix-blend-mode: screen;
  opacity: 0;
  animation: heroGlassSweep 7s ease-in-out infinite;
}

.hero-impact-image {
  width: min(900px, 53.5vw);
  max-width: none;
  height: auto;
  border-radius: 28px;
  filter:
    drop-shadow(0 34px 90px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 48px rgba(244, 195, 90, 0.08));
  transform: rotate(0.35deg) translateZ(0);
  transform-origin: 58% 52%;
  will-change: transform, filter, opacity;
}

.hero-mobile-visual {
  display: none;
}

.transformation-stage {
  position: absolute;
  inset: 0;
  min-height: 630px;
}

.hero-badges {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 420px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(7, 26, 51, 0.82);
  border: 1px solid rgba(244, 196, 48, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 950;
}

.hero-badges span:first-child {
  color: var(--navy);
  background: var(--gold);
}

.before-panel,
.after-panel {
  position: absolute;
}

.visual-label {
  position: relative;
  z-index: 2;
  width: max-content;
  min-width: 92px;
  margin-bottom: 10px;
  padding: 8px 16px;
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.label-before {
  background: rgba(90, 102, 120, 0.92);
}

.label-after {
  margin-left: 28px;
  background: var(--whatsapp);
}

.before-panel {
  left: 0;
  top: 186px;
  z-index: 3;
  width: 220px;
  transform: rotate(-2.5deg);
}

.social-profile {
  padding: 16px;
  color: var(--dark-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 50% 35%, #a5adba 0 18%, transparent 19%),
    radial-gradient(circle at 50% 86%, #a5adba 0 33%, transparent 34%),
    #e5e9ef;
  border-radius: 50%;
}

.profile-top strong {
  display: block;
  font-size: 14px;
}

.profile-top span,
.profile-stats span,
.social-profile p {
  color: var(--dark-muted);
  font-size: 11px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 15px 0;
  text-align: center;
}

.profile-stats strong {
  display: block;
  color: var(--dark-ink);
  font-size: 14px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 14px;
}

.profile-grid span {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.18), rgba(7, 26, 51, 0.7)),
    #9aa5b3;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
}

.problem-notes {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.problem-notes li {
  padding: 8px 10px;
  color: #f8fbff;
  background: rgba(7, 26, 51, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 900;
}

.transform-arrow {
  position: absolute;
  left: 31%;
  top: 49%;
  z-index: 2;
  width: 82px;
  height: 28px;
}

.transform-arrow span,
.transform-arrow span::after {
  content: "";
  position: absolute;
}

.transform-arrow span {
  left: 0;
  top: 13px;
  width: 74px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(244, 196, 48, 0.32);
}

.transform-arrow span::after {
  right: -2px;
  top: -6px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  transform: rotate(45deg);
}

.after-panel {
  right: 0;
  top: 84px;
  z-index: 4;
  width: min(460px, 82%);
}

.device-cluster {
  position: relative;
  min-height: 500px;
}

.laptop-device {
  position: relative;
  width: 100%;
  padding: 16px 16px 0;
  background: linear-gradient(180deg, #111927, #050a12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.42);
}

.laptop-screen {
  overflow: hidden;
  min-height: 390px;
  color: var(--navy);
  background: #ffffff;
  border-radius: var(--radius);
}

.laptop-base {
  width: 112%;
  height: 18px;
  margin: 0 -6%;
  background: linear-gradient(180deg, #cfd8e6, #7e8ca0);
  border-radius: 0 0 22px 22px;
}

.site-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(7, 26, 51, 0.1);
  font-size: 10px;
}

.site-topbar strong {
  margin-right: auto;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
}

.site-topbar nav {
  display: flex;
  gap: 12px;
  color: var(--dark-muted);
}

.site-hero-demo {
  display: grid;
  align-items: end;
  min-height: 210px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.92), rgba(7, 26, 51, 0.34)),
    radial-gradient(circle at 82% 16%, rgba(37, 211, 102, 0.34), transparent 13rem),
    linear-gradient(135deg, var(--navy-2), #eef4fb);
}

.site-hero-demo h2 {
  max-width: 310px;
  color: var(--white);
  font-size: 34px;
  line-height: 0.98;
}

.site-hero-demo p {
  max-width: 280px;
  margin-top: 10px;
  color: #dbe8f8;
  font-size: 14px;
}

.site-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.site-demo-actions span,
.mobile-device > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.site-demo-actions span:nth-child(2) {
  color: var(--navy);
  background: var(--gold);
}

.site-sections-demo {
  display: block;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px;
  background: #f7f9fc;
}

.site-sections-demo span {
  display: grid;
  place-items: center;
  min-height: 68px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.mobile-device {
  position: absolute;
  right: -10px;
  bottom: 18px;
  width: 142px;
  min-height: 270px;
  padding: 16px 12px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.12), rgba(7, 26, 51, 0.92)),
    #ffffff;
  border: 6px solid #111927;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.mobile-speaker {
  width: 54px;
  height: 6px;
  margin: 0 auto 18px;
  background: #111927;
  border-radius: 999px;
}

.mobile-device h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1;
}

.mobile-device p {
  margin: 8px 0 12px;
  color: var(--dark-muted);
  font-size: 11px;
}

.mobile-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 20px;
}

.mobile-icons i {
  height: 32px;
  background: rgba(7, 26, 51, 0.08);
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: var(--radius);
}

.mobile-icons i::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 8px auto;
  background: var(--whatsapp);
  border-radius: 50%;
}

.conversion-badge,
.price-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  width: 190px;
  padding: 18px;
  background: rgba(7, 26, 51, 0.86);
  border: 1px solid rgba(244, 195, 90, 0.4);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.conversion-badge span,
.price-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversion-badge strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.badge-free {
  right: 0;
  top: 26px;
}

.badge-approval {
  left: 16px;
  bottom: 110px;
}

.price-card {
  right: 0;
  bottom: 50px;
}

.price-card strong {
  color: var(--gold);
  font-size: 46px;
  line-height: 0.95;
}

.marquee-band {
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.problem-section,
.before-after-section,
.offer-section,
.examples-section,
.plans-section,
.chooser-section,
.about-section,
.safety-section,
.faq-section,
.final-action {
  padding: clamp(76px, 9vw, 132px) 0;
}

.light-section {
  width: 100%;
  max-width: 100%;
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  background: var(--paper);
  color: var(--dark-ink);
}

.section-intro {
  max-width: 1040px;
  margin-bottom: clamp(30px, 4vw, 56px);
}

.section-intro.compact {
  max-width: 820px;
}

.section-intro h2,
.offer-card h2,
.chooser-section h2,
.about-copy h2,
.final-action h2 {
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: 0.96;
}

.section-intro p,
.offer-card p,
.chooser-section p,
.about-copy p,
.final-action p {
  max-width: 780px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}

.dark-copy p,
.dark-copy {
  color: var(--dark-muted);
}

.problem-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

.problem-simple {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.problem-copy h2 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.94;
}

.problem-copy p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--dark-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.42;
}

.trust-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) 72px minmax(0, 1.06fr);
  gap: 16px;
  align-items: center;
}

.trust-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  box-shadow: 0 22px 70px rgba(7, 26, 51, 0.08);
  transform-style: preserve-3d;
  transition: border-color 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.living-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, var(--card-glow, rgba(244, 196, 48, 0.14)), transparent 9rem),
    linear-gradient(110deg, transparent 0%, transparent 39%, rgba(255, 255, 255, 0.12) 49%, transparent 59%, transparent 100%);
  background-size: auto, 230% 100%;
  background-position: center, -160% 0;
  border-radius: inherit;
  mix-blend-mode: screen;
  opacity: 0.34;
  animation:
    cardGlowFlow var(--card-speed, 7s) ease-in-out infinite,
    cardPulse calc(var(--card-speed, 7s) * 1.3) ease-in-out infinite;
  animation-delay: var(--card-delay, 0s);
}

.living-card:hover::after {
  opacity: 0.62;
}

.trust-card:hover {
  box-shadow: 0 32px 94px rgba(7, 26, 51, 0.16);
}

.trust-card img {
  width: 100%;
  height: clamp(150px, 12vw, 190px);
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 420ms ease;
  will-change: transform, filter;
}

.trust-card-body {
  padding: clamp(20px, 2.2vw, 28px);
}

.trust-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: #b88624;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-card h3 {
  max-width: 360px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 0.98;
}

.trust-card ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.trust-card li {
  position: relative;
  padding-left: 20px;
  color: var(--dark-muted);
  font-size: 16px;
}

.trust-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9aa8bc;
}

.trust-card.weak {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.98));
}

.trust-card.weak img {
  filter: saturate(0.86) contrast(1.02);
  object-position: 50% 48%;
}

.trust-card.strong {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 211, 102, 0.24), transparent 15rem),
    linear-gradient(135deg, #071a33, #0b2e59);
  border-color: rgba(244, 196, 48, 0.34);
  box-shadow: 0 30px 90px rgba(7, 26, 51, 0.22);
}

.trust-card.strong:hover {
  border-color: rgba(244, 196, 48, 0.58);
  box-shadow:
    0 34px 100px rgba(7, 26, 51, 0.24),
    0 0 0 1px rgba(244, 196, 48, 0.16);
}

.trust-card.strong img {
  border-bottom: 1px solid rgba(244, 196, 48, 0.22);
  object-position: 53% 50%;
}

.trust-card.strong span {
  color: var(--gold);
}

.trust-card.strong li {
  color: #dce6f4;
}

.trust-card.strong li::before {
  background: var(--whatsapp);
}

.trust-arrow {
  align-self: center;
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
}

.trust-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 134, 36, 0), rgba(184, 134, 36, 0.72), rgba(184, 134, 36, 0));
}

.trust-arrow span {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border: 5px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(244, 196, 48, 0.36);
  will-change: transform;
}

.trust-arrow span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--navy);
  border-right: 3px solid var(--navy);
  transform: translateX(-2px) rotate(45deg);
}

.problem-cta {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(26px, 3vw, 42px);
  padding: 18px 20px 18px 24px;
  color: var(--white);
  background: #071a33;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(7, 26, 51, 0.12);
}

.problem-cta strong {
  max-width: 760px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
}

.problem-cta .button {
  flex: 0 0 auto;
}

.pain-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pain-grid article,
.safety-grid article,
.plan-card,
details {
  border-radius: var(--radius);
}

.pain-grid article {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--dark-line);
  box-shadow: 0 22px 70px rgba(7, 26, 51, 0.07);
}

.pain-grid span,
.plan-card > span {
  display: block;
  margin-bottom: 46px;
  color: #b88624;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pain-grid h3,
.compare-card h3,
.offer-lists h3,
.example-card h3,
.plan-card h3,
.safety-grid h3 {
  font-size: clamp(24px, 2.7vw, 42px);
  line-height: 1;
}

.pain-grid p,
.compare-card li,
.offer-lists li,
.example-card p,
.example-card span,
.plan-card p,
.plan-card li,
.plan-card small,
.safety-grid p,
.faq-list p,
.footer p,
.footer span {
  color: var(--dark-muted);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 34px;
  color: var(--navy);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.before-after-section {
  color: var(--ink);
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.compare-card {
  min-height: 620px;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-header strong {
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}

.social-mock {
  display: grid;
  gap: 16px;
  margin: 80px 0 42px;
}

.social-mock div {
  height: 86px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.before-card {
  border-color: rgba(201, 91, 77, 0.35);
}

.before-card li::before {
  background: var(--danger);
}

.after-card {
  border-color: rgba(37, 211, 102, 0.4);
}

.after-card img {
  width: 100%;
  height: 330px;
  margin: 46px 0 34px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.95) contrast(1.08);
}

.compare-card ul,
.offer-lists ul,
.plan-card ul,
.about-copy ul {
  display: grid;
  gap: 10px;
}

.compare-card li,
.offer-lists li,
.plan-card li,
.about-copy li {
  position: relative;
  padding-left: 20px;
}

.compare-card li::before,
.offer-lists li::before,
.plan-card li::before,
.about-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
}

.compare-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.before-after-section > .button,
.examples-section > .button,
.safety-section > .button {
  margin-top: 34px;
}

.process-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 78px) 0;
  color: var(--ink);
}

.process-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 36px);
  background:
    radial-gradient(circle at 88% 0%, rgba(37, 211, 102, 0.16), transparent 20rem),
    radial-gradient(circle at 0% 10%, rgba(244, 195, 90, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.18);
}

.process-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.08) 50%, transparent 58%, transparent 100%);
  opacity: 0.7;
  animation: panelSweep 8s ease-in-out infinite;
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.process-head h2 {
  max-width: 840px;
  font-size: clamp(32px, 3.9vw, 54px);
  line-height: 0.96;
}

.process-head p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
}

.process-head .button {
  justify-self: end;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 4px);
}

.process-step {
  position: relative;
  isolation: isolate;
  min-height: 158px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: background 260ms ease, box-shadow 260ms ease;
  will-change: transform, opacity;
}

.process-step.is-active {
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 196, 48, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.process-step + .process-step {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #062818;
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.process-step.is-active span {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(244, 196, 48, 0.12);
}

.process-step strong {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.02;
}

.process-step p {
  margin-top: 10px;
  color: #b9c6da;
  font-size: 15px;
  line-height: 1.38;
}

.offer-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: stretch;
  padding: clamp(30px, 4vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 8%, rgba(37, 211, 102, 0.2), transparent 22rem),
    radial-gradient(circle at 6% 0%, rgba(244, 195, 90, 0.18), transparent 18rem),
    linear-gradient(135deg, #071a33 0%, #0b2e59 100%);
  border: 1px solid rgba(244, 195, 90, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(7, 26, 51, 0.22);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  border-radius: calc(var(--radius) - 1px);
}

.offer-copy,
.offer-includes {
  position: relative;
  z-index: 1;
}

.offer-copy {
  display: grid;
  align-content: start;
}

.offer-copy > p:not(.eyebrow),
.offer-card .microcopy {
  color: #d8e2f3;
}

.offer-copy > .eyebrow.dark {
  color: var(--gold);
}

.offer-card h2 {
  max-width: 430px;
  color: var(--white);
  font-size: clamp(52px, 5vw, 82px);
}

.offer-price {
  display: grid;
  gap: 6px;
  max-width: 340px;
  margin: 26px 0;
  padding: 20px 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(244, 195, 90, 0.16), rgba(244, 195, 90, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 195, 90, 0.44);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.offer-price span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-price strong {
  color: var(--gold);
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.9;
}

.offer-includes {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.includes-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.includes-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.includes-head h3 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
  text-align: left;
}

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

.include-grid li {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 118px;
  padding: 18px 18px 18px 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.include-grid li:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border-color: rgba(244, 196, 48, 0.24);
}

.include-grid li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.12);
}

.include-grid strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.1;
}

.include-grid span {
  display: block;
  margin-top: 8px;
  color: #b9c6da;
  font-size: 13px;
  line-height: 1.35;
}

.examples-section {
  color: var(--ink);
}

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

.example-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  will-change: transform, opacity;
}

.example-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  border-radius: inherit;
}

.example-slide {
  display: none;
  margin: 0;
}

.example-slide.is-active {
  display: block;
  animation: showcaseFade 320ms ease both;
}

.example-slide img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  height: auto;
  object-fit: cover;
  display: block;
  filter: saturate(0.98) contrast(1.04);
}

.showcase-meta {
  display: grid;
  place-items: center;
  gap: 6px;
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.showcase-meta strong {
  color: var(--white);
  font-size: clamp(25px, 2.8vw, 42px);
  line-height: 1;
}

.showcase-meta p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.42;
}

.examples-section > .button {
  display: flex;
  width: max-content;
  margin: 34px auto 0;
}

.carousel-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--navy);
  background: var(--gold);
  border: 6px solid rgba(7, 26, 51, 0.82);
  border-radius: 50%;
  cursor: pointer;
  box-shadow:
    0 22px 58px rgba(244, 196, 48, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: transform 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
  animation: arrowBreath 4.4s ease-in-out infinite;
}

.carousel-arrow::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.55), transparent 7rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.carousel-arrow:hover::before {
  opacity: 1;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 72px rgba(244, 196, 48, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.carousel-arrow span {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--navy);
  border-right: 3px solid var(--navy);
}

.carousel-arrow.prev span {
  transform: translateX(2px) rotate(-135deg);
}

.carousel-arrow.next span {
  transform: translateX(-2px) rotate(45deg);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  border-radius: 50%;
  transition: width 220ms ease, background 220ms ease;
}

.carousel-dots button.is-active {
  width: 30px;
  background: var(--gold);
  border-radius: 999px;
}

@keyframes showcaseFade {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroOrbit {
  0% {
    border-color: rgba(244, 195, 90, 0.22);
    opacity: 0.68;
    transform: translate3d(calc(var(--orbit-x) - 14px), calc(var(--orbit-y) + 8px), 0) rotate(-22deg) scale(0.98);
  }
  42% {
    border-color: rgba(37, 211, 102, 0.2);
    opacity: 0.92;
    transform: translate3d(calc(var(--orbit-x) + 12px), calc(var(--orbit-y) - 18px), 0) rotate(8deg) scale(1.04);
  }
  100% {
    border-color: rgba(244, 195, 90, 0.34);
    opacity: 0.78;
    transform: translate3d(calc(var(--orbit-x) + 26px), calc(var(--orbit-y) + 6px), 0) rotate(28deg) scale(1.01);
  }
}

@keyframes heroInnerOrbit {
  0% {
    opacity: 0.26;
    transform: translate3d(-18px, 10px, 0) rotate(0deg) scale(0.92);
  }
  48% {
    opacity: 0.72;
    transform: translate3d(24px, -16px, 0) rotate(34deg) scale(1.08);
  }
  100% {
    opacity: 0.38;
    transform: translate3d(-6px, 18px, 0) rotate(72deg) scale(0.98);
  }
}

@keyframes cardGlowFlow {
  0%,
  36% {
    background-position: center, -170% 0;
  }
  70%,
  100% {
    background-position: center, 170% 0;
  }
}

@keyframes cardPulse {
  0%,
  100% {
    opacity: 0.22;
    filter: saturate(0.9);
  }
  50% {
    opacity: 0.5;
    filter: saturate(1.25);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.22);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    transform: scale(1.18);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.16);
  }
  50% {
    transform: translateY(-4px);
    border-color: rgba(244, 196, 48, 0.34);
  }
}

@keyframes ctaBreath {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.22);
  }
  50% {
    box-shadow:
      0 22px 58px rgba(37, 211, 102, 0.34),
      0 0 0 7px rgba(37, 211, 102, 0.08);
  }
}

@keyframes arrowBreath {
  0%,
  100% {
    box-shadow:
      0 22px 58px rgba(244, 196, 48, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }
  50% {
    box-shadow:
      0 28px 72px rgba(244, 196, 48, 0.46),
      0 0 0 8px rgba(244, 196, 48, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }
}

@keyframes atmosphereShift {
  from {
    background-position: 0% 0%, 100% 0%, 0 0;
  }
  to {
    background-position: 10% 4%, 90% 10%, 0 0;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 78px 78px, 78px 78px;
  }
}

@keyframes brandSignal {
  0%,
  100% {
    box-shadow:
      0 12px 26px rgba(244, 196, 48, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 16px 34px rgba(244, 196, 48, 0.28),
      0 0 0 7px rgba(244, 196, 48, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transform: scale(1.035);
  }
}

@keyframes offerShine {
  0%,
  42% {
    background-position: -180% 0, 0 0;
  }
  70%,
  100% {
    background-position: 180% 0, 0 0;
  }
}

@keyframes heroGlassSweep {
  0%,
  35% {
    opacity: 0;
    transform: translateX(-38%) skewX(-8deg);
  }
  47% {
    opacity: 0.72;
  }
  62%,
  100% {
    opacity: 0;
    transform: translateX(38%) skewX(-8deg);
  }
}

@keyframes panelSweep {
  0%,
  45% {
    transform: translateX(-48%);
  }
  82%,
  100% {
    transform: translateX(48%);
  }
}

@keyframes recommendedFloat {
  0%,
  100% {
    box-shadow: 0 32px 92px rgba(7, 26, 51, 0.2);
  }
  50% {
    box-shadow:
      0 38px 108px rgba(7, 26, 51, 0.24),
      0 0 0 1px rgba(244, 196, 48, 0.1);
  }
}

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

.plan-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--dark-line);
  box-shadow: 0 24px 76px rgba(7, 26, 51, 0.08);
  transform-style: preserve-3d;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  will-change: transform, opacity;
}

.plan-card:hover {
  border-color: rgba(7, 26, 51, 0.22);
  box-shadow: 0 32px 98px rgba(7, 26, 51, 0.13);
}

.plan-card.recommended {
  order: -1;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 8%, rgba(37, 211, 102, 0.2), transparent 18rem),
    radial-gradient(circle at 6% 0%, rgba(244, 195, 90, 0.18), transparent 16rem),
    linear-gradient(145deg, #071a33, #0b2e59);
  border: 1px solid rgba(244, 195, 90, 0.42);
  box-shadow: 0 32px 92px rgba(7, 26, 51, 0.2);
  transform: translateY(-10px);
  animation: recommendedFloat 5.8s ease-in-out infinite;
}

.plan-card.recommended:hover {
  border-color: rgba(244, 196, 48, 0.66);
  box-shadow:
    0 38px 110px rgba(7, 26, 51, 0.24),
    0 0 0 1px rgba(244, 196, 48, 0.12);
}

.plan-card h3 {
  min-height: 58px;
}

.plan-card strong {
  display: block;
  margin: 22px 0 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.95;
}

.plan-card ul {
  flex: 1;
  margin: 24px 0;
}

.plan-card small {
  display: block;
  margin-bottom: 22px;
}

.plan-card > span {
  margin-bottom: 32px;
}

.plan-card.recommended h3 {
  color: var(--white);
}

.plan-card.recommended > span,
.plan-card.recommended strong {
  color: var(--gold);
}

.plan-card.recommended p,
.plan-card.recommended li,
.plan-card.recommended small {
  color: #d8e2f3;
}

.plan-card.recommended li::before {
  background: var(--gold);
}

.plan-card.recommended .mini-cta {
  color: #062818;
  background: var(--whatsapp);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.24);
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  padding: 0 15px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms ease;
}

.mini-cta:hover {
  background: var(--navy-2);
}

.chooser-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  color: var(--ink);
}

.chooser-section .button {
  width: max-content;
  margin-top: 28px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.company-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 500px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(7, 26, 51, 0.16);
  will-change: transform, opacity;
}

.company-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 26, 51, 0.86)),
    radial-gradient(circle at 12% 86%, rgba(244, 195, 90, 0.24), transparent 15rem);
  pointer-events: none;
}

.company-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  will-change: transform;
}

.company-card figcaption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.company-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-card strong {
  max-width: 390px;
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.94;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-copy ul {
  margin-top: 26px;
}

.about-cta {
  width: max-content;
  margin-top: 32px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.2);
}

.safety-section {
  color: var(--ink);
}

.safety-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.safety-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.safety-grid p {
  color: var(--muted);
  margin-top: 20px;
}

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

details {
  position: relative;
  isolation: isolate;
  background: var(--white);
  border: 1px solid var(--dark-line);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform, opacity;
}

details:hover,
details[open] {
  border-color: rgba(7, 26, 51, 0.22);
  box-shadow: 0 18px 48px rgba(7, 26, 51, 0.07);
}

summary {
  cursor: pointer;
  padding: 24px 26px;
  color: var(--dark-ink);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 950;
  letter-spacing: 0;
  list-style: none;
}

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

summary::after {
  content: "";
  float: right;
  width: 12px;
  height: 12px;
  margin-top: 9px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

details[open] summary::after {
  transform: rotate(225deg) translate(-4px, -4px);
}

details p {
  max-width: 920px;
  padding: 0 26px 26px;
}

.final-action {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: clamp(58px, 8vw, 112px);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 22%, rgba(37, 211, 102, 0.22), transparent 22rem),
    radial-gradient(circle at 8% 100%, rgba(244, 196, 48, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  will-change: transform, opacity;
}

.final-action::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.final-copy,
.final-whatsapp-card {
  position: relative;
  z-index: 1;
}

.final-action h2 {
  max-width: 860px;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.94;
}

.final-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.42;
}

.final-whatsapp-card {
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.82), rgba(7, 26, 51, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.final-whatsapp-card span {
  width: max-content;
  padding: 8px 12px;
  color: #062818;
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-whatsapp-card strong {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.98;
}

.final-whatsapp-card p {
  color: #b9c6da;
  font-size: 16px;
  line-height: 1.42;
}

.final-whatsapp-card .button {
  width: 100%;
  margin-top: 8px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 32px;
  margin: 28px auto 74px;
  padding: 24px;
  color: var(--muted);
  background:
    radial-gradient(circle at 92% 0%, rgba(37, 211, 102, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  will-change: transform, opacity;
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 16px;
}

.footer strong::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(244, 196, 48, 0.12);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #c8d3e3;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 14px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.footer nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer p {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  padding-top: 18px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12.5px;
  line-height: 1.45;
}

.mobile-whatsapp {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 999px;
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 240ms ease, transform 240ms ease;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 760px) {
  body {
    animation: none;
  }

  body::before {
    animation: none;
  }

  .living-card::after {
    animation: none;
    opacity: 0.24;
  }

  .cursor-light {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .site-nav nav {
    display: none;
  }

  .conversion-hero,
  .offer-card,
  .chooser-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .problem-simple {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-impact-frame {
    margin: 18px auto 0;
  }

  .hero-impact-image {
    width: min(980px, 100%);
    max-width: 100%;
    border-radius: 24px;
    transform: none;
  }

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

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

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

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 760px) {
  .site-nav {
    top: 10px;
    gap: 8px;
    width: calc(100% - 18px);
    min-height: 64px;
    padding: 8px;
  }

  .brand {
    grid-template-areas: "mark name";
    column-gap: 9px;
    min-height: 48px;
    padding-right: 6px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .brand-text {
    font-size: 14px;
  }

  .nav-action {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-tools {
    gap: 8px;
  }

  .language-switch {
    min-height: 38px;
    padding: 3px;
  }

  .language-option {
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .hero,
  .before-after-section,
  .examples-section,
  .chooser-section,
  .safety-section,
  .final-action,
  .footer {
    width: min(var(--max), calc(100% - 24px));
  }

  .conversion-hero {
    min-height: auto;
    padding-top: 116px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-offer-line {
    order: 5;
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
    line-height: 1.35;
  }

  .hero-offer-line span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-mobile-visual {
    order: 4;
    display: block;
    margin: 22px -6px 0;
  }

  .hero-mobile-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    filter:
      drop-shadow(0 24px 54px rgba(0, 0, 0, 0.34))
      drop-shadow(0 0 28px rgba(244, 195, 90, 0.08));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    order: 6;
  }

  .microcopy {
    order: 7;
  }

  .hero-proof-list {
    order: 8;
  }

  .niche-chips {
    order: 9;
  }

  .hero-proof-list li {
    font-size: 15px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-impact-frame {
    margin: 24px -6px 0;
  }

  .conversion-hero > .hero-impact-frame {
    display: none;
  }

  .hero-impact-image {
    width: 100%;
    border-radius: 18px;
    filter:
      drop-shadow(0 24px 54px rgba(0, 0, 0, 0.34))
      drop-shadow(0 0 28px rgba(244, 195, 90, 0.08));
  }

  .section-intro h2,
  .offer-card h2,
  .chooser-section h2,
  .about-copy h2,
  .final-action h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .final-action {
    width: min(var(--max), calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 34px 22px;
    border-radius: var(--radius);
  }

  .final-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 17px;
  }

  .final-whatsapp-card {
    padding: 22px;
  }

  .problem-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .problem-copy h2 {
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .trust-compare {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-card {
    min-height: auto;
    padding: 0;
  }

  .trust-card img {
    height: 148px;
  }

  .trust-card-body {
    padding: 20px;
  }

  .trust-card span {
    margin-bottom: 16px;
  }

  .trust-card.strong {
    transform: none;
  }

  .trust-arrow {
    justify-self: center;
    width: 58px;
    height: 58px;
    transform: rotate(90deg);
  }

  .problem-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
  }

  .problem-cta .button {
    width: 100%;
  }

  .pain-grid,
  .plans-grid,
  .safety-grid,
  .include-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    width: min(var(--max), calc(100% - 24px));
    padding: 46px 0;
  }

  .process-panel {
    padding: 22px;
  }

  .process-head {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .process-head .button {
    width: 100%;
    justify-self: stretch;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    min-height: auto;
    border-left: 0;
  }

  .process-step + .process-step {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .offer-card {
    align-items: stretch;
    padding: 26px 22px;
  }

  .offer-price {
    max-width: 100%;
    margin: 20px 0;
    padding: 18px;
  }

  .includes-head {
    display: grid;
    gap: 10px;
  }

  .includes-head h3 {
    text-align: left;
  }

  .include-grid li {
    min-height: auto;
    padding: 13px 13px 13px 38px;
  }

  .include-grid li::before {
    left: 16px;
    top: 20px;
  }

  .include-grid strong {
    font-size: 15px;
  }

  .include-grid span {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.25;
  }

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

  .compare-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .compare-card {
    min-height: auto;
  }

  .carousel-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    border-width: 4px;
  }

  .carousel-arrow span {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .showcase-meta {
    margin-top: 18px;
  }

  .examples-section > .button {
    width: 100%;
    justify-content: center;
  }

  .plan-card.recommended {
    transform: none;
  }

  .company-card,
  .company-card img {
    min-height: 390px;
  }

  .company-card figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 84px;
    padding: 20px;
  }

  .footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .footer nav a {
    justify-content: center;
  }

  .footer p {
    padding-top: 16px;
    font-size: 12px;
  }

  .mobile-whatsapp {
    left: auto;
    right: 14px;
    bottom: 14px;
    display: flex;
    width: max-content;
    max-width: calc(100% - 28px);
    min-height: 50px;
    padding: 0 18px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 420px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-action {
    display: none;
  }

  .hero h1 {
    font-size: clamp(31px, 8.8vw, 36px);
  }

  .button {
    white-space: normal;
    text-align: center;
  }
}
