/* ============================================
   ECOMCLUB · CRO SHOPIFY LANDING
   Palette: orange / red / purple / shopify green
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-deep: #060606;
  --surface: #121212;
  --surface-2: #181818;
  --surface-3: #222;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f4f4f3;
  --text-dim: #c9c8c4;
  --muted: #7a7a78;

  --primary: #FF5C28;
  --primary-soft: #FF7A4D;
  --primary-deep: #E84B1A;

  --red: #DC2626;
  --red-dark: #7F1D1D;
  --red-glow: rgba(220,38,38,0.35);

  --purple: #A855F7;
  --purple-deep: #6D28D9;

  --shopify: #5E8E3E;
  --shopify-bright: #95BF47;
  --shopify-glow: rgba(149,191,71,0.45);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  background:
    radial-gradient(1100px 600px at 50% -10%, rgba(255,92,40,0.10), transparent 60%),
    radial-gradient(900px 500px at 85% 30%, rgba(168,85,247,0.05), transparent 60%),
    radial-gradient(800px 500px at 10% 70%, rgba(220,38,38,0.04), transparent 60%),
    var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =================== NAV =================== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: center;
  padding: 22px 24px 0;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(1200px, 100%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 22px;
  background: rgba(14,14,14,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 30px -10px rgba(0,0,0,0.6);
}
.logo {
  display: flex; align-items: center; gap: 10px;
}
.logo img {
  height: 32px; width: auto;
  filter: drop-shadow(0 0 18px rgba(255,92,40,0.25));
}

/* =================== BUTTONS =================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--primary);
  color: #160a04;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.10),
    0 10px 30px -10px rgba(255,92,40,0.55),
    0 0 0 1px rgba(255,92,40,0.35);
}
.btn:hover { transform: translateY(-1px); background: var(--primary-soft); }
.btn .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: #160a04; color: var(--primary);
  border-radius: 999px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: rotate(-45deg); }

.btn--lg {
  padding: 18px 30px;
  font-size: 17px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.10),
    0 18px 50px -10px rgba(255,92,40,0.65),
    0 0 0 1px rgba(255,92,40,0.4);
}
.btn--lg .arrow { width: 22px; height: 22px; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
  padding: 13px 22px;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.25);
}

.btn-halo-wrap {
  position: relative;
  display: inline-block;
}
.btn-halo-wrap::before {
  content: "";
  position: absolute; inset: -34px;
  background: radial-gradient(closest-side, rgba(255,92,40,0.55), transparent 70%);
  filter: blur(22px);
  z-index: 0;
  opacity: 0.9;
  animation: glowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
.btn-halo-wrap .btn { position: relative; z-index: 1; }
@keyframes glowPulse {
  0%,100% { opacity: 0.55; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.06); }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 60px;
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--border);
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}
.badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--shopify-bright);
  box-shadow: 0 0 0 4px rgba(149,191,71,0.18), 0 0 18px var(--shopify-glow);
  position: relative;
}
.badge-dot::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(149,191,71,0.5);
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.9); opacity: .9; }
  80%,100% { transform: scale(1.9); opacity: 0; }
}

.headline {
  margin-top: 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-align: center;
  max-width: 1120px;
  text-wrap: balance;
}
.headline .row {
  display: inline-flex; align-items: center; gap: clamp(14px, 1.6vw, 22px);
  flex-wrap: wrap; justify-content: center;
}
.headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.shopify-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 18px 6px 12px;
  background: linear-gradient(180deg, #1a1a1a, #0e0e0e);
  border: 1px solid rgba(149,191,71,0.35);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62em;
  letter-spacing: -0.01em;
  color: #d6f0a8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 30px rgba(149,191,71,0.18),
    0 12px 30px -10px rgba(149,191,71,0.35);
  vertical-align: middle;
  transform: translateY(-0.05em);
}
.shopify-pill img { width: 1.4em; height: 1.4em; object-fit: contain; }

.hero-subline {
  margin-top: 28px;
  max-width: 880px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #ededeb;
  opacity: 0;
  transform: translateY(12px);
  animation: rise .9s .6s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-subline .meta {
  color: var(--primary);
  font-weight: 700;
}

.description {
  margin-top: 22px;
  max-width: 720px;
  text-align: center;
  color: var(--text-dim);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  animation: rise .9s .75s cubic-bezier(.2,.7,.2,1) forwards;
}
.description b { color: var(--text); font-weight: 700; }
.description em {
  font-style: normal;
  color: #ffdfd1;
  background: linear-gradient(180deg, transparent 60%, rgba(255,92,40,0.25) 60%);
  padding: 0 2px;
}

.cta-wrap {
  margin-top: 38px;
  opacity: 0;
  transform: translateY(12px);
  animation: rise .9s .9s cubic-bezier(.2,.7,.2,1) forwards;
}

/* =================== ECOSYSTEM (replaces orbit) =================== */
.ecosystem {
  margin-top: 80px;
  width: min(1200px, 100%);
  height: 460px;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.4s 1s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.eco-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.eco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.07);
  animation: spin var(--dur,40s) linear infinite;
}
.eco-ring.r1 { width: 340px; height: 340px; }
.eco-ring.r2 { width: 540px; height: 540px; animation-direction: reverse; --dur: 60s; border-style: dotted; border-color: rgba(255,255,255,0.05);}
.eco-ring.r3 { width: 760px; height: 760px; --dur: 90s; border-color: rgba(255,255,255,0.04);}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.eco-arc-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.eco-arc {
  fill: none;
  stroke-width: 1.2;
  stroke-dasharray: 5 7;
}
.eco-arc.arc-1 { stroke: url(#arcGrad1); animation: dash 24s linear infinite; }
.eco-arc.arc-2 { stroke: url(#arcGrad2); animation: dash 30s linear infinite reverse; }
@keyframes dash {
  to { stroke-dashoffset: -400; }
}

.eco-center {
  position: absolute;
  left: 50%; top: 50%;
  width: 200px; height: 200px;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%,
    rgba(149,191,71,0.5),
    rgba(94,142,62,0.18) 50%,
    transparent 70%);
  animation: centerFloat 5s ease-in-out infinite;
}
.eco-center::after {
  content: "";
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--shopify-bright), var(--shopify) 60%, #2f4a1f 100%);
  box-shadow:
    inset 0 4px 18px rgba(255,255,255,0.18),
    inset 0 -10px 25px rgba(0,0,0,0.35),
    0 0 80px rgba(149,191,71,0.55),
    0 0 140px rgba(149,191,71,0.35);
  z-index: 0;
}
.eco-center img {
  position: relative;
  width: 60px; height: 70px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
@keyframes centerFloat {
  0%,100% { transform: translate(-50%, calc(-50% - 0px)); }
  50%     { transform: translate(-50%, calc(-50% - 10px)); }
}

/* Orbiting tokens (carts, money, percent, bags) */
.eco-token {
  position: absolute;
  left: 50%; top: 50%;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34,34,34,0.95), rgba(18,18,18,0.95));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.7);
}
.eco-token svg { width: 24px; height: 24px; }
.eco-token.green { color: var(--shopify-bright); border-color: rgba(149,191,71,0.3); box-shadow: 0 0 24px rgba(149,191,71,0.18), 0 14px 28px -10px rgba(0,0,0,0.7); }
.eco-token.orange { color: var(--primary); border-color: rgba(255,92,40,0.3); box-shadow: 0 0 24px rgba(255,92,40,0.18), 0 14px 28px -10px rgba(0,0,0,0.7); }
.eco-token.purple { color: var(--purple); border-color: rgba(168,85,247,0.3); box-shadow: 0 0 24px rgba(168,85,247,0.18), 0 14px 28px -10px rgba(0,0,0,0.7); }

.orbiter {
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  animation: orbit var(--orbit-dur, 18s) linear infinite;
  transform-origin: 0 0;
}
.orbiter > .eco-token {
  position: absolute;
  left: var(--r, 220px);
  top: -26px;
  animation: counterSpin var(--orbit-dur, 18s) linear infinite;
}
@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counterSpin {
  from { transform: rotate(0deg) translateY(0); }
  50%  { transform: rotate(-180deg) translateY(-6px); }
  to   { transform: rotate(-360deg) translateY(0); }
}

/* Shopify notification cards */
.notif {
  position: absolute;
  width: 260px;
  padding: 12px 14px;
  background: rgba(18,18,18,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; gap: 12px;
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.7);
  opacity: 0;
  animation: notifCycle 12s linear infinite;
}
.notif-icon {
  width: 36px; height: 36px; flex: none;
  border-radius: 9px;
  background: radial-gradient(circle at 50% 40%, var(--shopify-bright), var(--shopify) 70%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.notif-icon img { width: 18px; height: 22px; object-fit: contain; }
.notif-body { font-size: 12px; line-height: 1.35; color: var(--text-dim); min-width: 0; flex: 1; }
.notif-body .top {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text); font-weight: 700; font-size: 13px;
  margin-bottom: 3px;
}
.notif-body .top .time { color: var(--muted); font-weight: 500; font-size: 11px; }
.notif-body .amt { color: var(--shopify-bright); font-weight: 700; }

@keyframes notifCycle {
  0%   { opacity: 0; transform: translateY(20px) scale(.95); }
  8%   { opacity: 1; transform: translateY(0) scale(1); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1); }
  72%  { opacity: 0; transform: translateY(-20px) scale(.95); }
  100% { opacity: 0; }
}

.notif.n1 { left: 4%;  top: 18%;  animation-delay: 0s; }
.notif.n2 { right: 4%; top: 14%;  animation-delay: 2s; }
.notif.n3 { left: 2%;  bottom: 12%; animation-delay: 4s; }
.notif.n4 { right: 2%; bottom: 18%; animation-delay: 6s; }
.notif.n5 { right: 28%; top: 6%;   animation-delay: 8s; }
.notif.n6 { left: 28%;  bottom: 4%; animation-delay: 10s; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: -28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,0.35);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.scroll-cue svg { width: 22px; height: 22px; opacity: .6; }
.scroll-cue svg + svg { margin-top: -14px; opacity: .35; }

/* =================== SECTION SHELL =================== */
section {
  position: relative;
  padding: 100px 24px;
}
.container {
  width: min(1200px, 100%);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 60px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.section-sub {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .47s; }

/* =================== CLIENTS MARQUEE =================== */
.clients {
  padding: 30px 0 60px;
}
.clients-label {
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 30px;
}
.marquee {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
}
.client-card {
  width: 320px; height: 200px; flex: none;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1c1c1c, #0f0f0f);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.client-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--client-bg, radial-gradient(circle at 30% 30%, rgba(255,92,40,0.12), transparent 60%));
  z-index: 0;
}
.client-card .placeholder-img {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.025) 0 10px,
      rgba(255,255,255,0.01) 10px 20px);
}
.client-card .brand {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #fff;
  mix-blend-mode: difference;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =================== PROBLEMS GRID =================== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.problems-grid .col {
  display: flex; flex-direction: column;
  gap: 20px;
}
.p-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #141414, #0c0c0c);
  padding: 24px;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.p-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220,38,38,0.35);
}
.p-card.with-red::before {
  content: "";
  position: absolute; inset: -1px;
  background: radial-gradient(circle at 50% 0%, rgba(220,38,38,0.18), transparent 50%);
  pointer-events: none;
}
.p-visual {
  height: 220px;
  margin-bottom: 24px;
  position: relative;
  border-radius: 16px;
  background: rgba(10,10,10,0.4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.p-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.p-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}

/* Visuals */
.viz-template {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(rgba(255,255,255,0.03) 0 6px, transparent 6px 14px);
}
.viz-template::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(220,38,38,0.25), transparent 60%);
}
.viz-template .alert {
  position: absolute; left: 50%; top: 38%;
  transform: translate(-50%,-50%);
  width: 70px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  filter: drop-shadow(0 0 18px rgba(220,38,38,0.7));
}
.viz-template .err-pill {
  position: absolute; left: 50%; bottom: 18%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(220,38,38,0.5);
  background: rgba(220,38,38,0.06);
  color: #ff8585;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.viz-toggle {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.viz-toggle .dash {
  position: absolute; inset: 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, #1a1a1a, #111);
  opacity: 0.6;
  overflow: hidden;
}
.viz-toggle .dash::before {
  content: "";
  position: absolute; top: 12px; left: 12px; width: 50px; height: 8px;
  border-radius: 4px; background: rgba(255,255,255,0.06);
}
.viz-toggle .dash::after {
  content: "";
  position: absolute; right: 12px; bottom: 12px;
  width: 60px; height: 30px;
  background:
    linear-gradient(90deg,
      var(--purple) 0 8px, transparent 8px 14px,
      var(--shopify-bright) 14px 22px, transparent 22px 28px,
      var(--purple) 28px 36px, transparent 36px 42px,
      var(--shopify-bright) 42px 50px, transparent 50px 56px,
      var(--purple) 56px 60px);
  opacity: 0.6;
}
.viz-toggle .pill {
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-weight: 700; font-size: 13px;
  color: #fff;
}
.viz-toggle .pill .opt { padding: 4px 10px; border-radius: 999px; color: var(--muted); }
.viz-toggle .pill .opt.on { background: var(--text); color: #111; }

.viz-gauge {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.viz-gauge .ring {
  width: 130px; height: 130px;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg,
      #ef4444 0deg 90deg,
      #f59e0b 90deg 150deg,
      #84cc16 150deg 270deg,
      rgba(255,255,255,0.05) 270deg 360deg);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 0 24px rgba(220,38,38,0.25));
}
.viz-gauge .ring::after {
  content: "";
  width: 92px; height: 92px;
  background: radial-gradient(circle at 50% 40%, #1a1a1a, #050505 70%);
  border-radius: 50%;
}
.viz-gauge .needle {
  position: absolute;
  width: 4px; height: 56px;
  background: #fff;
  top: 22px; left: 50%;
  transform: translateX(-50%) rotate(-22deg);
  transform-origin: bottom center;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.viz-gauge .sat {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.viz-gauge .sat svg { width: 18px; height: 18px; }
.viz-gauge .sat.s1 { top: 8%; left: 18%; }
.viz-gauge .sat.s2 { top: 6%; right: 18%; }
.viz-gauge .sat.s3 { bottom: 8%; left: 12%; }
.viz-gauge .sat.s4 { bottom: 6%; right: 14%; }

.viz-cac {
  position: relative; width: 100%; height: 100%;
}
.viz-cac svg { width: 100%; height: 100%; }
.viz-cac .badge-cac {
  position: absolute; top: 24%; right: 6%;
  padding: 5px 10px;
  background: rgba(220,38,38,0.18);
  border: 1px solid rgba(220,38,38,0.5);
  color: #ffb0b0;
  font-size: 12px; font-weight: 700;
  border-radius: 999px;
}

.viz-pie {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.viz-pie .pie {
  width: 150px; height: 150px;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--shopify) 0deg 70deg,
      #2a0d0d 70deg 360deg);
  filter: drop-shadow(0 0 24px rgba(220,38,38,0.35));
  position: relative;
}
.viz-pie .pie::after {
  content: "";
  position: absolute; inset: 22px;
  background: radial-gradient(circle at 50% 40%, #1a0606, #050000 70%);
  border-radius: 50%;
}
.viz-pie .baseline {
  position: absolute;
  left: 0; right: 0; top: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: 0.7;
  transform: rotate(-12deg);
}
.viz-pie .tag {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  padding: 6px 12px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.45);
  color: #ff8a8a;
  font-size: 12px; font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}

.viz-bars {
  width: 100%; height: 100%;
  padding: 14px;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  background:
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,0.02) 10px 11px);
  border-radius: 16px;
}
.viz-bars .head {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: #161616;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}
.viz-bars .potential {
  position: absolute; top: 42px; left: 50%; transform: translateX(-50%);
  color: var(--shopify-bright);
  font-weight: 700; font-size: 13px;
}
.viz-bars .row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 8px;
  height: 110px;
  margin-top: auto;
}
.viz-bars .bar {
  flex: 1;
  background: linear-gradient(180deg, #292929, #161616);
  border: 1px solid var(--border);
  border-radius: 999px 999px 6px 6px;
  position: relative;
  text-align: center;
}
.viz-bars .bar .val {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 600; color: var(--text-dim);
}
.viz-bars .bar .mo {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: var(--muted);
}

.viz-phone {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.viz-phone .phone {
  width: 96px; height: 170px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border: 2px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.viz-phone .phone::before {
  content: "";
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px; background: #050505; border-radius: 4px;
}
.viz-phone .spin {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: rgba(255,255,255,0.5);
  animation: spin 1s linear infinite;
}
.viz-phone .err-tag {
  position: absolute; top: 12%; left: 50%; transform: translateX(-50%);
  padding: 5px 10px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.5);
  color: #ff8a8a;
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.viz-phone .alarm-dot {
  position: absolute;
  width: 22px; height: 22px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 12px;
}
.viz-phone .alarm-dot.d1 { top: 30%; right: 12%; }
.viz-phone .alarm-dot.d2 { bottom: 30%; left: 12%; }

/* =================== SOLUTIONS =================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.s-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #141414, #0c0c0c);
  padding: 24px;
  transition: transform .35s ease, border-color .35s ease;
}
.s-card:hover {
  transform: translateY(-4px);
  border-color: rgba(149,191,71,0.35);
}
.s-card .s-visual {
  height: 280px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(149,191,71,0.1), transparent 60%);
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
}
.s-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.s-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}

.viz-funnel {
  width: 100%; height: 100%;
  position: relative;
}
.viz-funnel .cone {
  position: absolute;
  left: 50%; top: 10%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-top: 90px solid rgba(255,255,255,0.03);
}
.viz-funnel .avs {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  top: 18%;
}
.viz-funnel .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2a2a2a, #161616);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.viz-funnel .bag {
  position: absolute;
  left: 50%; top: 56%; transform: translateX(-50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--shopify-bright), var(--shopify));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(149,191,71,0.5);
}
.viz-funnel .bag img { width: 28px; height: 32px; object-fit: contain; }
.viz-funnel .notif {
  position: absolute;
  left: 50%; bottom: 6%;
  transform: translateX(-50%);
  width: 80%;
  animation: none;
  opacity: 1;
}

.viz-aov {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.viz-aov .center-bag {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--shopify-bright), var(--shopify) 70%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 70px rgba(149,191,71,0.5);
}
.viz-aov .center-bag img { width: 36px; height: 40px; object-fit: contain; }
.viz-aov .ring-aov {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(149,191,71,0.25);
  animation: spin 16s linear infinite;
}
.viz-aov .ring-aov.r1 { width: 160px; height: 160px; }
.viz-aov .ring-aov.r2 { width: 220px; height: 220px; animation-direction: reverse; animation-duration: 22s; }
.viz-aov .dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--shopify-bright);
  box-shadow: 0 0 14px var(--shopify-glow);
}
.viz-aov .dot.d1 { top: 12%; left: 70%; }
.viz-aov .dot.d2 { bottom: 16%; right: 70%; }
.viz-aov .aov-pill {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: rgba(149,191,71,0.12);
  border: 1px solid rgba(149,191,71,0.4);
  color: #cfe9a3;
  font-size: 12px; font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}

.viz-orders {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.viz-orders .phone {
  width: 180px; height: 260px;
  border-radius: 24px;
  background: linear-gradient(180deg, #161616, #0d0d0d);
  border: 2px solid #2a2a2a;
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  overflow: hidden;
}
.viz-orders .phone::before {
  content: "";
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px; background: #050505; border-radius: 4px;
}
.viz-orders .ph-head {
  display: flex; justify-content: space-between; font-size: 9px; color: var(--muted);
  margin-top: 6px;
}
.viz-orders .ph-title {
  font-size: 12px; font-weight: 700; color: var(--text); margin-top: 4px;
}
.viz-orders .order {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  font-size: 9px;
}
.viz-orders .order .top {
  display: flex; justify-content: space-between;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}
.viz-orders .order .meta {
  color: var(--muted);
}
.viz-orders .tags { display: flex; gap: 4px; margin-top: 4px; }
.viz-orders .tag {
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}
.viz-orders .tag.freq { background: rgba(149,191,71,0.15); color: var(--shopify-bright); border: 1px solid rgba(149,191,71,0.3);}
.viz-orders .tag.paid { background: rgba(149,191,71,0.10); color: #cfe9a3; border: 1px solid rgba(149,191,71,0.25);}

/* =================== CALCULATOR =================== */
.calc {
  background: linear-gradient(180deg, #141414, #0c0c0c);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
}
.calc-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.calc-row:last-child { border-bottom: 0; }
.calc-row .top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.calc-row .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.calc-row .ico svg { width: 18px; height: 18px; }
.calc-row .label { flex: 1; color: var(--text-dim); font-weight: 500; }
.calc-row .value { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.2);
}
.range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.range-fill {
  position: relative;
}
.range-fill::before {
  content: "";
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: var(--fill, 50%); height: 6px;
  background: #fff;
  border-radius: 999px;
  pointer-events: none;
}

.calc-result {
  display: flex; flex-direction: column; gap: 14px;
}
.result-card {
  background: linear-gradient(180deg, #1c1c1c, #111);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.result-card .head {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.result-card .big {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -0.02em;
  color: var(--primary);
  filter: drop-shadow(0 0 24px rgba(255,92,40,0.35));
  font-variant-numeric: tabular-nums;
}
.result-card .note {
  margin-top: 8px;
  color: var(--text-dim); font-size: 13px;
  max-width: 280px;
}

.score-card {
  background: linear-gradient(90deg, rgba(255,92,40,0.10), rgba(255,92,40,0.04));
  border: 1px solid rgba(255,92,40,0.4);
  border-radius: 22px;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.score-card .left { display: flex; align-items: center; gap: 12px; color: var(--primary); }
.score-card .left .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;}
.score-card .left .sub { font-size: 13px; color: #ffb392; font-weight: 600;}
.score-card .score {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 3vw, 44px);
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

/* =================== GUARANTEE =================== */
.guarantee {
  background: linear-gradient(180deg, #131313, #0c0c0c);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(28px, 3.5vw, 50px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.guarantee-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.guarantee-text p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.guarantee-visual {
  position: relative;
  height: 280px;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 50%, rgba(255,92,40,0.12), transparent 65%);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.guarantee-visual .seal {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,92,40,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  animation: spin 30s linear infinite;
}
.guarantee-visual .seal::after {
  content: "";
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,92,40,0.18), rgba(255,92,40,0.05));
  border: 1px solid rgba(255,92,40,0.3);
  box-shadow: 0 0 60px rgba(255,92,40,0.35);
}
.guarantee-visual .seal-inner {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  z-index: 2;
  animation: spin 30s linear infinite reverse;
}

/* =================== METHODOLOGY TABS =================== */
.method {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.method-left h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.method-left p {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.method-tabs {
  display: flex; flex-direction: column; gap: 12px;
}
.tab {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(20,20,20,0.6);
  color: var(--text-dim);
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all .3s ease;
}
.tab .ic {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
}
.tab.active {
  background: #f4f4f3;
  color: #0a0a0a;
  border-color: #f4f4f3;
}
.tab:hover:not(.active) {
  border-color: var(--border-strong);
  color: var(--text);
}
.method-right {
  display: flex; flex-direction: column; gap: 40px;
}
.step {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #141414, #0c0c0c);
  padding: 28px;
  transition: border-color .3s ease, transform .3s ease;
}
.step.active {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
}
.step p {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}
.step-visual {
  margin-top: 22px;
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0e0e0e, #060606);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Step 1: onboarding integrations */
.step-onb {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.step-onb .tooltip {
  position: absolute;
  top: 18%;
  left: 50%; transform: translateX(-50%);
  padding: 8px 14px;
  background: #161616;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
}
.step-onb .integration-card {
  position: absolute;
  padding: 10px 14px;
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.step-onb .integration-card.shopify { color: var(--shopify-bright); border-color: rgba(149,191,71,0.3); top: 50%; left: 50%; transform: translate(-50%,-30%); }
.step-onb .integration-card.ga { top: 38%; left: 22%; transform: rotate(-8deg); }
.step-onb .integration-card.klaviyo { top: 35%; right: 18%; transform: rotate(6deg); }
.step-onb .integration-card.search { bottom: 18%; left: 22%; transform: rotate(4deg); }
.step-onb .integration-card.clarity { bottom: 16%; right: 18%; transform: rotate(-6deg); }
.step-onb .integration-card .dot { width: 18px; height: 18px; border-radius: 4px; }
.step-onb .integration-card .dot.green { background: var(--shopify-bright); }
.step-onb .integration-card .dot.yellow { background: #f59e0b; }
.step-onb .integration-card .dot.blue { background: #3b82f6; }
.step-onb .integration-card .dot.purple { background: var(--purple); }
.step-onb .integration-card .dot.red { background: #ef4444; }

/* Step 2: audit visual */
.step-audit {
  width: 100%; height: 100%;
  background:
    linear-gradient(180deg, #1a1a1a, #0e0e0e);
  position: relative;
}
.step-audit .browser {
  position: absolute;
  inset: 30px 40px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #1f1f1f, #141414);
  padding: 14px;
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 10px;
}
.step-audit .browser::before {
  content: ""; position: absolute; top: 6px; left: 12px;
  width: 50px; height: 6px; border-radius: 99px;
  background:
    radial-gradient(circle 3px at 6px 3px, #444 100%, transparent 0),
    radial-gradient(circle 3px at 20px 3px, #444 100%, transparent 0),
    radial-gradient(circle 3px at 34px 3px, #444 100%, transparent 0);
}
.step-audit .col {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 20px;
}
.step-audit .skel { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.05); }
.step-audit .skel.lg { height: 50px; }
.step-audit .skel.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.step-audit .tooltip-cro {
  position: absolute; right: 30px; top: 45%;
  padding: 6px 10px;
  background: #f4f4f3; color: #0a0a0a;
  font-size: 11px; font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 2;
}
.step-audit .cursor {
  position: absolute; right: 70px; top: 50%;
  width: 14px; height: 14px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 30% 70%, 100% 50%);
  z-index: 2;
}

/* Step 3: design preview */
.step-design { background:#0a0a0a; }
.step-design .preview {
  width: 80%; height: 80%;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, #181818, #0f0f0f);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.step-design .preview .left,
.step-design .preview .right {
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.step-design .preview .right {
  border-left: 1px solid var(--border);
}
.step-design .skel {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  height: 8px;
}
.step-design .img-ph {
  height: 70px; border-radius: 8px;
  background: linear-gradient(180deg, #292929, #1a1a1a);
}
.step-design .btn-ph {
  height: 18px; width: 70%; border-radius: 99px;
  background: var(--shopify);
}

/* Step 4: code */
.step-code {
  background: #0c0c0c;
  font-family: 'Menlo', 'Monaco', monospace;
  font-size: 12px;
  line-height: 1.5;
  padding: 22px;
  color: var(--text-dim);
  align-items: flex-start; justify-content: flex-start;
}
.step-code pre {
  margin: 0;
  max-width: 100%;
  white-space: pre-wrap;
  word-break: break-word;
}
.step-code .tag { color: #a78bfa; }
.step-code .str { color: #fca5a5; }
.step-code .key { color: #fbbf24; }
.step-code .com { color: var(--muted); }
.step-code .gr { color: var(--shopify-bright); }

/* =================== FAQ =================== */
.faq-wrap {
  background: linear-gradient(180deg, #131313, #0c0c0c);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(20px, 2.5vw, 40px);
}
.faq-row {
  display: flex; align-items: flex-start;
  margin-bottom: 18px;
  gap: 12px;
}
.faq-row.q { justify-content: flex-end; }
.faq-row.a { justify-content: flex-start; }
.faq-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2a2a2a, #161616);
  flex: none;
  background-image:
    radial-gradient(circle at 30% 30%, #6b3a1f 0 12px, transparent 13px),
    radial-gradient(circle at 50% 60%, #d4a37b 0 22px, transparent 23px),
    linear-gradient(180deg, #2a2a2a, #161616);
  background-blend-mode: normal;
}
.faq-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(20,20,20,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  flex: none;
  cursor: pointer;
  transition: background .25s ease;
}
.faq-icon:hover { background: rgba(255,255,255,0.06); }
.faq-bubble {
  max-width: 460px;
  padding: 14px 18px;
  background: rgba(20,20,20,0.6);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
}
.faq-row.q .faq-bubble { background: rgba(28,28,28,0.6); }
.faq-row.a .faq-bubble { color: var(--text-dim); }
.faq-row.a .faq-bubble b { color: var(--text); }

.faq-answer {
  display: none;
}
.faq-answer.open { display: flex; }

/* =================== FOOTER CTA =================== */
.final-cta {
  margin: 30px auto;
  width: min(1200px, 100%);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 90px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(255,92,40,0.18), transparent 60%),
    linear-gradient(180deg, #131313, #0a0a0a);
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,92,40,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,92,40,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 100%, black 30%, transparent 80%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  position: relative;
}
.final-cta .sub {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: clamp(16px, 1.2vw, 20px);
  position: relative;
}
.final-cta .ctas {
  margin-top: 36px;
  display: inline-flex; gap: 18px; align-items: center;
  flex-wrap: wrap; justify-content: center;
  position: relative;
}

/* =================== FOOTER =================== */
.footer {
  padding: 30px 24px 36px;
  position: relative;
}
.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer-copy { color: var(--muted); font-size: 13px; }
.footer-logo img { height: 36px; filter: drop-shadow(0 0 18px rgba(255,92,40,0.25)); }
.footer-social {
  display: flex; gap: 10px;
  justify-content: flex-end;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(20,20,20,0.6);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .25s ease;
}
.footer-social a:hover {
  color: var(--text);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

/* =================== FORM PAGE =================== */
.form-page {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255,92,40,0.06), transparent 60%),
    var(--bg);
  padding: 0 0 80px;
}
.form-page .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black, black 70%, transparent);
  pointer-events: none;
}
.form-page .nav-inner { background: rgba(10,10,10,0.65); }
.form-hero {
  text-align: center;
  padding: 160px 24px 40px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.form-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.form-hero .sub {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--muted);
  letter-spacing: -0.015em;
}
.form-hero p {
  margin-top: 30px;
  color: var(--text-dim);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
}
.alert-pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 30px auto 0;
  padding: 12px 22px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.5);
  color: #ffb0b0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.alert-pill .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(220,38,38,0.7);
}
.form-card {
  width: min(720px, 100%);
  margin: 50px auto 0;
  padding: clamp(24px, 3vw, 44px);
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(10,10,10,0.6));
  position: relative;
}
.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255,92,40,0.6);
  box-shadow: 0 0 0 4px rgba(255,92,40,0.12);
}
.field textarea { min-height: 110px; resize: vertical; }
.field .phone-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}
.field .phone-row select {
  background:
    linear-gradient(#0e0e0e,#0e0e0e) padding-box;
}
.submit {
  width: 100%;
  padding: 18px 24px;
  background: var(--primary);
  color: #160a04;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 18px 50px -10px rgba(255,92,40,0.45);
}
.submit:hover { background: var(--primary-soft); transform: translateY(-1px); }

.form-clients {
  margin-top: 50px;
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  display: flex; gap: 30px; align-items: center;
  overflow: hidden;
}
.form-clients .lbl { color: var(--text-dim); font-size: 14px; white-space: nowrap; }
.form-clients .brands {
  display: flex; gap: 28px; opacity: .8;
  font-family: var(--font-display);
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  animation: marquee 30s linear infinite;
}

/* ============================================================
   ============= v2 OVERRIDES & NEW SECTIONS ==================
   ============================================================ */

/* ---------- Shopify pill in headline (SVG logo) ---------- */
.shopify-pill {
  padding: 8px 18px;
  background: linear-gradient(180deg, #1a1a1a, #0e0e0e);
  border: 1px solid rgba(149,191,71,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 30px rgba(149,191,71,0.18),
    0 12px 30px -10px rgba(149,191,71,0.35);
}
.shopify-logo-pill {
  width: 3.4em;
  height: 1em;
  display: block;
  filter: drop-shadow(0 0 8px rgba(149,191,71,0.4));
}

/* ---------- Ecosystem: tighter, bigger center bag ---------- */
.ecosystem { height: 420px; }
.eco-ring.r1 { width: 280px; height: 280px; }
.eco-ring.r2 { width: 440px; height: 440px; animation-direction: reverse; --dur: 60s; border-style: dotted; border-color: rgba(255,255,255,0.05); }
.eco-ring.r3 { display: none; }

.eco-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.eco-center {
  width: 180px; height: 180px;
}
.eco-center::after {
  width: 150px; height: 150px;
}
.eco-center img { display: none; }
.eco-center svg {
  position: relative;
  width: 78px; height: 90px;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}

/* Make orbiting tokens a bit smaller/cleaner */
.eco-token { width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 12px; }
.eco-token svg { width: 20px; height: 20px; }
.orbiter > .eco-token { left: var(--r, 140px); top: -23px; }

/* Notifications: faster cycle, more frequent */
.notif {
  animation: notifCycle 7s linear infinite;
  width: 230px;
}
.notif.n1 { animation-delay: 0s; }
.notif.n2 { animation-delay: 1s; }
.notif.n3 { animation-delay: 2s; }
.notif.n4 { animation-delay: 3.5s; }
.notif.n5 { animation-delay: 4.5s; }
.notif.n6 { animation-delay: 5.5s; }
.notif-icon { background: linear-gradient(180deg, #1c1c1c, #111); }
.notif-icon img { display: none; }
.notif-icon svg { width: 22px; height: 26px; }

@keyframes notifCycle {
  0%   { opacity: 0; transform: translateY(18px) scale(.94); }
  10%  { opacity: 1; transform: translateY(0) scale(1); }
  65%  { opacity: 1; transform: translateY(-4px) scale(1); }
  78%  { opacity: 0; transform: translateY(-18px) scale(.94); }
  100% { opacity: 0; }
}

/* ---------- Clients: Ruffitos logo placeholders ---------- */
.client-card {
  width: 280px; height: 180px;
}
.client-card .brand,
.client-card .placeholder-img { display: none; }
.client-card::before { display: none; }
.client-card img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}

/* ---------- Mini calculator (in landing) ---------- */
.calc-mini {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, #131313, #0c0c0c);
  padding: clamp(24px, 3vw, 40px);
}
.calc-mini-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.mini-input {
  background: rgba(20,20,20,0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
}
.mini-input label {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mini-input input {
  width: 100%;
  background: transparent;
  border: 0; outline: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  padding: 0;
}
.mini-input .prefix {
  display: flex; align-items: baseline; gap: 6px;
}
.mini-input .prefix .sign {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
}
.calc-mini-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
.mini-result {
  padding: 14px 18px;
  background: rgba(20,20,20,0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.mini-result .lbl {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}
.mini-result .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.mini-stage {
  position: relative;
  padding: 28px clamp(20px, 3vw, 40px) 32px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255,92,40,0.12), transparent 60%),
    linear-gradient(180deg, #181818, #0e0e0e);
  border: 1px solid rgba(255,92,40,0.3);
  border-radius: 20px;
  text-align: center;
}
.mini-stage-head {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mini-stage-head #mPct {
  color: var(--primary);
  font-weight: 800;
}
.mini-stage-big {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: -0.022em;
  color: var(--primary);
  line-height: 1;
  filter: drop-shadow(0 0 30px rgba(255,92,40,0.45));
  font-variant-numeric: tabular-nums;
}
.mini-stage-gain {
  margin-top: 10px;
  color: var(--shopify-bright);
  font-weight: 700;
  font-size: 14px;
}
.mini-slider-wrap {
  margin-top: 26px;
  position: relative;
}
.mini-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background:
    linear-gradient(90deg, var(--primary), var(--primary-soft)) 0 0 / var(--fill, 50%) 100% no-repeat,
    rgba(255,255,255,0.08);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.mini-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(255,92,40,0.6);
}
.mini-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(255,92,40,0.6);
}
.mini-ticks {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.mini-ticks .major {
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease;
}
.mini-ticks .major:hover { color: var(--primary-soft); text-decoration: underline; }

/* ---------- Guarantee: static, highlighted ---------- */
.guarantee-card {
  border-radius: 28px;
  padding: clamp(28px, 3.5vw, 50px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  position: relative;
  background:
    radial-gradient(800px 400px at 0% 50%, rgba(255,92,40,0.10), transparent 60%),
    linear-gradient(180deg, #161616, #0e0e0e);
  border: 1px solid rgba(255,92,40,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 30px 60px -20px rgba(255,92,40,0.18);
}
.guarantee-side h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-top: 18px;
}
.guarantee-side h3 em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(180deg, transparent 60%, rgba(255,92,40,0.25) 60%);
  padding: 0 4px;
}
.guarantee-side p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
}
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,92,40,0.08);
  border: 1px solid rgba(255,92,40,0.5);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: 999px;
}
.guarantee-points {
  display: flex; flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.guarantee-point {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: rgba(20,20,20,0.55);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.g-check {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(149,191,71,0.12);
  border: 1px solid rgba(149,191,71,0.4);
  color: var(--shopify-bright);
  display: inline-flex; align-items: center; justify-content: center;
}
.g-title { font-weight: 700; font-size: 16px; color: var(--text); }
.g-sub   { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ---------- Methodology: sticky left ---------- */
.method {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.method-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
.method-left h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.method-left p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.method-tabs {
  display: flex; flex-direction: column; gap: 8px;
}
.tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(20,20,20,0.5);
  color: var(--text-dim);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  font-family: var(--font-body);
}
.tab .tab-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  width: 28px;
}
.tab .tab-label {
  font-weight: 600;
  font-size: 15px;
}
.tab .tab-week {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}
.tab:hover:not(.active) {
  border-color: var(--border-strong);
  color: var(--text);
}
.tab.active {
  background: linear-gradient(180deg, rgba(255,92,40,0.10), rgba(255,92,40,0.04));
  border-color: rgba(255,92,40,0.5);
  color: var(--text);
  box-shadow: 0 10px 30px -10px rgba(255,92,40,0.25);
}
.tab.active .tab-num { color: var(--primary); }
.tab.active .tab-week { background: rgba(255,92,40,0.12); color: var(--primary); }

/* method-right: scrollable list of steps with separation */
.method-right {
  display: flex; flex-direction: column;
  gap: 80px;
}
.step {
  scroll-margin-top: 100px;
}
.step.active {
  border-color: var(--border);
  box-shadow: none;
}
.step-week {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,92,40,0.10);
  border: 1px solid rgba(255,92,40,0.3);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* Shopify integration card in onboarding step */
.step-onb .integration-card.shopify svg {
  filter: drop-shadow(0 0 6px rgba(149,191,71,0.4));
}

/* ---------- FAQ — author header + accordion ---------- */
.faq-author {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #161616, #0e0e0e);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 18px;
  position: relative;
}
.faq-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,92,40,0.4);
  flex: none;
  background: #222;
}
.faq-author-meta { flex: 1; min-width: 0; }
.faq-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.faq-author-role {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 2px;
}
.faq-author-role .handle {
  color: var(--primary);
  font-weight: 700;
}
.faq-author-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(149,191,71,0.10);
  border: 1px solid rgba(149,191,71,0.4);
  border-radius: 999px;
  color: #cfe9a3;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--shopify-bright);
  box-shadow: 0 0 0 3px rgba(149,191,71,0.18), 0 0 12px rgba(149,191,71,0.6);
  animation: ping 2.2s ease-out infinite;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(255,92,40,0.6);
}

.faq-list {
  display: flex; flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #131313, #0c0c0c);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: rgba(255,92,40,0.4); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-toggle {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: transform .3s ease, background .25s ease;
}
.faq-item[open] .faq-toggle {
  transform: rotate(90deg);
  background: rgba(255,92,40,0.10);
  border-color: rgba(255,92,40,0.5);
  color: var(--primary);
}
.faq-body {
  padding: 0 22px 22px 22px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  animation: faqOpen .35s ease both;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Misc tidy ---------- */
.scroll-cue { bottom: -22px; }

@media (max-width: 980px) {
  .method { grid-template-columns: 1fr; gap: 30px; }
  .method-left { position: static; }
  .calc-mini-inputs { grid-template-columns: 1fr; }
  .calc-mini-results { grid-template-columns: 1fr; }
  .guarantee-card { grid-template-columns: 1fr; gap: 28px; }
  .faq-author { flex-wrap: wrap; }
  .faq-author-cta { width: 100%; justify-content: center; }
}

/* method-right: only active step visible (clean switch) */
.method-right {
  display: flex; flex-direction: column;
  gap: 0;
  min-height: 480px;
}
.step {
  display: none;
  scroll-margin-top: 100px;
}
.step.active {
  display: block;
  animation: stepIn .35s ease both;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-week {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,92,40,0.10);
  border: 1px solid rgba(255,92,40,0.3);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* ============ Calculator inputs clarity ============ */
.mini-input {
  background: rgba(20,20,20,0.55);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
}
.mini-input::after {
  content: "✎";
  position: absolute;
  top: 12px; right: 14px;
  color: rgba(255,92,40,0.5);
  font-size: 14px;
}
.mini-input:focus-within {
  border-color: var(--primary);
  background: rgba(28,18,12,0.7);
  box-shadow: 0 0 0 4px rgba(255,92,40,0.12);
}
.mini-input label {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.mini-input .hint-lbl {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 8px;
}

/* Read-only result cards (visually different from inputs) */
.mini-result {
  background: linear-gradient(180deg, rgba(168,85,247,0.06), rgba(168,85,247,0.02));
  border: 1px dashed rgba(168,85,247,0.4);
}
.mini-result .lbl::before {
  content: "auto";
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.4);
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Sales comparison row */
.mini-comparison {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(149,191,71,0.06);
  border: 1px solid rgba(149,191,71,0.3);
  border-radius: 14px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.mini-comparison b { color: var(--shopify-bright); font-weight: 700; }
.mini-comparison .strike {
  text-decoration: line-through;
  color: var(--muted);
}

/* Tooltip button */
.cr-help-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 8px;
  padding: 6px 14px;
  background: rgba(168,85,247,0.10);
  border: 1px solid rgba(168,85,247,0.45);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  vertical-align: middle;
  transition: all .2s ease;
}
.cr-help-btn:hover {
  background: rgba(168,85,247,0.18);
  color: #d8b4fe;
}
.cr-help-btn .q {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* Tooltip modal */
.cr-modal {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 30px 24px;
}
.cr-modal.open { display: flex; }
.cr-modal-inner {
  width: min(720px, 100%);
  position: relative;
  padding: clamp(30px, 4vw, 50px);
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(168,85,247,0.18), transparent 60%),
    linear-gradient(180deg, #161616, #0a0a0a);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 24px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
  animation: modalIn .3s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cr-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background .2s ease;
}
.cr-close:hover { background: rgba(255,255,255,0.08); }
.cr-modal h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.018em;
  color: var(--purple);
}
.cr-modal p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
}
.cr-modal p b { color: var(--text); }
.cr-formula {
  margin-top: 26px;
  padding: 22px 26px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.cr-formula .lbl {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.cr-formula .eq {
  font-family: 'Menlo', 'Monaco', monospace;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--purple);
  letter-spacing: -0.005em;
}
.cr-formula .ex {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14px;
}

/* ---------- Footer: only Instagram ---------- */
.footer-social a:hover {
  background: rgba(255,92,40,0.1);
  border-color: rgba(255,92,40,0.4);
  color: var(--primary);
}

/* ---------- Form page: no footer, button "INICIO" ---------- */
.form-page .form-clients { display: none; }

/* ============ Solution single hero feature ============ */
.solution-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 60px);
  background: linear-gradient(180deg, #131313, #0c0c0c);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.solution-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 100% 50%, rgba(149,191,71,0.12), transparent 60%);
  pointer-events: none;
}
.solution-content { position: relative; z-index: 1; }
.solution-pills { display: flex; flex-direction: column; gap: 14px; }
.sol-pill {
  display: flex; gap: 18px;
  padding: 22px 24px;
  background: rgba(20,20,20,0.55);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all .25s ease;
}
.sol-pill:hover {
  border-color: rgba(149,191,71,0.4);
  background: rgba(149,191,71,0.04);
  transform: translateX(4px);
}
.sol-num {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(149,191,71,0.12);
  border: 1px solid rgba(149,191,71,0.4);
  color: var(--shopify-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.sol-pill h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.01em;
}
.sol-pill p {
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

.solution-visual {
  position: relative;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.viz-orders.big {
  position: relative;
  width: 280px;
}
.viz-orders.big .phone {
  width: 280px; height: 480px;
  padding: 18px 14px 22px;
  border-radius: 36px;
  border-width: 8px;
  position: relative;
  box-shadow:
    0 50px 80px -20px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.viz-orders.big .phone::before { width: 36px; height: 5px; top: 12px; }
.viz-orders.big .ph-head { margin-top: 16px; font-size: 11px; }
.viz-orders.big .ph-title { font-size: 16px; margin-top: 8px; margin-bottom: 6px; }
.viz-orders.big .order {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  font-size: 10.5px;
  animation: orderIn .6s ease both;
}
.viz-orders.big .order:nth-child(3) { animation-delay: .15s; }
.viz-orders.big .order:nth-child(4) { animation-delay: .3s; }
.viz-orders.big .order:nth-child(5) { animation-delay: .45s; }
.viz-orders.big .order:nth-child(6) { animation-delay: .6s; }
@keyframes orderIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.viz-orders.big .order .top { font-size: 11px; }
.viz-orders.big .order .meta { font-size: 9px; }
.viz-orders.big .tag { font-size: 8px; padding: 2px 7px; }

.viz-orders-notif {
  position: absolute;
  right: -50px; top: 18%;
  width: 240px;
  padding: 12px 14px;
  background: rgba(18,18,18,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(149,191,71,0.3);
  border-radius: 14px;
  display: flex; gap: 12px;
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.7), 0 0 30px rgba(149,191,71,0.18);
  animation: notifFloat 3.5s ease-in-out infinite;
}
@keyframes notifFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.viz-orders-notif .notif-icon {
  width: 36px; height: 36px; flex: none;
  border-radius: 9px;
  background: radial-gradient(circle at 50% 40%, var(--shopify-bright), var(--shopify) 70%);
  display: flex; align-items: center; justify-content: center;
}
.viz-orders-notif .notif-icon svg { width: 22px; height: 26px; }
.viz-orders-notif .notif-body { font-size: 12px; line-height: 1.35; color: var(--text-dim); }
.viz-orders-notif .notif-body .top {
  display: flex; justify-content: space-between;
  color: var(--text); font-weight: 700; font-size: 13px;
  margin-bottom: 3px;
}
.viz-orders-notif .notif-body .top .time { color: var(--muted); font-weight: 500; font-size: 11px; }
.viz-orders-notif .notif-body .amt { color: var(--shopify-bright); font-weight: 700; }

/* ============ Problems v2 (clean 3×2 grid) ============ */
.problems-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Fix CAC visual: badge placement clear of the line */
.viz-cac .badge-cac {
  position: absolute;
  top: 12%;
  right: 8%;
  padding: 5px 12px;
  background: #1a0808;
  border: 1px solid rgba(220,38,38,0.5);
  color: #ffb0b0;
  font-size: 12px; font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.7);
}

/* Fix phone visual: cleaner without overflowing alarm dots */
.viz-phone-v2 {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.viz-phone-v2 .phone {
  width: 96px; height: 150px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border: 2px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.viz-phone-v2 .phone::before {
  content: "";
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px; background: #050505; border-radius: 4px;
}
.viz-phone-v2 .spin {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: rgba(220,38,38,0.7);
  animation: spin 1s linear infinite;
}
.viz-phone-v2 .err-tag {
  padding: 6px 12px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.5);
  color: #ff8a8a;
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}

/* Text-only problem card */
.p-card.text-only {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-top: 40px;
  overflow: hidden;
}
.p-card.text-only .p-num {
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 110px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(220,38,38,0.18);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.p-card.text-only h3 { margin-bottom: 10px; }

@media (max-width: 980px) {
  .solution-hero { grid-template-columns: 1fr; }
  .solution-visual { min-height: 0; padding: 30px 0; }
  .viz-orders-notif { right: 0; }
  .problems-grid-v2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .problems-grid-v2 { grid-template-columns: 1fr; }
}

/* ============ Form page v2: intro paragraphs + success state ============ */
.form-intro {
  margin-top: 28px;
  color: var(--text-dim);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.form-intro b { color: var(--text); font-weight: 700; }
.form-intro-2 {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.req { color: var(--primary); font-weight: 800; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(720px, 100%);
  margin: 50px auto 0;
  padding: clamp(36px, 4vw, 60px) clamp(24px, 3vw, 44px);
  border-radius: 26px;
  border: 1px solid rgba(149,191,71,0.45);
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(149,191,71,0.12), transparent 60%),
    linear-gradient(180deg, rgba(20,20,20,0.6), rgba(10,10,10,0.6));
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--shopify-bright), var(--shopify) 70%);
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a;
  margin-bottom: 22px;
  box-shadow: 0 0 60px rgba(149,191,71,0.5);
  animation: pop .5s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes pop {
  0% { transform: scale(.4); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.form-success h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
}
.form-success p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
}
.success-ctas {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge--stack {
  padding: 10px 18px 10px 14px;
  align-items: center;
}
.badge--stack .badge-text {
  display: flex; flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.badge--stack .badge-main {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.badge--stack .badge-sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
}

/* ============ Our Brands section ============ */
.our-brands {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 50px);
  background:
    radial-gradient(700px 400px at 100% 50%, rgba(149,191,71,0.08), transparent 60%),
    linear-gradient(180deg, #141414, #0c0c0c);
  border: 1px solid var(--border);
}
.brands-copy p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.brands-copy p b { color: var(--text); font-weight: 700; }
.brands-copy p em {
  font-style: normal;
  color: var(--shopify-bright);
  background: linear-gradient(180deg, transparent 60%, rgba(149,191,71,0.20) 60%);
  padding: 0 3px;
}
.brands-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.brand-stat {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(20,20,20,0.55);
  border: 1px solid var(--border);
  text-align: center;
}
.brand-stat .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  color: var(--shopify-bright);
}
.brand-stat .stat-lbl {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.35;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 360px;
}
.brand-mini {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.brand-mini:nth-child(1) {
  grid-row: span 2;
  background:
    radial-gradient(circle at 50% 30%, rgba(149,191,71,0.10), transparent 60%),
    linear-gradient(135deg, #1a1a1a, #0e0e0e);
}
.brand-mini-img {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.brand-mini-img img {
  width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}
.brand-mini-stat {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(149,191,71,0.3);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.brand-mini-stat .trend.up {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(149,191,71,0.15);
  color: var(--shopify-bright);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.brand-mini-stat b { color: var(--shopify-bright); font-weight: 700; }
.brand-mini-stat .small { color: var(--muted); font-size: 11px; font-weight: 500; }

@media (max-width: 880px) {
  .our-brands { grid-template-columns: 1fr; }
  .brands-stats { grid-template-columns: 1fr; }
  .brands-grid { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; }
  .brand-mini:nth-child(1) { grid-row: auto; }
  .brand-mini { min-height: 200px; }
}

/* ============ VSL Hero variant ============ */
.hero--vsl { padding-top: 130px; padding-bottom: 40px; min-height: 0; }
.hero--vsl .headline {
  font-size: clamp(28px, 4.2vw, 56px);
  margin-top: 22px;
}
.hero--vsl .hero-subline {
  font-size: clamp(17px, 1.6vw, 22px);
  margin-top: 20px;
}
.hero--vsl .description {
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 16px;
  max-width: 640px;
}
.hero--vsl .cta-wrap { margin-top: 28px; }
.hero--vsl .ecosystem {
  margin-top: 60px;
  height: 320px;
}
.hero--vsl .shopify-pill { padding: 6px 14px; }
.hero--vsl .shopify-logo-pill { width: 3em; }

.vsl-video-wrap {
  margin-top: 48px;
  width: min(820px, 100%);
  position: relative;
  opacity: 0;
  animation: rise .9s 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.vsl-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0a0a0a;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 0 60px rgba(255,92,40,0.18);
  aspect-ratio: 16 / 9;
}
.vsl-frame vturb-smartplayer {
  width: 100% !important;
  height: 100% !important;
}
.vsl-frame::before {
  content: "";
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(255,92,40,0.5), rgba(168,85,247,0.4), rgba(149,191,71,0.4));
  border-radius: 22px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
.vsl-meta {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  width: 100%;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}
.vsl-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.18), 0 0 12px rgba(220,38,38,0.6);
  animation: ping 1.8s ease-out infinite;
}

@media (max-width: 720px) {
  .hero--vsl .headline { font-size: clamp(24px, 6vw, 36px); }
  .hero--vsl .hero-subline { font-size: 15px; }
  .hero--vsl .description { font-size: 14px; }
  .vsl-video-wrap { margin-top: 30px; }
}

/* ============ Client cards v3 (white logos + brand name + glow link) ============ */
.marquee {
  padding: 14px 0;
}
.marquee-track {
  gap: 18px;
}
.client-card {
  width: 240px; height: 200px; flex: none;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  padding: 24px 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #131313, #0c0c0c);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.client-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 240px at 50% 30%, rgba(255,92,40,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.client-card:hover {
  border-color: rgba(255,92,40,0.55);
  transform: translateY(-4px);
  box-shadow:
    0 22px 50px -16px rgba(255,92,40,0.4),
    0 0 60px rgba(255,92,40,0.12);
}
.client-card:hover::before { opacity: 1; }

.client-card-inner {
  flex: 1;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.client-card .brand-logo {
  max-width: 80%;
  max-height: 64px;
  width: auto; height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity .3s ease, transform .3s ease;
}
.client-card:hover .brand-logo {
  opacity: 1;
  transform: scale(1.04);
}
.client-card .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  transition: color .3s ease;
  text-transform: uppercase;
}
.client-card:hover .brand-name { color: var(--primary); }
.client-card .brand-go {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.client-card:hover .brand-go {
  background: var(--primary);
  border-color: var(--primary);
  color: #160a04;
  transform: rotate(-45deg);
}

/* ============ Our Brands single column (no grid placeholder) ============ */
.our-brands {
  grid-template-columns: 1fr !important;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.our-brands .brands-copy { text-align: center; }
.our-brands .brands-stats { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============ Chat thread (FAQ) ============ */
.chat-thread {
  width: min(720px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #131313, #0a0a0a);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.65),
    0 0 0 8px rgba(255,255,255,0.02);
}

.chat-header {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(40,40,40,0.5), rgba(20,20,20,0.4));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.chat-back {
  color: var(--primary);
  display: inline-flex; align-items: center;
  width: 22px; height: 22px;
  cursor: pointer;
}
.chat-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(149,191,71,0.5);
  background: #222;
}
.chat-meta { min-width: 0; line-height: 1.2; }
.chat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text);
}
.chat-verify {
  width: 16px; height: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.chat-verify svg { fill: currentColor; }
.chat-status {
  font-size: 11.5px;
  color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.chat-status .online {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--shopify-bright);
  box-shadow: 0 0 0 2px rgba(149,191,71,0.18), 0 0 10px rgba(149,191,71,0.6);
}
.chat-status .handle { color: var(--primary); font-weight: 600; }
.chat-actions {
  display: flex; gap: 14px;
  color: var(--text-dim);
}
.chat-action {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.chat-action:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.chat-body {
  background:
    radial-gradient(700px 350px at 50% 0%, rgba(255,92,40,0.04), transparent),
    #0c0c0c;
  padding: 24px 20px 12px;
  display: flex; flex-direction: column; gap: 10px;
}

.chat-day {
  align-self: center;
  font-size: 10.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.msg-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: msgIn .35s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.msg-row.user { justify-content: flex-end; }
.msg-row.agus { justify-content: flex-start; }
.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
  flex: none;
  background: #222;
}
/* Hide avatar on consecutive agus messages */
.msg-row.agus + .msg-row.agus .msg-avatar {
  visibility: hidden;
}
.bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
}
.msg-row.user .bubble {
  background: linear-gradient(135deg, var(--shopify), #4a7330);
  color: #fff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 6px 18px -8px rgba(94,142,62,0.55);
  font-weight: 500;
}
.msg-row.agus .bubble {
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  border-bottom-left-radius: 6px;
  border: 1px solid rgba(255,255,255,0.03);
}
.msg-row.agus .bubble b { color: var(--text); font-weight: 700; }
.msg-row.user .bubble b { color: #fff; font-weight: 700; }

.typing-dots {
  display: flex; gap: 4px;
  padding: 14px 16px !important;
}
.typing-dots span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: .15s; }
.typing-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-input-bar {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 14px;
  background: rgba(20,20,20,0.7);
  border-top: 1px solid var(--border);
}
.chat-input-bar input:disabled {
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  cursor: not-allowed;
}
.chat-input-bar input:disabled::placeholder { color: var(--muted); }

.chat-input-bar input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all .2s ease;
}
.chat-input-bar input::placeholder { color: var(--muted); }
.chat-input-bar input:focus {
  border-color: rgba(255,92,40,0.55);
  background: rgba(255,92,40,0.04);
}
.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  border: 0;
  color: #160a04;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
  flex: none;
}
.chat-send:hover { background: var(--primary-soft); transform: scale(1.06); }

@media (max-width: 640px) {
  .chat-body { padding: 18px 14px 8px; }
  .bubble { max-width: 80%; font-size: 13px; }
  .chat-name { font-size: 14px; }
}

/* ============ Minimal nav: centered white logo only ============ */
.nav--minimal {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 24px 0;
  pointer-events: none;
  background: transparent;
  backdrop-filter: none;
}
.nav--minimal .nav-inner { display: none; }
.nav--minimal .logo {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
}
.nav--minimal .logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity .25s ease, transform .25s ease;
}
.nav--minimal .logo:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* Hero: account for non-pill nav (less padding needed) */
.hero { padding-top: 110px; }
.hero--vsl { padding-top: 90px; }

@media (max-width: 720px) {
  .nav--minimal { padding: 22px 16px 0; }
  .nav--minimal .logo img { height: 30px; }
  .hero { padding-top: 90px; }
}

/* ============ Client cards v4 — no box, tight layout ============ */
.client-card {
  width: 170px;
  height: auto;
  padding: 10px 8px;
  gap: 12px;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.client-card::before { display: none; }
.client-card:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}
.client-card .client-card-inner {
  padding: 0;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.client-card .brand-logo {
  max-width: 88%;
  max-height: 56px;
  opacity: 0.7;
}
.client-card:hover .brand-logo { opacity: 1; transform: scale(1.05); }
.client-card .brand-name {
  font-size: 11px;
  letter-spacing: 0.18em;
}
.client-card .brand-go {
  display: none;
}

.marquee {
  padding: 12px 0;
}
.marquee-track {
  gap: 12px;
  align-items: center;
}

@media (max-width: 720px) {
  .client-card {
    width: 110px;
    height: auto;
    padding: 8px 4px;
    gap: 8px;
  }
  .client-card .brand-logo { max-height: 38px; }
  .client-card .brand-name { font-size: 9.5px; letter-spacing: 0.1em; }
  .marquee-track { gap: 6px; }
}

@media (max-width: 480px) {
  .client-card {
    width: 92px;
    padding: 6px 2px;
    gap: 6px;
  }
  .client-card .brand-logo { max-height: 32px; }
  .client-card .brand-name { font-size: 9px; }
}

/* ============ Headline flow variant (no row breaks, natural wrap) ============ */
.headline--flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 0.28em;
  row-gap: 0.05em;
  max-width: 1180px;
}
.headline--flow .word {
  display: inline-flex;
  align-items: center;
}

/* Meta brand-color treatment for "Meta" highlight */
.meta {
  background: linear-gradient(135deg, #0866FF 0%, #5B6BFF 45%, #B445F2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  filter: drop-shadow(0 0 18px rgba(8,102,255,0.35));
}
/* Subline still uses .meta but with smaller glow */
.hero-subline .meta {
  filter: drop-shadow(0 0 12px rgba(8,102,255,0.3));
}

/* ============ Capturas section ============ */
.capturas {
  padding: 90px 0 80px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(255,92,40,0.05), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #0e0e0e 40%, #0e0e0e 60%, var(--bg) 100%);
  overflow: hidden;
  position: relative;
}
.capturas-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.capturas-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.capturas-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.capturas-rows::before,
.capturas-rows::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.capturas-rows::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.capturas-rows::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
.cap-row {
  overflow: hidden;
  position: relative;
}
.cap-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: capScroll var(--cap-dur, 60s) linear infinite;
  will-change: transform;
}
.cap-row.reverse .cap-track {
  animation-direction: reverse;
}
.cap-row:hover .cap-track {
  animation-play-state: paused;
}
@keyframes capScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cap-card {
  flex: none;
  height: 340px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: zoom-in;
}
.cap-card:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 28px 60px -12px rgba(168,85,247,0.30);
  z-index: 3;
}
.cap-card img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
.capturas-footer {
  margin-top: 44px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 720px) {
  .capturas { padding: 60px 0; }
  .capturas-head { margin-bottom: 36px; }
  .cap-card { height: 180px; border-radius: 12px; }
  .cap-track { gap: 10px; }
  .capturas-rows { gap: 10px; }
  .capturas-rows::before,
  .capturas-rows::after { width: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .cap-track { animation: none; }
}

/* ============ Delayed CTA below VSL ============ */
.vsl-cta-delayed {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.96);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1),
              transform .8s cubic-bezier(.2,.7,.2,1),
              visibility 0s linear .8s;
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.vsl-cta-delayed.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}
.vsl-cta-delayed.show .btn-halo-wrap::before {
  animation: glowPulse 3.5s ease-in-out infinite, ctaAppear 1.2s ease-out;
}
@keyframes ctaAppear {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: .9; }
}

/* VSL meta — slightly more emphasis after change */
.hero--vsl .vsl-meta {
  font-size: 14px;
  max-width: 580px;
  margin: 14px auto 0;
  text-align: center;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  section { padding: 56px 14px; }
  .container { padding: 0; }
  .nav { padding: 12px 10px 0; }
  .nav-inner { padding: 8px 10px 8px 16px; }
  .logo img { height: 24px; }
  .nav-cta, .nav .btn { font-size: 12px; padding: 9px 14px; }
  .nav .btn .arrow { display: none; }

  /* Hero — smaller font on mobile */
  .hero { padding: 100px 14px 30px; }
  .headline { font-size: clamp(24px, 7.2vw, 36px); letter-spacing: -0.02em; line-height: 1.06; }
  .headline .row { gap: 8px; }
  .shopify-pill { padding: 4px 12px; }
  .shopify-logo-pill { width: 2.6em; }
  .hero-subline { font-size: 15px; margin-top: 20px; padding: 0 6px; }
  .description { font-size: 13.5px; padding: 0 8px; }
  .badge--stack { padding: 8px 14px 8px 12px; gap: 10px; }
  .badge--stack .badge-main { font-size: 10.5px; letter-spacing: 0.04em; }
  .badge--stack .badge-sub { font-size: 10px; }
  .btn--lg { padding: 14px 22px; font-size: 15px; }

  /* Ecosystem — more compact */
  .ecosystem { height: 300px; margin-top: 40px; }
  .eco-center { width: 130px; height: 130px; }
  .eco-center::after { width: 100px; height: 100px; }
  .eco-center svg { width: 56px; height: 64px; }
  .eco-ring.r1 { width: 200px; height: 200px; }
  .eco-ring.r2 { width: 300px; height: 300px; }
  .orbiter > .eco-token { left: calc(var(--r, 140px) * 0.7); }
  .eco-token { width: 38px; height: 38px; margin: -19px 0 0 -19px; }
  .eco-token svg { width: 16px; height: 16px; }
  .notif { width: 170px; padding: 8px 10px; }
  .notif.n5, .notif.n6 { display: none; }
  .notif-icon { width: 28px; height: 28px; }
  .notif-icon svg { width: 18px; height: 22px; }
  .notif-body .top { font-size: 11px; }
  .notif-body { font-size: 11px; }

  /* Clients marquee — dense on mobile */
  .marquee { padding: 8px 0; }
  .marquee-track { gap: 10px; }
  .client-card {
    width: 118px; height: 134px;
    gap: 10px;
    padding: 14px 8px 12px;
    border-radius: 14px;
  }
  .client-card .brand-logo { max-height: 42px; max-width: 80%; }
  .client-card .brand-name { font-size: 9.5px; letter-spacing: 0.08em; }
  .client-card .brand-go { width: 18px; height: 18px; top: 6px; right: 6px; }
  .client-card .brand-go svg { width: 8px; height: 8px; }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(24px, 6vw, 34px); }
  .section-sub { font-size: 14px; }

  /* Problems v2 — already single column at 640 */
  .problems-grid-v2 { grid-template-columns: 1fr; gap: 14px; }
  .p-card { padding: 18px; border-radius: 18px; }
  .p-card h3 { font-size: 18px; }
  .p-card p { font-size: 14px; }
  .p-card.text-only { padding-top: 36px; }
  .p-card.text-only .p-num { font-size: 80px; top: 6px; right: 14px; }
  .p-visual { height: 180px; margin-bottom: 18px; }

  /* Calculator */
  .calc-mini { padding: 18px; border-radius: 20px; }
  .calc-mini-inputs { gap: 10px; }
  .mini-input { padding: 12px 14px; }
  .mini-input::after { font-size: 9px; right: 10px; top: 10px; }
  .mini-input label { font-size: 12px; }
  .mini-input .hint-lbl { font-size: 10px; margin-bottom: 6px; }
  .mini-input input { font-size: 22px; }
  .calc-mini-results { gap: 10px; }
  .mini-result { padding: 12px 14px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .mini-result .lbl { font-size: 12px; }
  .mini-result .val { font-size: 22px; }
  .mini-stage { padding: 22px 16px 26px; }
  .mini-stage-head { font-size: 13px; }
  .mini-stage-big { font-size: 48px; }
  .mini-stage-gain { font-size: 13px; }
  .mini-comparison { font-size: 13px; padding: 12px 14px; }
  .mini-ticks { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .mini-ticks .major {
    font-size: 11px;
    padding: 6px 12px;
    background: rgba(255,92,40,0.08);
    border: 1px solid rgba(255,92,40,0.3);
    border-radius: 999px;
  }
  .cr-help-btn { font-size: 11px; padding: 6px 12px; margin-top: 10px; margin-left: 0; }

  /* Solutions */
  .solution-hero { padding: 22px; gap: 28px; }
  .solution-pills { gap: 10px; }
  .sol-pill { padding: 16px 14px; gap: 12px; }
  .sol-num { width: 32px; height: 32px; font-size: 12px; }
  .sol-pill h4 { font-size: 17px; }
  .sol-pill p { font-size: 13px; }
  .solution-visual { min-height: 0; padding: 18px 0; }
  .viz-orders.big { width: 220px; }
  .viz-orders.big .phone { width: 220px; height: 380px; }
  .viz-orders-notif { right: 0; top: 4%; width: 190px; }

  /* Guarantee */
  .guarantee-card { padding: 22px; gap: 18px; }
  .guarantee-side h3 { font-size: 22px; }
  .guarantee-side p { font-size: 14px; }
  .guarantee-point { padding: 14px 16px; gap: 12px; }
  .g-check { width: 28px; height: 28px; }

  /* Our brands */
  .our-brands { padding: 22px; }
  .brands-copy p { font-size: 15px; }
  .brand-stat { padding: 14px 12px; }
  .brand-stat .stat-num { font-size: 22px; }
  .brand-stat .stat-lbl { font-size: 11px; }

  /* Methodology */
  .method-left h2 { font-size: clamp(24px, 6vw, 32px); }
  .method-left p { font-size: 14px; margin-bottom: 20px; }
  .tab { padding: 12px 14px; gap: 10px; border-radius: 12px; }
  .tab .tab-num { font-size: 13px; width: 22px; }
  .tab .tab-label { font-size: 13px; }
  .tab .tab-week { font-size: 10px; padding: 3px 8px; }
  .step { padding: 20px; border-radius: 18px; }
  .step h3 { font-size: 20px; }
  .step p { font-size: 14px; }
  .step-visual { height: 180px; margin-top: 16px; }
  .step-week { font-size: 10px; padding: 5px 10px; }

  /* FAQ chat */
  .chat-header { padding: 12px 14px; gap: 8px; }
  .chat-avatar { width: 38px; height: 38px; }
  .chat-name { font-size: 14px; }
  .chat-status { font-size: 11px; }
  .chat-actions { gap: 6px; }
  .chat-action { width: 28px; height: 28px; }
  .chat-action svg { width: 14px; height: 14px; }
  .chat-body { padding: 16px 12px 8px; gap: 8px; }
  .bubble { max-width: 82%; font-size: 13px; padding: 9px 12px; }
  .msg-avatar { width: 24px; height: 24px; }
  .chat-input-bar { padding: 10px 12px; }
  .chat-input-bar input { font-size: 13px; padding: 9px 14px; }
  .chat-send { width: 34px; height: 34px; }

  /* Final CTA */
  .final-cta { padding: 50px 18px; border-radius: 24px; margin: 20px auto; }
  .final-cta h2 { font-size: clamp(24px, 6.4vw, 38px); }
  .final-cta .sub { font-size: 14px; }
  .ctas { margin-top: 26px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-social { justify-content: center; }
  .footer-copy { font-size: 12px; }
}

@media (max-width: 480px) {
  .headline { font-size: clamp(22px, 8vw, 30px); }
  .ecosystem { height: 260px; margin-top: 32px; }
  .eco-center { width: 110px; height: 110px; }
  .eco-center::after { width: 84px; height: 84px; }
  .eco-center svg { width: 46px; height: 54px; }
  .eco-ring.r1 { width: 170px; height: 170px; }
  .eco-ring.r2 { width: 250px; height: 250px; }
  .notif { width: 150px; padding: 6px 8px; }
  .notif.n4 { display: none; }
  .client-card { width: 102px; height: 122px; padding: 12px 6px 10px; gap: 8px; }
  .client-card .brand-logo { max-height: 36px; }
  .client-card .brand-name { font-size: 9px; }
  .mini-stage-big { font-size: 40px; }
  .viz-orders.big { width: 200px; }
  .viz-orders.big .phone { width: 200px; height: 360px; }
  .viz-orders-notif { width: 170px; }
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
