:root {
  --ink: #151815;
  --ink-2: #1c211d;
  --ink-3: #252b25;
  --surface: rgba(255, 250, 244, 0.09);
  --surface-strong: #252821;
  --surface-light: #fffaf4;
  --line: rgba(255, 250, 244, 0.16);
  --line-dark: rgba(31, 38, 31, 0.13);
  --text: #fffaf4;
  --text-dark: #171a16;
  --muted: #d8d2c8;
  --muted-dark: #686f66;
  --whatsapp: #25d366;
  --whatsapp-dark: #148a49;
  --cyan: #62c7ff;
  --blue: #3179ff;
  --coral: #ff5a1f;
  --coral-soft: #ff9b54;
  --yellow: #ffc857;
  --cream: #fff4e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 18, 11, 0.26);
  --radius: 8px;
  --font-display: Sora, Inter, Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 46%, #171a16 100%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
summary {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--text);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(21, 24, 21, 0.88);
  box-shadow: 0 18px 42px rgba(26, 18, 11, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 128px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.88;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  background: var(--cream);
  color: #24150e;
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.14);
}

.btn {
  min-height: 56px;
  padding-inline: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn span,
.header-cta span {
  min-width: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-soft) 100%);
  color: #23140e;
  box-shadow: 0 18px 38px rgba(255, 90, 31, 0.23);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: var(--cream);
  color: #24150e;
  box-shadow: 0 20px 44px rgba(26, 18, 11, 0.2);
}

.hero {
  position: relative;
  min-height: min(900px, 94svh);
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 72px) 78px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(15, 18, 15, 0.94) 0%, rgba(19, 22, 18, 0.86) 42%, rgba(19, 22, 18, 0.58) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 90, 31, 0.28), transparent 34%),
    radial-gradient(circle at 76% 28%, rgba(255, 244, 232, 0.12), transparent 30%),
    url("assets/event-hero-blur.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.03);
}

.hero-beam {
  position: absolute;
  z-index: -3;
  height: 28vh;
  width: 84vw;
  filter: blur(34px);
  opacity: 0.55;
  transform: rotate(-10deg);
}

.hero-beam-one {
  top: 16%;
  right: -16%;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 31, 0.34), rgba(255, 200, 87, 0.18), transparent);
}

.hero-beam-two {
  bottom: 4%;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.18), rgba(98, 199, 255, 0.12), transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-copy-block {
  max-width: 700px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--coral-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.hero h1,
.section-heading h2,
.product-copy h2,
.recovery-copy h2,
.proof-copy h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  position: relative;
  max-width: 820px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.96;
  text-wrap: balance;
}

.headline-shine::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.9) 48%, transparent 62%);
  background-repeat: no-repeat;
  background-size: 260% 100%;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: title-shine 5.6s ease-in-out infinite;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-top: 24px;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: var(--radius);
  padding: 13px 16px;
  background: rgba(255, 250, 244, 0.09);
  box-shadow: inset 0 1px rgba(255, 250, 244, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--coral-soft);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-proof span {
  max-width: 300px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 34px 0 0;
}

.hero-metrics div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.08);
  box-shadow: inset 0 1px rgba(255, 250, 244, 0.08);
  backdrop-filter: blur(14px);
}

.hero-metrics dt {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 640px;
}

.phone-shell {
  position: relative;
  width: min(350px, 100%);
  min-height: 654px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: #171a16;
  box-shadow:
    0 36px 90px rgba(26, 18, 11, 0.45),
    0 0 0 8px rgba(255, 250, 244, 0.08);
  animation: floaty 6s ease-in-out infinite;
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  pointer-events: none;
}

.phone-top,
.chat-header,
.chat-stream,
.chat-input {
  position: relative;
  z-index: 1;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 22px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.camera-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.58);
  box-shadow: 0 0 14px rgba(255, 155, 84, 0.38);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 12px;
  padding: 13px;
  border-radius: var(--radius);
  background: #fff4e8;
  color: #191c18;
}

.avatar {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #24150e;
  font-weight: 900;
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header strong {
  font-size: 13px;
}

.chat-header small {
  margin-top: 2px;
  color: var(--whatsapp-dark);
  font-size: 11px;
}

.chat-header svg {
  margin-left: auto;
  color: var(--whatsapp-dark);
}

.chat-stream {
  display: grid;
  gap: 10px;
  padding: 18px 14px 14px;
}

.bubble,
.sale-card,
.extras-card,
.payment-card,
.typing {
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  animation: chat-card 12s ease-in-out infinite;
}

.bubble {
  width: fit-content;
  max-width: 88%;
  padding: 11px 12px;
  font-size: 13px;
  line-height: 1.38;
}

.bubble.bot {
  background: #fff4e8;
  color: #1c211d;
}

.bubble.user {
  justify-self: end;
  background: #dff9e9;
  color: #0b1c13;
}

.bubble-two,
.bubble-three,
.bubble-four,
.bubble-five,
.bubble-six,
.bubble-seven {
  animation-delay: var(--chat-delay);
}

.bubble-two {
  --chat-delay: 0.5s;
}

.bubble-three {
  --chat-delay: 1s;
}

.bubble-four {
  --chat-delay: 1.5s;
}

.bubble-five {
  --chat-delay: 2s;
}

.bubble-six {
  --chat-delay: 2.5s;
}

.bubble-seven {
  --chat-delay: 3s;
}

.choice-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.choice-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(31, 38, 31, 0.12);
  border-radius: var(--radius);
  padding: 0 9px;
  color: #677068;
  font-size: 11px;
  font-weight: 900;
}

.choice-row .is-active {
  border-color: rgba(255, 90, 31, 0.7);
  background: rgba(255, 90, 31, 0.13);
  color: #211611;
  box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.11);
  animation: selected-chip 2.8s ease-in-out infinite;
}

.sale-card,
.extras-card,
.payment-card {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 250, 244, 0.14);
  background: rgba(255, 250, 244, 0.08);
}

.sale-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.22), rgba(255, 200, 87, 0.1)),
    rgba(255, 250, 244, 0.08);
}

.sale-card small,
.sale-card strong,
.sale-card span {
  display: block;
}

.sale-card small,
.payment-card small,
.extras-top,
.extras-list span {
  color: var(--muted);
  font-size: 11px;
}

.sale-card strong {
  margin-top: 2px;
  font-size: 15px;
}

.sale-card > span {
  color: var(--coral-soft);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.extras-top,
.extras-list,
.payment-card {
  display: flex;
  align-items: center;
}

.extras-top {
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.extras-top svg {
  color: var(--coral);
}

.extras-list {
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 250, 244, 0.1);
}

.extras-list strong {
  color: var(--yellow);
  font-size: 12px;
}

.payment-card {
  position: relative;
  gap: 10px;
  overflow: hidden;
}

.payment-card svg {
  color: var(--cyan);
}

.payment-card strong,
.payment-card small {
  display: block;
}

.payment-card strong {
  font-size: 13px;
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 155, 84, 0.22), transparent);
  transform: translateX(-120%) skewX(-14deg);
  animation: scan 3s ease-in-out infinite;
}

.typing {
  display: flex;
  width: 62px;
  gap: 5px;
  padding: 12px;
  background: #fff4e8;
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing-dot 1s ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.14s;
}

.typing span:nth-child(3) {
  animation-delay: 0.28s;
}

.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 14px 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.12);
  color: rgba(255, 250, 244, 0.6);
  font-size: 12px;
}

.chat-input svg {
  color: var(--whatsapp);
}

.status-panel {
  position: absolute;
  right: clamp(0px, 3vw, 30px);
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(250px, 72vw);
  padding: 16px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(37, 40, 33, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: status-in 6s ease-in-out infinite;
}

.status-panel small,
.status-panel strong {
  display: block;
}

.status-panel small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-panel strong {
  margin-top: 4px;
  font-size: 14px;
}

.status-pulse {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 rgba(35, 211, 102, 0.58);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.capability-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.06);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px 14px;
  animation: marquee 38s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 96px clamp(18px, 5vw, 72px);
}

.section-dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 90, 31, 0.11), transparent 32%),
    var(--ink-2);
  color: var(--text);
}

.section-light {
  background: var(--surface-light);
  color: var(--text-dark);
}

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

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.product-copy h2,
.recovery-copy h2,
.proof-copy h2,
.cta-band h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.product-copy p,
.recovery-copy p,
.proof-copy p,
.cta-band p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-light .section-heading p:not(.eyebrow),
.product-copy p,
.proof-copy p,
.flow-card p {
  color: var(--muted-dark);
}

.compare-grid,
.flow-grid,
.feature-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.compare-card,
.flow-card,
.feature-card,
.recovery-row,
.proof-card,
.calculator,
.faq-list details {
  border-radius: var(--radius);
}

.compare-card,
.feature-card {
  border: 1px solid var(--line-dark);
  background: var(--surface-light);
  color: var(--text-dark);
  box-shadow: 0 18px 44px rgba(26, 18, 11, 0.12);
}

.compare-card {
  min-height: 380px;
  padding: 30px;
}

.compare-card-highlight {
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.12), rgba(37, 211, 102, 0.06)),
    var(--surface-light);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: var(--radius);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-tag.danger {
  background: rgba(255, 90, 31, 0.12);
  color: #b63b0c;
}

.card-tag.success {
  background: rgba(35, 211, 102, 0.14);
  color: #107542;
}

.compare-card h3,
.flow-card h3,
.feature-card h3 {
  margin: 18px 0 0;
  color: inherit;
  font-size: 22px;
  line-height: 1.24;
}

.compare-card ul,
.proof-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted-dark);
  line-height: 1.6;
}

.compare-card li {
  position: relative;
  padding-left: 22px;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.compare-card-highlight li::before {
  background: var(--whatsapp);
}

.seller-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 90, 31, 0.12), transparent 36%),
    var(--surface-light);
  color: var(--text-dark);
}

.seller-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.seller-copy p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.7;
}

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

.seller-card {
  min-height: 284px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(26, 18, 11, 0.1);
}

.seller-card h3 {
  margin: 18px 0 0;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1.24;
}

.seller-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted-dark);
  line-height: 1.6;
  list-style: none;
}

.seller-card li {
  position: relative;
  padding-left: 22px;
}

.seller-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.seller-card-highlight {
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.11), rgba(37, 211, 102, 0.06)),
    #ffffff;
}

.seller-card-highlight li::before {
  background: var(--whatsapp);
}

.metric-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 150px;
  background: #252821;
  color: var(--white);
}

.metric-card span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #24150e;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
}

.metric-card h3 {
  margin: 0;
  color: var(--white);
}

.metric-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.flow-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: 0 18px 44px rgba(7, 29, 24, 0.08);
}

.flow-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-soft) 100%);
  color: #24150e;
  font-weight: 900;
}

.flow-card p,
.feature-card p,
.faq-list p {
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.65;
}

.product-section,
.visual-proof,
.section-split,
.recovery-section {
  display: grid;
  align-items: center;
  width: 100%;
  margin: 0;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
}

.product-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  gap: 70px;
  background: var(--surface-light);
  color: var(--text-dark);
}

.mini-proof {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #ffffff;
  color: #24362f;
  box-shadow: 0 16px 34px rgba(7, 29, 24, 0.08);
}

.mini-proof svg {
  flex: 0 0 auto;
  color: var(--coral);
}

.commerce-demo {
  position: relative;
}

.commerce-window {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 29, 24, 0.16);
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 13px;
  border-bottom: 1px solid var(--line-dark);
  background: #fff1e6;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.window-bar span:nth-child(2) {
  background: var(--yellow);
}

.window-bar span:nth-child(3) {
  background: var(--whatsapp);
}

.commerce-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.catalog-card {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fffdf9;
  animation: catalog-pop 7s ease-in-out infinite;
}

.catalog-card small,
.catalog-card span,
.commerce-total span {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-card strong {
  color: var(--text-dark);
  font-size: 18px;
}

.catalog-card span {
  text-transform: none;
}

.catalog-two {
  animation-delay: 0.8s;
}

.catalog-three {
  animation-delay: 1.6s;
}

.commerce-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px;
  border-radius: var(--radius);
  background: #252821;
  color: var(--white);
}

.commerce-total strong {
  color: var(--coral-soft);
  font-family: var(--font-display);
  font-size: 30px;
}

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

.feature-card {
  min-height: 264px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.08), transparent),
    #fffdf9;
}

.feature-card svg {
  width: 32px;
  height: 32px;
  color: var(--coral);
}

.feature-card:nth-child(3n) svg {
  color: var(--whatsapp-dark);
}

.feature-card:nth-child(4n) svg {
  color: var(--coral);
}

.recovery-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.92fr);
  gap: 70px;
  background:
    radial-gradient(circle at 78% 0%, rgba(37, 211, 102, 0.12), transparent 32%),
    var(--surface-light);
  color: var(--text-dark);
}

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

.recovery-board {
  display: grid;
  gap: 12px;
}

.recovery-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(26, 18, 11, 0.1);
  animation: recovery-slide 8s ease-in-out infinite;
}

.row-two {
  animation-delay: 0.65s;
}

.row-three {
  animation-delay: 1.3s;
}

.row-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 90, 31, 0.12);
  color: var(--coral);
}

.recovery-row strong,
.recovery-row small {
  display: block;
}

.recovery-row small {
  margin-top: 4px;
  color: var(--muted-dark);
}

.row-status {
  min-width: max-content;
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(37, 211, 102, 0.12);
  color: #107542;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-proof {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
  gap: 70px;
  background: #ffffff;
  color: var(--text-dark);
}

.scroll-chat-section {
  --chat-progress: 0;
  --chat-offset: 0px;
  position: relative;
  min-height: 220vh;
  padding: 0 max(18px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, #fffaf4 0%, #fff3e8 48%, #ffffff 100%);
  color: var(--text-dark);
}

.scroll-chat-sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.74fr);
  gap: 74px;
  align-items: center;
  min-height: 100svh;
  padding: 104px 0 76px;
}

.scroll-chat-copy {
  max-width: 620px;
}

.scroll-chat-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.scroll-chat-copy p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.7;
}

.scroll-phone-wrap {
  display: grid;
  place-items: center;
  min-width: 0;
}

.scroll-phone {
  position: relative;
  width: min(390px, 100%);
  overflow: hidden;
  border: 1px solid rgba(31, 38, 31, 0.22);
  border-radius: 32px;
  background: #161915;
  box-shadow:
    0 28px 70px rgba(26, 18, 11, 0.28),
    0 0 0 8px rgba(255, 90, 31, 0.08);
}

.scroll-phone-top,
.scroll-contact,
.scroll-chat-window,
.scroll-progress {
  position: relative;
  z-index: 1;
}

.scroll-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 20px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 12px;
}

.scroll-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 12px;
  padding: 13px;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-dark);
}

.scroll-contact strong,
.scroll-contact small {
  display: block;
}

.scroll-contact small {
  margin-top: 2px;
  color: var(--muted-dark);
  font-size: 11px;
}

.live-pill {
  margin-left: auto;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(37, 211, 102, 0.13);
  color: var(--whatsapp-dark);
  font-size: 11px;
  font-weight: 900;
}

.scroll-chat-window {
  height: clamp(460px, 62vh, 540px);
  min-height: 0;
  overflow: hidden;
  margin: 12px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 8%, rgba(255, 90, 31, 0.1), transparent 32%),
    #111410;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 84%, transparent 100%);
}

.scroll-chat-track {
  display: grid;
  gap: 12px;
  padding: 260px 12px 260px;
  transform: translate3d(0, var(--chat-offset), 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.scroll-message {
  width: fit-content;
  max-width: 86%;
  padding: 12px 13px;
  border-radius: var(--radius);
  background: var(--cream);
  color: #1f211d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.scroll-message.user {
  justify-self: end;
  background: #dff9e9;
}

.scroll-message.bot {
  justify-self: start;
}

.scroll-message.small {
  max-width: 48%;
}

.scroll-message.wide {
  width: 86%;
}

.scroll-options {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.scroll-options span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #fffaf4;
  color: #4c4037;
  font-size: 12px;
  font-weight: 900;
}

.scroll-options .selected {
  border-color: rgba(255, 90, 31, 0.64);
  background: rgba(255, 90, 31, 0.12);
  color: #211611;
}

.scroll-options.extras span {
  border-color: rgba(37, 211, 102, 0.22);
}

.scroll-message.pay,
.scroll-message.success,
.scroll-message.reminder {
  display: flex;
  align-items: center;
  gap: 9px;
}

.scroll-message.pay svg {
  color: var(--coral);
}

.scroll-message.success svg {
  color: var(--whatsapp-dark);
}

.scroll-message.reminder {
  background: #252821;
  color: var(--white);
}

.scroll-progress {
  height: 4px;
  margin: 0 22px 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.12);
}

.scroll-progress span {
  display: block;
  width: calc(var(--chat-progress) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--coral-soft));
}

.proof-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 29, 24, 0.16);
}

.proof-card img {
  width: 100%;
  height: auto;
}

.proof-list {
  color: #273b33;
}

.proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.proof-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--coral);
}

.section-split {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 70px;
  background: var(--surface-light);
  color: var(--text-dark);
}

.section-split .btn {
  margin-top: 28px;
}

.calculator {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 29, 24, 0.1);
}

.calculator label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #15241f;
  font-size: 14px;
  font-weight: 900;
}

.calculator output {
  color: var(--whatsapp-dark);
}

.calculator input[type="range"] {
  width: 100%;
  accent-color: var(--whatsapp-dark);
}

.calculator-result {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 22px;
  border-radius: var(--radius);
  background: #252821;
  color: var(--white);
}

.calculator-result span {
  color: var(--coral-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-result strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.22), rgba(37, 211, 102, 0.08)),
    var(--surface-strong);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 680px;
}

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

.faq-list details {
  border: 1px solid var(--line-dark);
  background: var(--surface-light);
}

.faq-list summary {
  min-height: 68px;
  padding: 20px 22px;
  color: var(--text-dark);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  padding: 0 22px 22px;
}

.promo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf4 0%, #fff2e5 100%);
  color: var(--white);
}

.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 90, 31, 0.16), transparent 34%),
    radial-gradient(circle at 86% 36%, rgba(37, 211, 102, 0.1), transparent 28%);
  pointer-events: none;
}

.promo-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.15), rgba(37, 211, 102, 0.05)),
    #171a16;
  box-shadow: 0 26px 76px rgba(26, 18, 11, 0.24);
}

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

.promo-copy h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.promo-copy p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.promo-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.promo-mini-grid div {
  display: grid;
  gap: 8px;
  min-height: 154px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 250, 244, 0.07);
}

.promo-mini-grid svg {
  width: 26px;
  height: 26px;
  color: var(--coral-soft);
}

.promo-mini-grid strong,
.promo-mini-grid span {
  display: block;
}

.promo-mini-grid strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.promo-mini-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.promo-price-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(31, 38, 31, 0.12);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.promo-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: #23140e;
  color: var(--coral-soft);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-price-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.promo-price-table {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: var(--radius);
}

.promo-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  min-width: 0;
  padding: 16px;
  background: #fffaf4;
}

.promo-price-row + .promo-price-row {
  border-top: 1px solid rgba(31, 38, 31, 0.1);
}

.promo-price-row span,
.promo-economy span {
  color: #656b63;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-price-row strong {
  min-width: 0;
  color: #1d211c;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  white-space: nowrap;
}

.promo-price-row .old-price {
  color: #868177;
  font-size: clamp(20px, 2vw, 24px);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255, 90, 31, 0.74);
}

.promo-price-row-featured {
  display: grid;
  justify-content: stretch;
  gap: 10px;
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
}

.promo-price-row-featured span,
.promo-price-row-featured strong {
  color: #24150e;
}

.promo-price-row-featured strong {
  display: block;
  width: 100%;
  font-size: clamp(40px, 4.2vw, 56px);
  text-align: left;
}

.promo-economy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(37, 211, 102, 0.1);
}

.promo-economy strong {
  color: var(--whatsapp-dark);
  font-family: var(--font-display);
  font-size: 26px;
}

.promo-price-card .btn {
  width: 100%;
}

.floating-cta {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  border-radius: var(--radius);
  padding: 0 16px;
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  color: #24150e;
  font-weight: 900;
  box-shadow: 0 20px 44px rgba(255, 90, 31, 0.24);
}

.floating-cta svg {
  position: relative;
  z-index: 1;
}

.floating-ping {
  position: absolute;
  inset: 7px auto auto 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  animation: ping 1.7s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.reveal-on [data-reveal],
.reveal-on [data-reveal-stagger] > * {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  transform: translateY(24px);
  will-change: opacity, transform;
}

.reveal-on [data-reveal].is-revealed,
.reveal-on [data-reveal-stagger] > .is-revealed {
  opacity: 1;
  transform: none;
}

@keyframes title-shine {
  0% {
    background-position: 150% 0;
  }

  46%,
  100% {
    background-position: -70% 0;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes chat-card {
  0%,
  100% {
    transform: translateY(0);
  }

  48% {
    transform: translateY(-2px);
  }

  56% {
    transform: translateY(0);
  }
}

@keyframes selected-chip {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(35, 211, 102, 0.12);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(35, 211, 102, 0.1);
  }
}

@keyframes scan {
  0%,
  24% {
    transform: translateX(-130%) skewX(-14deg);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  68% {
    transform: translateX(310%) skewX(-14deg);
    opacity: 1;
  }

  80%,
  100% {
    transform: translateX(310%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes typing-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes status-in {
  0%,
  18% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  30%,
  92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(35, 211, 102, 0.48);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(35, 211, 102, 0);
  }
}

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

@keyframes catalog-pop {
  0%,
  100% {
    transform: translateY(0);
    border-color: var(--line-dark);
  }

  45% {
    transform: translateY(-4px);
    border-color: rgba(35, 211, 102, 0.32);
  }
}

@keyframes recovery-slide {
  0%,
  100% {
    transform: translateX(0);
  }

  48% {
    transform: translateX(8px);
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .seller-section,
  .scroll-chat-sticky,
  .product-section,
  .recovery-section,
  .visual-proof,
  .section-split {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    max-width: 820px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .scroll-chat-section {
    min-height: 210vh;
  }

  .scroll-chat-sticky {
    position: relative;
    align-items: start;
    gap: 44px;
    min-height: calc(210vh - 180px);
    padding: 96px 0 84px;
  }

  .scroll-phone-wrap {
    position: sticky;
    top: 92px;
    align-self: start;
  }

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

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 116px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ink-2);
    color: var(--text);
    box-shadow: var(--shadow);
  }

  .site-nav.is-active {
    display: flex;
  }

  .site-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 58px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-proof {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof span {
    max-width: none;
  }

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

  .btn {
    min-height: 54px;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .phone-shell {
    min-height: 626px;
  }

  .status-panel {
    right: 0;
    bottom: 36px;
  }

  .flow-grid,
  .feature-grid,
  .seller-grid {
    grid-template-columns: 1fr;
  }

  .promo-shell {
    padding: 24px;
  }

  .promo-mini-grid {
    grid-template-columns: 1fr;
  }

  .promo-mini-grid div {
    min-height: auto;
  }

  .seller-card,
  .metric-card {
    min-height: auto;
  }

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

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

  .scroll-chat-section {
    min-height: 190vh;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .scroll-chat-sticky {
    position: relative;
    gap: 34px;
    min-height: calc(190vh - 144px);
    padding: 0;
  }

  .scroll-phone-wrap {
    position: sticky;
    top: 86px;
    align-self: start;
  }

  .scroll-phone {
    width: min(350px, 100%);
  }

  .scroll-chat-window {
    height: clamp(360px, 54vh, 480px);
    min-height: 0;
  }

  .scroll-chat-track {
    padding-top: 180px;
    padding-bottom: 220px;
  }

  .compare-card,
  .flow-card,
  .feature-card {
    min-height: auto;
  }

  .recovery-row {
    grid-template-columns: auto 1fr;
  }

  .row-status {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .calculator {
    padding: 22px;
  }

  .calculator label {
    flex-direction: column;
    gap: 6px;
  }

  .calculator-result strong {
    font-size: 34px;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    padding: 28px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 104px;
  }

  .promo-price-row,
  .promo-economy {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    top: 70px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .phone-shell {
    border-radius: 24px;
  }

  .chat-stream {
    padding-inline: 12px;
  }
}

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

  .headline-shine::after {
    display: none;
  }

  .reveal-on [data-reveal],
  .reveal-on [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
  }
}
