@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,900&family=Caveat+Brush&display=swap');

:root {
  --brand: #14288A;
  --brand-deep: #0E1F5C;
  --brand-light: #2746C7;
  --accent: #D7263D;
  --accent-hover: #E94C4C;
  --hot: #F2853B;
  --yellow: #F7C630;
  --green: #2EA84B;
  --paper: #FFFDF7;
  --paper-2: #FAF3E2;
  --linea: #E8DCC4;
  --ink: #1A1410;
  --ink-2: #3D332B;
  --ink-3: #6B5E54;
  --shadow-pop: 8px 8px 0 var(--brand-deep);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-script: 'Caveat Brush', cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; }

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ====== TYPE ====== */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}
.h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
.h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 40px); line-height: 1.15; letter-spacing: -0.015em; margin: 0; }
.script { font-family: var(--font-script); color: var(--accent); }
.muted { color: var(--ink-3); }
.alt-en { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.5em; letter-spacing: 0.04em; color: var(--ink-3); margin-top: 6px; text-transform: none; }
[data-lang="en"] .es-only, [data-lang="es"] .en-only { display: none; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--brand-deep);
}
.btn-primary:active {
  transform: translate(8px, 8px);
  box-shadow: 0 0 0 var(--brand-deep);
}
.btn-secondary {
  background: transparent;
  color: var(--paper);
  border: 2px solid var(--paper);
}
.btn-secondary.dark {
  color: var(--brand);
  border-color: var(--brand);
}
.btn-secondary:hover { background: var(--paper); color: var(--brand); }
.btn-ghost {
  background: transparent;
  color: var(--brand);
  padding: 10px 14px;
  font-weight: 600;
}

/* ====== NAV ====== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--brand);
  color: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { height: 48px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 14px; opacity: .85; transition: opacity .15s; }
.nav-links a:hover { opacity: 1; }
.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 700;
}
.lang-toggle button {
  padding: 6px 12px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  letter-spacing: .05em;
}
.lang-toggle button.active { background: var(--paper); color: var(--brand); }
.nav-cta { background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 14px; }
@media (max-width: 820px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ====== HERO ====== */
.hero {
  background: var(--brand);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(242,133,59,.18), transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(247,198,48,.12), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(46,168,75,.25); }

.hero h1 { color: var(--paper); }
.hero h1 .accent-word { color: var(--yellow); font-style: italic; }
.hero h1 .underline-word {
  position: relative; display: inline-block;
}
.hero h1 .underline-word::after {
  content: ''; position: absolute; left: 2px; right: 2px; bottom: -4px;
  height: 8px; background: var(--accent); border-radius: 4px; z-index: -1;
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,253,247,.85);
  max-width: 540px;
  margin: 24px 0 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.price-tag {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--brand-deep);
  margin-top: 28px;
}
.price-tag .num { font-size: 32px; }
.price-tag .label { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.price-tag .strike { font-family: var(--font-sans); font-size: 14px; text-decoration: line-through; opacity: .5; font-weight: 600; }

.hero-trust { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; font-size: 13px; color: rgba(255,253,247,.75); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: '✓'; color: var(--green); font-weight: 900; }

/* HERO ILLUSTRATION SCENE */
.hero-scene {
  position: relative;
  aspect-ratio: 1/1.05;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.scene-blob {
  position: absolute;
  inset: 8% 4% 4% 8%;
  background: radial-gradient(circle at 60% 40%, rgba(247,198,48,.22), rgba(242,133,59,.08) 60%, transparent 75%);
  filter: blur(2px);
  border-radius: 50% 60% 55% 40% / 55% 45% 60% 40%;
  z-index: 0;
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: visible;
  z-index: 1;
}
.hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.35));
}
.hero-scene-photo .hero-photo-frame img {
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.4)) drop-shadow(0 8px 16px rgba(0,0,0,.18));
}
.scene-dots {
  position: absolute;
  top: 4%; right: 4%;
  width: 90px; height: 90px;
  background-image: radial-gradient(circle, rgba(255,253,247,.4) 1.5px, transparent 2px);
  background-size: 14px 14px;
  z-index: 0;
}

.rating-badge {
  position: absolute;
  bottom: 2%; right: 4%;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  z-index: 3;
}
.rating-num { font-family: var(--font-display); font-weight: 800; font-size: 28px; line-height: 1; color: var(--brand); }
.rating-stars { color: #F7C630; font-size: 12px; letter-spacing: 2px; margin: 4px 0 2px; }
.rating-label { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.dashboard-card { z-index: 3; }
.dashboard-card {
  position: absolute;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 4px 12px rgba(0,0,0,.15);
  padding: 16px;
  font-family: var(--font-sans);
  color: var(--ink);
}
.dashboard-card .dc-header { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 10px; }
.dashboard-card .dc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.dashboard-card .dc-value { font-family: var(--font-display); font-weight: 900; font-size: 28px; line-height: 1; color: var(--brand); }
.dashboard-card .dc-delta { font-size: 12px; color: var(--green); font-weight: 700; margin-top: 4px; }

/* ====== SECTIONS ====== */
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-head p { color: var(--ink-3); font-size: 18px; margin: 16px 0 0; }

/* ====== INCLUDES (Qué incluye) ====== */
.includes {
  background: var(--paper-2);
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.include-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--linea);
  transition: transform .2s, box-shadow .2s;
}
.include-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20,40,138,.1);
}
.include-card .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--brand);
  color: var(--paper);
  margin-bottom: 16px;
}
.include-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 19px; margin: 0 0 8px; }
.include-card p { color: var(--ink-3); font-size: 14px; line-height: 1.55; margin: 0; }

/* ====== DEMOS ====== */
.demos { background: var(--brand-deep); color: var(--paper); }
.demos .section-head h2 { color: var(--paper); }
.demos .section-head p { color: rgba(255,253,247,.7); }
.demos .eyebrow { color: var(--yellow); }
.demos .eyebrow::before { background: var(--yellow); }

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.phone {
  background: #111;
  border-radius: 32px;
  padding: 8px;
  aspect-ratio: 9/19;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.phone:hover { transform: translateY(-8px) rotate(-1deg); }
.phone::before {
  content: ''; position: absolute; top: 14px; left: 50%;
  width: 42px; height: 6px; background: #000; border-radius: 3px;
  transform: translateX(-50%); z-index: 2;
}
.phone-screen {
  border-radius: 26px;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.phone-label {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,253,247,.85);
}
.phone-label .cat { display: block; font-size: 11px; color: rgba(255,253,247,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }

/* mock storefront content inside phone */
.mock {
  height: 100%; display: flex; flex-direction: column;
  font-family: var(--font-sans);
  color: var(--ink);
}
.mock-header { padding: 22px 10px 6px; font-size: 9px; font-weight: 800; letter-spacing: .08em; display: flex; align-items: center; gap: 6px; }
.mock-banner { height: 60px; margin: 4px 8px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 14px; text-align: center; padding: 6px; }
.mock-section-label { padding: 8px 10px 4px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 4px 8px; flex: 1; min-height: 0; }
.mock-tile { border-radius: 6px; aspect-ratio: 1; position: relative; overflow: hidden; }
.mock-tile::after {
  content: attr(data-emoji);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 26px;
}
.mock-tile-price {
  position: absolute; bottom: 4px; right: 4px;
  background: rgba(255,253,247,.95);
  font-size: 9px; font-weight: 800;
  padding: 2px 5px; border-radius: 4px;
  z-index: 1;
}
.mock-cta { margin: 6px 8px; padding: 8px; border-radius: 6px; text-align: center; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.mock-nav { display: flex; gap: 10px; padding: 6px 16px 12px; justify-content: space-around; border-top: 1px solid rgba(0,0,0,.05); }
.mock-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: #ddd; }

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--paper); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi {
  background: var(--paper);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--linea);
  position: relative;
}
.testi .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 20px;
}
.testi .stars { color: var(--yellow); margin-bottom: 12px; font-size: 16px; letter-spacing: 2px; }
.testi-foot { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-meta { font-size: 12px; color: var(--ink-3); }

/* ====== FAQ ====== */
.faq { background: var(--paper-2); border-top: 1px solid var(--linea); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--linea);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none;
  padding: 22px 24px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q .icon { width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: var(--paper); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s; font-weight: 700; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ====== CONTACT FORM ====== */
.contact { background: var(--brand); color: var(--paper); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(247,198,48,.12), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(215,38,61,.18), transparent 40%);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; position: relative; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact h2 { color: var(--paper); }
.contact-lead { color: rgba(255,253,247,.8); font-size: 18px; line-height: 1.6; margin: 20px 0 28px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.contact-info a { display: flex; align-items: center; gap: 12px; color: rgba(255,253,247,.85); }
.contact-info a:hover { color: var(--yellow); }
.contact-info .ico { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; }

.form-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 36px;
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.form-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 24px; margin: 0 0 6px; }
.form-card .sub { color: var(--ink-3); font-size: 14px; margin: 0 0 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--linea);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(20,40,138,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-card .legal { font-size: 11px; color: var(--ink-3); text-align: center; margin-top: 14px; }
.form-success { text-align: center; padding: 30px 0; }
.form-success .check { width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; margin: 0 auto 16px; font-size: 32px; font-weight: 900; }

/* ====== FOOTER ====== */
.footer { background: var(--brand-deep); color: rgba(255,253,247,.7); padding: 56px 0 28px; }
.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
  align-items: start;
}
@media (max-width: 720px) { .footer-row { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; line-height: 1.6; margin: 0; max-width: 360px; }
.footer-logo { height: 44px; margin-bottom: 16px; display: block; }
.footer-contact {
  display: flex; flex-direction: column; gap: 10px; font-size: 14px;
}
.footer-contact a { color: rgba(255,253,247,.85); transition: color .15s; }
.footer-contact a:hover { color: var(--yellow); }
.footer-pay-link {
  margin-top: 8px;
  display: inline-block;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}
.footer-pay-link:hover { background: var(--accent-hover); color: #fff !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a:hover { color: var(--yellow); }

/* ====== CONTACT — 2 CTA cards ====== */
.cta-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1000px;
  margin: 56px auto 0;
}
@media (max-width: 820px) {
  .cta-pair { grid-template-columns: 1fr; gap: 18px; }
}
.cta-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.32), 0 6px 16px rgba(0, 0, 0, 0.12);
}
.cta-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.08;
  transform: translate(40%, -40%);
  background: var(--accent);
}
.cta-pay::after { background: var(--accent); }
.cta-wa::after { background: #25D366; }

.cta-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
  box-shadow: 0 6px 16px rgba(215, 38, 61, 0.3);
}
.wa-badge {
  background: #25D366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}
.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .02em;
}
.cta-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.03em;
  margin: 2px 0 4px;
}
.cta-price.wa-num {
  font-size: 30px;
  color: #1B7E3D;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}
.cta-note {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}
.cta-button {
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .15s;
}
.cta-card:hover .cta-button { background: var(--accent-hover); }
.wa-button {
  background: #25D366;
}
.cta-card:hover .wa-button { background: #1FB85A; }

.cta-or {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.4);
  position: relative;
}
.cta-or span {
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.15);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: rgba(255, 253, 247, 0.7);
}
@media (max-width: 820px) {
  .cta-or { padding: 0; }
}
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 100;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.2);
}
.wa-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ====== BOLD VARIANT OVERRIDES ====== */
[data-variant="bold"] .hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
}
[data-variant="bold"] .hero h1 .accent-word { color: var(--hot); font-style: normal; }
[data-variant="bold"] .hero h1 .underline-word::after { background: var(--hot); height: 12px; }
[data-variant="bold"] .price-tag { background: var(--accent); color: #fff; transform: rotate(-3deg) scale(1.1); }
[data-variant="bold"] .price-tag .strike { color: rgba(255,255,255,.6); }
[data-variant="bold"] .hero-eyebrow { background: var(--hot); border-color: var(--hot); color: #fff; }

/* AI badge floating */
.ai-badge {
  position: absolute;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.ai-badge .sparkle { color: var(--accent); font-size: 14px; }

/* sparkle pulse */
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: .85; } }
.pulse { animation: pulse 2.4s ease-in-out infinite; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-a { animation: float 4s ease-in-out infinite; }
.float-b { animation: float 5s ease-in-out infinite; animation-delay: .8s; }
.float-c { animation: float 6s ease-in-out infinite; animation-delay: 1.4s; }

/* ====== CLIENTS MARQUEE (real photos strip) ====== */
.avatar-row {
  background: #FFFFFF;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--linea);
  overflow: hidden;
}
.avatar-caption {
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 500;
}
.avatar-caption strong { color: var(--ink); font-weight: 700; }

.clients-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.clients-track {
  display: flex;
  width: max-content;
  animation: clients-scroll 80s linear infinite;
}
.clients-track img {
  display: block;
  height: 96px;
  width: auto;
  flex-shrink: 0;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== LOGO MARQUEE ====== */
.marquee-section {
  background: #FFFFFF;
  padding: 64px 0;
  border-bottom: 1px solid var(--linea);
}
.marquee-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track.reverse { animation-direction: reverse; animation-duration: 50s; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 28px)); }
}
.logo-chip {
  flex-shrink: 0;
  height: 96px;
  padding: 14px 24px;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
}
.logo-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 40, 138, 0.08);
}
.logo-chip img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* ====== SHOWCASE MARQUEE (real Shopify sites) ====== */
.showcase {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
}
.showcase-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.showcase-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 90s linear infinite;
  padding: 24px 0;
}
.showcase:hover .showcase-track { animation-play-state: paused; }

.store-card {
  flex-shrink: 0;
  width: 260px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease;
}
.store-card:hover {
  transform: translateY(-6px);
}
.store-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--linea);
  box-shadow: 0 16px 40px rgba(20, 40, 138, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow .25s ease;
}
.store-card:hover .store-thumb {
  box-shadow: 0 24px 60px rgba(20, 40, 138, 0.22), 0 6px 14px rgba(0, 0, 0, 0.08);
}
.store-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.store-meta {
  text-align: center;
  padding: 0 4px;
}
.store-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.store-cat {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
