/* =========================================================
   TIENDALINK — Sitio comercial
   Design system
   ========================================================= */
:root {
  /* Brand */
  --green-50:  #ECFDF3;
  --green-100: #D1FADF;
  --green-200: #A6F4C5;
  --green-400: #32D583;
  --green-500: #16A34A;     /* primary brand */
  --green-600: #0F8A3F;
  --green-700: #0B6B31;
  --wa-green:  #25D366;

  /* Neutrals (warm) */
  --ink-900: #0B0F0E;
  --ink-800: #14191A;
  --ink-700: #2A2F2D;
  --ink-600: #4B524F;
  --ink-500: #6B736F;
  --ink-400: #9AA09C;
  --ink-300: #C7CCC7;
  --ink-200: #E4E7E2;
  --ink-100: #EFF1EC;
  --bg:      #FAFAF7;
  --bg-soft: #F4F5F0;
  --white:   #FFFFFF;

  --line:    #E8E9E5;
  --line-2:  #DEDFD9;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-disp: "Inter Tight", "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11,15,14,.04);
  --shadow-sm: 0 2px 6px rgba(11,15,14,.05), 0 1px 2px rgba(11,15,14,.04);
  --shadow-md: 0 8px 24px -8px rgba(11,15,14,.10), 0 2px 6px rgba(11,15,14,.05);
  --shadow-lg: 0 24px 60px -16px rgba(11,15,14,.18), 0 8px 24px -8px rgba(11,15,14,.10);
  --shadow-glow: 0 12px 40px -12px rgba(22,163,74,.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
body.nav-open { overflow: hidden; }

.display,
.h2,
.dash-body .dash-title {
  text-wrap: balance;
}
.hero-copy,
.hero-mock,
.mock-card,
.feat-copy,
.feat-art,
.dash-main,
.faq-head,
.faq-list,
.plan,
.cta-inner,
.footer-grid > *,
.dashboard > * {
  min-width: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

.muted { color: var(--ink-500); }
.link { color: var(--green-600); font-weight: 500; }
.link:hover { color: var(--green-700); }
.mono { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-500); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn .ico { width: 16px; height: 16px; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-primary {
  background: var(--ink-900);
  color: var(--white);
}
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.nav .btn-ghost {
  background: rgba(255,255,255,.06);
  color: white;
  border-color: rgba(255,255,255,.16);
}
.nav .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.nav .btn-primary {
  background: var(--green-500); color: white;
}
.nav .btn-primary:hover { background: var(--green-600); }

.btn-block { display: flex; justify-content: center; width: 100%; }

.btn-ghost {
  background: var(--white);
  color: var(--ink-900);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--line-2); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled {
  background: rgba(11,15,14,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-icon { height: 44px; width: auto; display: block; }
.brand-word { font-family: var(--font-disp); font-weight: 600; font-size: 26px; letter-spacing: -.02em; color: rgba(255,255,255,.78); line-height: 1; }
.brand-word b { color: white; font-weight: 700; }
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; color: rgba(255,255,255,.78);
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:hover { color: white; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center; color: white;
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 960px) {
  .nav {
    background: rgba(11,15,14,.86);
    border-bottom-color: rgba(255,255,255,.08);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
  }
  .nav-inner {
    height: auto;
    min-height: 84px;
    padding: 18px 0;
    flex-wrap: wrap;
    position: relative;
  }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(11,15,14,.96);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav.nav-open .nav-menu { display: flex; }
  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: white;
  }
  .nav-links a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-cta .btn,
  .nav-cta .btn-ghost {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 30px 0 130px;
  overflow: hidden;
  background: var(--ink-900);
  color: var(--ink-100);
  margin-top: -84px;
  padding-top: 114px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(900px 520px at 78% 18%, rgba(22,163,74,.40), transparent 65%),
    radial-gradient(700px 400px at 12% 90%, rgba(22,163,74,.18), transparent 70%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: auto, auto, 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
}

.hero-logo {
  display: inline-flex; align-items: center; gap: 18px;
  margin: 0 0 30px;
}
.hero-logo-icon { height: 96px; width: auto; display: block; }
.hero-logo-word { font-family: var(--font-disp); font-weight: 600; font-size: 64px; letter-spacing: -.025em; color: rgba(255,255,255,.82); line-height: 1; }
.hero-logo-word b { color: white; font-weight: 700; }
@media (max-width: 720px) {
  .hero-logo-icon { height: 68px; }
  .hero-logo-word { font-size: 44px; }
  .hero-logo { gap: 14px; margin-bottom: 22px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
}

.display {
  font-family: var(--font-disp);
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 18px 0 18px;
  color: white;
}
.display-accent {
  background: linear-gradient(95deg, var(--green-400), #7CE2A6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: rgba(255,255,255,.72);
  max-width: 540px;
  margin: 0 0 30px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero .btn-primary {
  background: var(--green-500);
  color: white;
}
.hero .btn-primary:hover { background: var(--green-600); }
.hero .btn-ghost {
  background: rgba(255,255,255,.06);
  color: white;
  border-color: rgba(255,255,255,.18);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); }

.hero-bullets {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.65);
}
.hero-bullets li { display: inline-flex; align-items: center; gap: 6px; }
.hero-bullets svg { width: 14px; height: 14px; color: var(--green-400); }

/* Hero mockup */
.hero-mock {
  position: relative;
  perspective: 1200px;
}

.browser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #FF5F57; }
.dot-y { background: #FEBC2E; }
.dot-g { background: #28C840; }
.browser-url {
  flex: 1;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--ink-500);
  font-family: var(--font-mono);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.browser-url svg { width: 12px; height: 12px; }
.browser-url b { color: var(--ink-900); font-weight: 500; }

.browser-body { padding: 18px; }

.store-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.store-brand { display: flex; align-items: center; gap: 12px; }
.store-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #F4D8B0, #C8855E);
  color: white; font-weight: 700; font-size: 16px;
  display: grid; place-items: center;
}
.store-avatar.sm { width: 28px; height: 28px; font-size: 12px; }
.store-name { font-weight: 600; font-size: 14px; }
.store-meta { font-size: 11.5px; color: var(--ink-500); }
.store-cart {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--ink-700);
}
.store-cart svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--green-500); color: white;
  font-size: 10px; font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--white);
}
.store-cats {
  display: flex; gap: 8px; padding: 14px 0;
  font-size: 12.5px;
  overflow: hidden;
}
.cat {
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-600);
  background: var(--white);
  flex: 0 0 auto;
}
.cat-on { background: var(--ink-900); color: white; border-color: var(--ink-900); }
.store-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.prod {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px;
}
.prod-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #C49A6B, #6B3E1A);
}
.prod-img-2 { background: linear-gradient(135deg, #F2A6B5, #C03250); }
.prod-img-3 { background: linear-gradient(135deg, #E8C28C, #8A5F2B); }
.prod-img-4 { background: linear-gradient(135deg, #6B3E1A, #2E1A0B); }
.prod-tag {
  position: absolute; top: 8px; left: 8px;
  background: var(--ink-900); color: white;
  font-size: 10px; font-weight: 600;
  padding: 3px 7px; border-radius: 4px;
}
.prod-name { font-size: 12.5px; font-weight: 500; margin-bottom: 4px; color: var(--ink-800); }
.prod-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px;
}
.prod-row b { font-weight: 600; }
.prod-row s { color: var(--ink-400); font-size: 11px; margin-left: 4px; }
.add-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-500); color: white;
  border: none; font-weight: 600; line-height: 1;
}
.add-btn:hover { background: var(--green-600); }

/* WhatsApp float */
.wa-float {
  position: absolute;
  right: -10px; bottom: -40px;
  width: 270px;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: rotate(2deg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}
.wa-head {
  display: flex; align-items: center; gap: 10px;
  background: #075E54;
  color: white;
  padding: 10px 12px;
}
.wa-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--wa-green);
  display: grid; place-items: center;
}
.wa-avatar svg { width: 18px; height: 18px; }
.wa-name { font-size: 13px; font-weight: 600; }
.wa-status { font-size: 10.5px; opacity: .8; }
.wa-body {
  background: #ECE5DD;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.wa-bubble {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  max-width: 85%;
  line-height: 1.4;
}
.wa-in { background: white; align-self: flex-start; border-top-left-radius: 2px; }
.wa-out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 2px; }
.wa-order { width: 100%; max-width: 100%; }
.wa-order-title { font-weight: 700; margin-bottom: 6px; color: var(--green-700); }
.wa-order-row {
  display: flex; justify-content: space-between;
  font-size: 11.5px; color: var(--ink-700);
  padding: 2px 0;
}
.wa-order-total {
  margin-top: 4px; padding-top: 4px;
  border-top: 1px dashed var(--ink-300);
  font-weight: 700; color: var(--ink-900);
}
.wa-order-meta {
  margin-top: 6px;
  font-size: 10.5px; color: var(--ink-500);
}

@media (max-width: 1020px) {
  .browser { transform: none; }
  .wa-float { right: 10px; bottom: -30px; }
}
@media (max-width: 560px) {
  .wa-float { width: 220px; right: -10px; bottom: -20px; transform: rotate(2deg) scale(.9); transform-origin: right bottom; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: var(--ink-900);
  color: var(--ink-100);
}
.section-head { text-align: center; margin-bottom: 56px; }
.kicker {
  display: inline-block;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}
.kicker-light { color: var(--green-400); }
.h2 {
  font-family: var(--font-disp);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
.h2.light { color: var(--white); }
.h2 .muted { color: var(--ink-400); }
.section-dark .h2 .muted { color: var(--ink-500); }
.h3 {
  font-family: var(--font-disp);
  font-size: 24px;
  letter-spacing: -.015em;
  font-weight: 600;
  margin: 0 0 10px;
}

/* =========================================================
   BENEFICIOS
   ========================================================= */
.bene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.bene {
  background: var(--white);
  padding: 30px 28px;
}
.bene-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-600);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.bene-ico svg { width: 22px; height: 22px; }
.bene h3 {
  font-family: var(--font-disp);
  font-size: 16.5px; font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.bene p { margin: 0; font-size: 14px; color: var(--ink-500); line-height: 1.5; }

@media (max-width: 1020px) { .bene-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bene-grid { grid-template-columns: 1fr; } }

/* =========================================================
   COMO FUNCIONA (dark)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 26px 24px 0;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-400);
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-disp);
  font-size: 19px; font-weight: 600;
  color: white; margin: 0 0 8px;
  letter-spacing: -.01em;
}
.step p {
  font-size: 13.5px; color: var(--ink-400);
  line-height: 1.55; margin: 0 0 22px;
}
.step-art {
  margin: 0 -24px;
  height: 110px;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.mini-input {
  background: white; color: var(--ink-700);
  font-size: 12px; font-family: var(--font-mono);
  padding: 8px 12px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: var(--shadow-md);
}
.mini-input b { color: var(--green-600); }
.mini-check { color: var(--green-500); margin-left: 6px; }
.mini-prod {
  background: white;
  border-radius: 8px; padding: 6px;
  display: flex; align-items: center; gap: 8px;
  flex: 1; max-width: 90px;
  box-shadow: var(--shadow-sm);
}
.mini-thumb {
  width: 22px; height: 22px; border-radius: 5px;
  background: linear-gradient(135deg, #C49A6B, #6B3E1A);
  flex-shrink: 0;
}
.mini-thumb-2 { background: linear-gradient(135deg, #F2A6B5, #C03250); }
.mini-thumb-3 { background: linear-gradient(135deg, #E8C28C, #8A5F2B); }
.mini-lines { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.mini-lines span { height: 4px; background: var(--ink-200); border-radius: 2px; }
.mini-lines span:last-child { width: 60%; background: var(--green-500); }
.step-art-2 { gap: 6px; }
.share-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--ink-700);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-family: var(--font-mono);
  box-shadow: var(--shadow-md);
}
.share-pill svg { width: 14px; height: 14px; color: var(--green-500); }
.mini-wa {
  display: flex; flex-direction: column; gap: 5px;
  align-items: stretch; width: 100%; max-width: 180px;
}
.mini-wa-bubble {
  background: white;
  font-size: 11.5px;
  color: var(--ink-700);
  padding: 6px 10px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
  max-width: 80%;
}
.mini-wa-out {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-left-radius: 8px;
  border-top-right-radius: 2px;
}

@media (max-width: 1020px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   MOCKUPS
   ========================================================= */
.mock-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.mock-card-wide { margin-bottom: 24px; }
.mock-tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--ink-500);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  z-index: 2;
}
.mock-row {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
@media (max-width: 1020px) { .mock-row { grid-template-columns: 1fr; } }

/* Dashboard */
.dashboard {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 30px;
}
.dash-side {
  background: white;
  border-right: 1px solid var(--line);
  padding: 18px 12px;
}
.dash-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 0 8px 18px;
  font-family: var(--font-disp); font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.dash-brand img { width: 22px; height: 22px; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-600);
  cursor: pointer;
}
.dash-nav a svg { width: 16px; height: 16px; }
.dash-nav a:hover { background: var(--bg); }
.dash-nav a.on { background: var(--ink-900); color: white; }
.dash-badge {
  margin-left: auto;
  background: var(--green-500); color: white;
  font-size: 10.5px; font-weight: 600;
  padding: 1px 7px; border-radius: 999px;
}

.dash-main { padding: 22px 26px; }
.dash-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 22px;
}
.dash-eyebrow { font-size: 11.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.dash-title { font-family: var(--font-disp); font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -.015em; }
.dash-actions { display: flex; gap: 10px; align-items: center; }
.dash-search {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--line);
  border-radius: 8px; padding: 7px 12px;
  font-size: 12.5px; color: var(--ink-500);
}
.dash-search svg { width: 14px; height: 14px; }

.dash-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 18px;
}
.kpi {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.kpi-label { font-size: 11.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .04em; }
.kpi-val { font-family: var(--font-disp); font-size: 20px; font-weight: 700; letter-spacing: -.015em; }
.kpi-delta { font-size: 11.5px; font-weight: 600; }
.kpi-delta.up { color: var(--green-600); }
.kpi-delta.down { color: #C03250; }

.dash-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
@media (max-width: 900px) { .dash-row { grid-template-columns: 1fr; } .dash-kpis { grid-template-columns: 1fr 1fr; } }

.dash-chart, .dash-orders {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.chart-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 8px; }
.chart-title { font-family: var(--font-disp); font-size: 22px; font-weight: 700; letter-spacing: -.015em; }
.chart-tabs { display: flex; gap: 4px; font-size: 11.5px; }
.chart-tabs span {
  padding: 4px 10px; border-radius: 6px; color: var(--ink-500);
  background: var(--bg); border: 1px solid transparent;
}
.chart-tabs span.on { background: white; border-color: var(--line); color: var(--ink-900); font-weight: 600; }
.chart-svg { width: 100%; height: 130px; display: block; }
.chart-x {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink-400);
  font-family: var(--font-mono);
  margin-top: 4px;
}

.orders-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.orders-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.orders-list li {
  display: grid; grid-template-columns: 60px 1fr auto auto; gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.orders-list li:last-child { border-bottom: 0; }
.ord-num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-500); }
.ord-name { font-weight: 500; }
.ord-amt { font-weight: 600; font-variant-numeric: tabular-nums; }
.ord-pill { font-size: 11px; padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.ord-new { background: var(--green-50); color: var(--green-700); }
.ord-prep { background: #FEF3D7; color: #8A5F0E; }
.ord-done { background: var(--ink-100); color: var(--ink-600); }

@media (max-width: 720px) {
  .dashboard { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
}

/* Inventory */
.inv {
  background: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 12px 0;
  margin-top: 30px;
}
.inv-head, .inv-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.5fr 1fr;
  gap: 12px;
  padding: 10px 22px;
  align-items: center;
  font-size: 13px;
}
.inv-head {
  font-size: 11.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.inv-row { border-bottom: 1px solid var(--line); }
.inv-row:last-child { border-bottom: 0; }
.inv-prod { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.inv-thumb { width: 28px; height: 28px; border-radius: 6px; background: linear-gradient(135deg, #C49A6B, #6B3E1A); flex-shrink: 0; }
.inv-thumb-2 { background: linear-gradient(135deg, #F2A6B5, #C03250); }
.inv-thumb-3 { background: linear-gradient(135deg, #E8C28C, #8A5F2B); }
.inv-thumb-4 { background: linear-gradient(135deg, #6B3E1A, #2E1A0B); }
.inv-thumb-5 { background: linear-gradient(135deg, #FFE08A, #C68F00); }
.stock-bar {
  display: inline-block; width: 80px; height: 6px;
  background: var(--ink-200); border-radius: 999px;
  overflow: hidden;
  vertical-align: middle; margin-right: 8px;
}
.stock-bar i {
  display: block; height: 100%;
  background: var(--green-500); border-radius: 999px;
}
.stock-bar.low i { background: #E08A1F; }

/* Phone */
.mock-card-phone {
  display: flex; flex-direction: column; align-items: center;
  padding: 30px 24px;
  background: linear-gradient(180deg, var(--bg-soft), var(--white));
}
.phone {
  width: 250px;
  background: var(--ink-900);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.05);
  position: relative;
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 18px; background: var(--ink-900);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ph-status {
  display: flex; justify-content: space-between;
  font-size: 10px; padding: 28px 16px 6px;
  font-weight: 600;
  font-family: var(--font-mono);
}
.ph-icons { letter-spacing: 1px; color: var(--ink-700); font-size: 8px; }
.ph-store-top {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.ph-store-name { font-weight: 600; font-size: 13px; flex: 1; }
.ph-cart-mini {
  background: var(--ink-900); color: white;
  font-size: 11px; font-weight: 600;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
}
.ph-banner {
  margin: 12px 14px 8px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  display: flex; align-items: center;
  padding: 0 18px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font-disp);
  line-height: 1.2;
}
.ph-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 8px 14px;
}
.ph-prod {
  background: var(--bg);
  border-radius: 10px; padding: 6px;
  font-size: 11px;
}
.ph-img { aspect-ratio: 1; border-radius: 7px; margin-bottom: 5px; background: linear-gradient(135deg, #C49A6B, #6B3E1A); }
.ph-img-2 { background: linear-gradient(135deg, #F2A6B5, #C03250); }
.ph-img-3 { background: linear-gradient(135deg, #E8C28C, #8A5F2B); }
.ph-img-4 { background: linear-gradient(135deg, #6B3E1A, #2E1A0B); }
.ph-name { font-weight: 500; color: var(--ink-800); font-size: 11px; }
.ph-price { font-weight: 600; font-size: 11px; }
.ph-wa {
  margin: 12px 14px 16px;
  background: var(--wa-green); color: white;
  border: none; border-radius: 12px;
  padding: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 12.5px;
  box-shadow: 0 8px 20px -8px rgba(37,211,102,.6);
}
.ph-wa svg { width: 16px; height: 16px; }

/* =========================================================
   FUNCIONALIDADES (alternating)
   ========================================================= */
.feat {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.feat:first-of-type { border-top: 0; }
.feat-rev .feat-copy { order: 2; }
.feat-rev .feat-art { order: 1; }
@media (max-width: 1020px) {
  .feat { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .feat-rev .feat-copy { order: 1; }
  .feat-rev .feat-art { order: 2; }
}
.feat-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.feat-copy .h3 { font-size: clamp(24px, 2.4vw, 32px); }
.feat-copy p { font-size: 16px; color: var(--ink-600); margin: 12px 0 18px; line-height: 1.6; max-width: 480px; }
.feat-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px; color: var(--ink-700);
}
.feat-list li { display: flex; align-items: center; gap: 10px; }
.feat-list li::before {
  content: ""; width: 18px; height: 18px;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}

.feat-art {
  background: linear-gradient(180deg, var(--bg-soft), var(--white));
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.art-card {
  background: white; border-radius: var(--r-md);
  border: 1px solid var(--line); overflow: hidden;
}
.art-row {
  display: grid; grid-template-columns: 2fr 1.2fr 70px;
  gap: 12px; padding: 12px 16px;
  font-size: 13.5px; align-items: center;
  border-bottom: 1px solid var(--line);
}
.art-row:last-child { border-bottom: 0; }
.art-row span:first-child { display: flex; align-items: center; gap: 10px; }
.art-row-head {
  background: var(--bg);
  font-size: 11.5px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: .04em;
  font-weight: 600;
}
.art-thumb {
  display: inline-block; width: 26px; height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5B7BC2, #1E3A8A);
}
.art-thumb-2 { background: linear-gradient(135deg, #4B4F6B, #1A1B2E); }
.art-thumb-3 { background: linear-gradient(135deg, #2A2A2A, #000); }
.art-thumb-4 { background: linear-gradient(135deg, #E8C28C, #8A5F2B); }
.art-row b { font-weight: 600; }
.art-row b.warn { color: #C03250; }

.art-chat { display: flex; flex-direction: column; gap: 10px; }
.art-chat .wa-bubble { font-size: 13.5px; padding: 12px 14px; }
.art-chat .wa-order-row { font-size: 13px; }

.coupon-stack { display: flex; flex-direction: column; gap: 14px; }
.coupon {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  position: relative;
}
.coupon::before, .coupon::after {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  background: var(--bg-soft);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.coupon::before { left: -9px; box-shadow: inset -1px 0 0 var(--line); }
.coupon::after { right: -9px; box-shadow: inset 1px 0 0 var(--line); }
.coupon-2 { background: var(--green-50); border-color: var(--green-100); }
.coupon-tag {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-500); letter-spacing: .08em;
  display: block; margin-bottom: 2px;
}
.coupon-code { font-family: var(--font-disp); font-weight: 700; font-size: 18px; letter-spacing: .03em; }
.coupon-meta { font-size: 12px; color: var(--ink-500); }
.coupon-r {
  font-family: var(--font-disp);
  font-weight: 700; font-size: 22px;
  color: var(--green-600);
}
.recovery-card {
  background: var(--ink-900); color: white;
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.rec-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(50,213,131,.2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(50,213,131,.2); }
  50% { box-shadow: 0 0 0 8px rgba(50,213,131,.05); }
}
.rec-title { font-weight: 600; font-size: 14px; }
.rec-sub { font-size: 12.5px; color: var(--ink-400); }

/* =========================================================
   PLANES
   ========================================================= */
/* New dashboard (matches real product) */
.dash-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 6px 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.dash-brand-ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1.5px solid var(--green-200);
  display: grid; place-items: center;
}
.dash-brand-ico img { width: 22px; height: 22px; }
.dash-brand-name { font-family: var(--font-disp); font-weight: 700; font-size: 14px; line-height: 1.1; }
.dash-brand-pill {
  display: inline-block; margin-top: 3px;
  font-size: 10.5px; color: var(--ink-600);
  background: var(--bg); border: 1px solid var(--line);
  padding: 1px 8px; border-radius: 999px;
}
.dash-section {
  font-size: 10.5px; font-weight: 600;
  color: var(--ink-400);
  text-transform: uppercase; letter-spacing: .08em;
  padding: 12px 12px 6px;
}
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  background: white;
  border-bottom: 1px solid var(--line);
}
.dash-tb-left, .dash-tb-right { display: flex; align-items: center; gap: 10px; }
.dash-tb-burger {
  width: 32px; height: 32px;
  border: 1px solid var(--line); border-radius: 8px;
  display: grid; place-items: center; color: var(--ink-600);
}
.dash-tb-burger svg { width: 16px; height: 16px; }
.dash-tb-brand {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1.5px solid var(--green-200);
  display: grid; place-items: center;
}
.dash-tb-brand img { width: 18px; height: 18px; }
.dash-tb-name { font-family: var(--font-disp); font-weight: 700; font-size: 13px; line-height: 1.1; }
.dash-tb-store { font-size: 10.5px; color: var(--ink-500); }
.dash-tb-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-600);
}
.dash-tb-icon svg { width: 14px; height: 14px; }
.dash-tb-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 6px 10px; font-size: 12px; color: var(--ink-700);
}
.dash-tb-pill svg { width: 13px; height: 13px; color: var(--green-600); }
.dash-tb-user {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--ink-700);
  padding: 0 6px;
}
.dash-tb-user svg { width: 12px; height: 12px; }
.dash-tb-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink-300); display: inline-block;
  position: relative;
}
.dash-tb-dot::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: white;
  box-shadow: inset 0 -2px 0 var(--ink-300);
}
.dash-body { padding: 26px 30px; }
.dash-bc { font-size: 11.5px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; }
.dash-body .dash-title { font-family: var(--font-disp); font-size: 26px; font-weight: 700; margin: 6px 0 6px; letter-spacing: -.015em; }
.dash-sub { font-size: 13.5px; color: var(--ink-500); margin: 0 0 22px; max-width: 580px; }

.dash-filters {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 18px;
}
.filt-head { font-family: var(--font-disp); font-size: 16px; font-weight: 700; margin-bottom: 14px; letter-spacing: -.01em; }
.filt-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.filt-row label span { font-size: 11.5px; color: var(--ink-500); display: block; margin-bottom: 4px; }
.filt-input {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 12px;
  font-size: 13px; color: var(--ink-800);
}
.filt-input svg { width: 14px; height: 14px; color: var(--ink-500); }
.filt-actions { display: flex; gap: 8px; margin-bottom: 14px; }
.btn-mini {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--line);
  border-radius: 8px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-700);
}
.btn-mini svg { width: 13px; height: 13px; }
.btn-mini-pri { background: var(--green-500); color: white; border-color: var(--green-500); }
.filt-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 10px; font-size: 11.5px;
  background: white;
}
.chip i { font-style: normal; color: var(--ink-500); }
.chip b { background: var(--green-50); color: var(--green-700); padding: 2px 8px; border-radius: 999px; font-weight: 600; }

.dash-kpis-real { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.kpi-real {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink-300);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.kpi-purple { border-left-color: #8B5CF6; }
.kpi-green { border-left-color: var(--green-500); }
.kpi-orange { border-left-color: #F59E0B; }
.kpi-real .kpi-label { font-size: 11px; font-weight: 600; color: var(--ink-500); text-transform: uppercase; letter-spacing: .05em; }
.kpi-real .kpi-val { font-family: var(--font-disp); font-size: 28px; font-weight: 700; letter-spacing: -.015em; }
.kpi-real .kpi-delta { display: inline-block; align-self: flex-start; font-size: 11.5px; font-weight: 600; padding: 2px 8px; border-radius: 999px; }
.kpi-real .kpi-delta.neutral { background: #DBEAFE; color: #1D4ED8; }
.kpi-real .kpi-delta.up { background: var(--green-50); color: var(--green-700); }
.kpi-real .kpi-delta.down { background: #FEE2E2; color: #B91C1C; }

@media (max-width: 900px) {
  .filt-row { grid-template-columns: 1fr; }
  .dash-kpis-real { grid-template-columns: 1fr; }
}

/* Inventory pill + sub */
.inv-row .inv-prod b { font-weight: 600; display: block; line-height: 1.2; }
.inv-row .inv-sub { font-size: 11.5px; color: var(--ink-500); }
.st-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600; }
.st-on { background: var(--green-50); color: var(--green-700); }
.st-off { background: var(--ink-100); color: var(--ink-600); }

/* Single plan */
.plans.plans-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  margin: 0 auto;
}
.plan-solo { transform: none; padding: 44px 40px; }
.plan-solo .plan-price .amt { font-size: 56px; }
.plan-solo .plan-price { flex-wrap: nowrap; }
.plan-solo .plan-price .per { white-space: nowrap; }
.plan-feats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
@media (max-width: 600px) { .plan-feats-grid { grid-template-columns: 1fr; } }
.plan-note { font-size: 12.5px; color: var(--ink-400); margin-top: -8px; text-align: center; }
.plan-best .plan-note { color: var(--ink-400); }

.cta-actions { display: flex; justify-content: center; margin-bottom: 22px; }

/* Legacy (kept for any leftover refs) */
.bill-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-top: 28px;
  box-shadow: var(--shadow-xs);
}
.bill-toggle button {
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-600);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.bill-toggle button.on { background: var(--ink-900); color: white; }
.save {
  background: var(--green-100); color: var(--green-700);
  font-size: 11px; padding: 1px 7px; border-radius: 4px; font-weight: 600;
}
.bill-toggle button.on .save { background: var(--green-400); color: var(--ink-900); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1020px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.plan-best {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: white;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plan-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green-500); color: white;
  font-size: 11.5px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase;
}
.plan-head h3 { font-family: var(--font-disp); font-size: 20px; font-weight: 700; margin: 0 0 4px; letter-spacing: -.01em; }
.plan-head p { margin: 0; font-size: 13.5px; color: var(--ink-500); }
.plan-best .plan-head p { color: var(--ink-400); }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-disp);
}
.plan-price .cur { font-size: 18px; font-weight: 600; color: var(--ink-500); }
.plan-best .plan-price .cur { color: var(--ink-400); }
.plan-price .amt { font-size: 44px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.plan-price .per { font-size: 13.5px; color: var(--ink-500); margin-left: 6px; }
.plan-best .plan-price .per { color: var(--ink-400); }
.plan-best .btn-primary { background: var(--green-500); }
.plan-best .btn-primary:hover { background: var(--green-600); }
.plan-best .btn-ghost { background: rgba(255,255,255,.06); color: white; border-color: rgba(255,255,255,.16); }
.plan-feats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.plan-best .plan-feats { border-top-color: rgba(255,255,255,.1); }
.plan-feats li { display: flex; align-items: center; gap: 10px; }
.plan-feats li::before {
  content: ""; width: 16px; height: 16px;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.plan-best .plan-feats li::before { background: var(--green-400); }

.landing-plans {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}
.landing-plan { min-height: 680px; padding: 36px 34px; }
.landing-plan .plan-price { margin-top: 4px; }
.landing-plan .plan-feats { flex: 1; }
.landing-plan-basic {
  background: linear-gradient(145deg, #ffffff 0%, #f7fcf9 62%, #edf9f1 100%);
  border: 1px solid #b9dfc6;
  box-shadow: 0 18px 45px rgba(18, 82, 47, .09);
}
.landing-plan-basic-flag {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 6px 12px;
  border: 1px solid #b9dfc6;
  border-radius: 999px;
  background: #ecf9f0;
  color: #15723b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.landing-plan-basic .plan-price {
  margin-inline: -10px;
  padding: 17px 18px;
  border: 1px solid #d7ebdd;
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
}
.landing-plan-basic .landing-plan-action {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: white;
}
.landing-plan-basic .landing-plan-action:hover {
  background: var(--green-700);
  border-color: var(--green-700);
}
.landing-plan-includes {
  margin: 0 0 -6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
}
.plan-best .landing-plan-includes { color: var(--ink-300); }
.landing-plan .plan-feats li { align-items: flex-start; line-height: 1.4; }
.landing-plan .plan-feats li::before { margin-top: 2px; }
.landing-plan .plan-feats li > span { display: flex; flex-direction: column; gap: 3px; }
.landing-plan .plan-feats strong { font-size: 14px; font-weight: 500; }
.landing-plan .plan-feats small { color: var(--ink-500); font-size: 12.5px; line-height: 1.45; }
.plan-best .plan-feats small { color: var(--ink-400); }
.landing-plan-coming-soon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(63, 211, 124, .24);
  border-radius: 14px;
  background: rgba(63, 211, 124, .08);
}
.landing-plan-coming-soon strong { color: var(--green-400); font-size: 13px; }
.landing-plan-coming-soon span { color: var(--ink-400); font-size: 12.5px; line-height: 1.45; }
.landing-plan-action { width: 100%; text-align: center; justify-content: center; }
.landing-plan-placeholder { min-height: 220px; justify-content: center; text-align: center; }
.landing-plans-note {
  margin: 24px auto 0;
  color: var(--ink-500);
  text-align: center;
  font-size: 13.5px;
}
.plan-feats li.is-unavailable { color: var(--ink-500); }
.plan-feats li.is-unavailable::before {
  background: #d97706;
  -webkit-mask: none;
  mask: none;
  width: 14px;
  height: 2px;
  margin: 7px 1px;
}
@media (max-width: 1020px) {
  .landing-plans { max-width: 520px; }
  .landing-plan { min-height: auto; padding: 32px 26px; }
  .landing-plan.plan-best { transform: none; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
}
@media (max-width: 1020px) { .faq-wrap { grid-template-columns: 1fr; gap: 30px; } }
.faq-head { text-align: left; }
.faq-head .h2 { margin: 8px 0 14px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ico {
  width: 18px; height: 18px;
  position: relative; flex-shrink: 0;
}
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: var(--ink-500);
  border-radius: 2px;
  transition: transform .25s;
}
.faq-ico::after { transform: rotate(90deg); }
.faq-item[open] .faq-ico::after { transform: rotate(0); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--ink-600);
  font-size: 14.5px;
  line-height: 1.6;
}

/* =========================================================
   CONTACTO
   ========================================================= */
.contact-section {
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(22,163,74,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.contact-wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: start;
}
.contact-copy {
  position: sticky;
  top: 108px;
}
.contact-copy .h2 {
  margin: 8px 0 14px;
}
.contact-copy p {
  margin: 0 0 24px;
  max-width: 480px;
  font-size: 15.5px;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-700);
}
.contact-point-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green-600);
  box-shadow: var(--shadow-xs);
}
.contact-point-ico svg {
  width: 18px;
  height: 18px;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-700);
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.contact-mail svg {
  width: 16px;
  height: 16px;
}
.contact-links a[href*="wa.me"],
.contact-meta a[href*="wa.me"] {
  font-size: 0;
  line-height: 0;
}
.contact-whatsapp {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.24);
  color: var(--wa-green);
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-whatsapp:hover {
  transform: translateY(-1px);
  background: rgba(37,211,102,.16);
  box-shadow: var(--shadow-sm);
}
.contact-whatsapp:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37,211,102,.18);
}
.contact-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.contact-meta .contact-whatsapp {
  margin-left: 10px;
  vertical-align: middle;
}
.contact-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--r-2xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink-900);
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(22,163,74,.42);
  box-shadow: 0 0 0 4px rgba(22,163,74,.10);
}
.form-field textarea {
  min-height: 150px;
}
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
}
.contact-actions .btn {
  min-width: 220px;
  justify-content: center;
}
.contact-meta {
  margin: 0;
  font-size: 13px;
  color: var(--ink-500);
}
.contact-meta a {
  color: var(--green-700);
  font-weight: 600;
}
.contact-status {
  margin: 0;
  min-height: 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-600);
}
.contact-status.is-success { color: var(--green-700); }
.contact-status.is-error { color: #B91C1C; }
.contact-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final { padding: 40px 0 100px; }
.cta-card {
  position: relative;
  background: var(--ink-900);
  border-radius: var(--r-2xl);
  padding: 80px 60px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(700px 350px at 50% 100%, rgba(22,163,74,.30), transparent 70%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: auto, 22px 22px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner p { color: var(--ink-400); margin: 14px 0 28px; font-size: 16.5px; }
.cta-form {
  display: flex; gap: 8px; max-width: 460px; margin: 0 auto 22px;
  background: rgba(255,255,255,.06);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
}
.cta-form input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: white; padding: 0 18px;
  font-size: 14.5px; font-family: var(--font-sans);
}
.cta-form input::placeholder { color: var(--ink-400); }
.cta-form .btn-primary { background: var(--green-500); }
.cta-form .btn-primary:hover { background: var(--green-600); }
.cta-bullets {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-400);
}
@media (max-width: 720px) {
  .cta-card { padding: 50px 24px; }
  .cta-form { flex-direction: column; border-radius: var(--r-md); padding: 8px; }
  .cta-form input { padding: 10px 14px; }
}

@media (max-width: 960px) {
  .hero { padding-bottom: 110px; }
  .hero-inner { gap: 38px; }
  .browser { transform: none; }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-copy {
    position: static;
  }
  .dash-topbar,
  .dash-tb-left,
  .dash-tb-right,
  .orders-head,
  .chart-head,
  .filt-actions {
    flex-wrap: wrap;
  }
  .dash-tb-right { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 40px; }
  .hero {
    padding: 24px 0 88px;
    margin-top: -84px;
    padding-top: 112px;
  }
  .display {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.04;
  }
  .lede {
    max-width: none;
    margin-bottom: 24px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-bullets { gap: 10px 18px; }
  .browser-body { padding: 14px; }
  .store-grid { gap: 10px; }
  .wa-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 240px);
    margin: -34px 0 0 auto;
    animation: none;
  }
  .mock-card { padding: 16px; }
  .mock-tag {
    top: 14px;
    left: 14px;
  }
  .dash-main,
  .dash-body { padding: 18px 16px; }
  .dash-body .dash-title { font-size: 24px; }
  .dash-filters { padding: 16px; }
  .dash-tb-pill,
  .dash-tb-user { display: none; }
  .inv {
    background: transparent;
    border: 0;
    padding: 0;
  }
  .inv-head { display: none; }
  .inv-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .inv-row:last-child { margin-bottom: 0; }
  .inv-row > :not(.inv-prod) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .inv-row > :not(.inv-prod)::before {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-500);
  }
  .inv-row > :nth-child(2)::before { content: "Categoría"; }
  .inv-row > :nth-child(3)::before { content: "Stock"; }
  .inv-row > :nth-child(4)::before { content: "Estado"; }
  .stock-bar {
    width: 96px;
    margin-right: 0;
  }
  .feat {
    gap: 30px;
    padding: 40px 0;
  }
  .feat-art { padding: 18px; }
  .coupon {
    flex-direction: column;
    align-items: flex-start;
  }
  .coupon-r { align-self: flex-end; }
  .contact-card {
    padding: 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .btn { white-space: normal; }
  .brand { min-width: 0; }
  .brand-word { font-size: 24px; }
  .hero-logo {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-logo-icon { height: 60px; }
  .hero-logo-word { font-size: 40px; }
  .eyebrow {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
  }
  .store-top {
    gap: 10px;
    align-items: flex-start;
  }
  .store-cats {
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .store-cats::-webkit-scrollbar { display: none; }
  .store-grid { grid-template-columns: 1fr; }
  .wa-float {
    width: min(84%, 220px);
    margin-top: -24px;
  }
  .h2 { font-size: clamp(28px, 9vw, 36px); }
  .step {
    padding: 22px 20px 0;
  }
  .step-art { margin: 0 -20px; }
  .mock-card-phone { padding: 24px 18px; }
  .phone { width: min(100%, 250px); }
  .art-row {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) 54px;
    gap: 8px;
    padding: 12px;
    font-size: 12.5px;
  }
  .art-row span:first-child,
  .art-row span:nth-child(2) {
    overflow-wrap: anywhere;
  }
  .mini-input,
  .share-pill {
    width: 100%;
    justify-content: center;
  }
  .recovery-card { align-items: flex-start; }
  .plan-solo { padding: 40px 22px 28px; }
  .plan-solo .plan-price .amt { font-size: 48px; }
  .contact-copy p {
    font-size: 15px;
  }
  .contact-card {
    padding: 18px;
    border-radius: var(--r-xl);
  }
  .form-field input,
  .form-field textarea {
    padding: 13px 14px;
    border-radius: 12px;
  }
  .faq-item summary {
    padding: 16px 18px;
    gap: 16px;
    font-size: 15px;
  }
  .faq-body { padding: 0 18px 18px; }
  .cta-card { padding: 42px 20px; }
  .whatsapp-fab {
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 420px) {
  .nav-inner { gap: 14px; }
  .brand-word { font-size: 21px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-soft); padding: 70px 0 30px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.foot-brand { max-width: 280px; }
.foot-logo { height: 28px; margin-bottom: 14px; }
.foot-brand p { font-size: 14px; color: var(--ink-500); line-height: 1.55; margin: 0 0 16px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-600);
  display: grid; place-items: center;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.foot-social a:hover { color: var(--green-600); border-color: var(--green-200); }
.foot-social svg { width: 16px; height: 16px; }
.foot-col h5 {
  font-family: var(--font-disp);
  font-size: 13px; font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -.005em;
}
.foot-col a {
  display: block;
  font-size: 13.5px; color: var(--ink-500);
  padding: 5px 0;
  cursor: pointer;
}
.foot-col a:hover { color: var(--ink-900); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12.5px; color: var(--ink-500);
  flex-wrap: wrap; gap: 10px;
}
.foot-heart { color: var(--green-500); }

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wa-green);
  color: white;
  box-shadow: 0 18px 40px -18px rgba(37,211,102,.85), 0 10px 24px -12px rgba(11,15,14,.45);
  z-index: 90;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.03);
  background: #20bd5a;
  box-shadow: 0 24px 44px -18px rgba(37,211,102,.95), 0 14px 30px -16px rgba(11,15,14,.5);
}
.whatsapp-fab:focus-visible {
  outline: 3px solid rgba(37,211,102,.28);
  outline-offset: 4px;
}
.whatsapp-fab svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

/* =========================================================
   REDISEÑO COMERCIAL — objetivo único: crear la tienda
   ========================================================= */
[hidden] { display: none !important; }

/* Hero: título, texto de apoyo y nota */
.hero .display { font-size: clamp(34px, 3.9vw, 50px); }
.browser { color: var(--ink-900); }

/* Hero: texto de apoyo + nota */
.hero-support {
  list-style: none; padding: 0;
  margin: 26px 0 26px;
  display: flex; gap: 10px 22px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.72);
}
.hero-support li { display: inline-flex; align-items: center; gap: 7px; }
.hero-support svg { width: 15px; height: 15px; color: var(--green-400); flex-shrink: 0; }
.hero-note { font-size: 13px; color: rgba(255,255,255,.55); margin: 16px 0 0; }

/* Hero: empezar escribiendo el nombre de la tienda */
.hero-start {
  display: flex; align-items: stretch; gap: 10px;
  flex-wrap: wrap;
  max-width: 560px;
}
.hero-start-field {
  flex: 1 1 300px; min-width: 0;
  display: flex; align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 0 10px 0 18px;
  transition: border-color .2s ease, background .2s ease;
  cursor: text;
}
.hero-start-field:focus-within {
  border-color: var(--green-400);
  background: rgba(255,255,255,.1);
}
.hero-start-prefix {
  font-family: var(--font-mono); font-size: 13px;
  color: rgba(255,255,255,.48);
  white-space: nowrap;
}
.hero-start input {
  flex: 1; min-width: 50px; width: 100%;
  background: transparent; border: none; outline: none;
  color: white;
  font-family: var(--font-mono); font-size: 13px;
  padding: 14px 4px;
}
.hero-start input::placeholder { color: rgba(255,255,255,.34); }
.hero-start .btn { flex: 0 0 auto; }
@media (max-width: 720px) {
  .hero-start { flex-direction: column; max-width: none; }
  .hero-start-field { flex: 0 0 auto; width: 100%; }
  .hero-start .btn { width: 100%; justify-content: center; }
}

/* Cómo funciona: la duda antes del paso */
.step-pain {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin: 0 0 10px;
  line-height: 1.45;
}

/* =========================================================
   OBJECIONES (antes del precio)
   ========================================================= */
.objections { max-width: 1000px; margin: 0 auto 76px; }
.objections-title {
  font-family: var(--font-disp);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700; letter-spacing: -.02em;
  text-align: center; margin: 0 0 34px;
}
.objections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .objections-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 520px) { .objections-grid { grid-template-columns: 1fr; } }
.objection-ico {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--green-50); color: var(--green-600);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.objection-ico svg { width: 19px; height: 19px; }
.objection h3 {
  font-family: var(--font-disp);
  font-size: 15.5px; font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.objection p { margin: 0; font-size: 14px; color: var(--ink-500); line-height: 1.5; }
.hero-mock .browser { transform: rotateY(-3deg) rotateX(2deg); }

/* CTA repetido debajo de secciones */
.section-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-top: 52px; text-align: center;
}
.section-cta .section-cta-lead {
  font-family: var(--font-disp);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700; letter-spacing: -.015em;
  color: var(--ink-900);
  margin: 0 0 4px;
}
.section-cta .cta-sub { font-size: 13px; color: var(--ink-500); margin: 0; }
.section-dark .section-cta .cta-sub { color: var(--ink-400); }
.section-dark .section-cta .btn-primary { background: var(--green-500); color: white; }
.section-dark .section-cta .btn-primary:hover { background: var(--green-600); }

/* =========================================================
   NEGOCIOS REALES
   ========================================================= */
.stores { padding: 88px 0; }
.stores-head { text-align: center; margin-bottom: 44px; }
.stores-head .h2 { font-size: clamp(26px, 2.6vw, 36px); }
.stores-head p { color: var(--ink-500); font-size: 15.5px; margin: 12px 0 0; }
.stores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}
.stores-grid .store-card { flex: 1 1 150px; max-width: 210px; }
@media (max-width: 560px) {
  .stores-grid .store-card { flex: 1 1 130px; }
}
.store-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px 12px;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.store-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.store-logo {
  width: 78px; height: 78px; border-radius: 16px;
  object-fit: cover;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.store-logo-fallback {
  width: 78px; height: 78px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700);
  border: 1px solid var(--green-100);
  font-family: var(--font-disp); font-weight: 700; font-size: 28px;
  letter-spacing: -.02em;
}
.store-card-name {
  font-family: var(--font-disp);
  font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  line-height: 1.25;
}
.store-card-link {
  font-size: 12.5px; color: var(--ink-500);
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: auto;
  transition: color .2s ease;
}
.store-card-link svg { width: 13px; height: 13px; }
.store-card:hover .store-card-link { color: var(--green-600); }

/* =========================================================
   BENEFICIOS (4 conceptos)
   ========================================================= */
.bene-grid-4 { grid-template-columns: repeat(4, 1fr); }
.bene-grid-4 .bene { padding: 36px 30px; }
.bene-verb {
  font-family: var(--font-disp);
  font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 10px;
}
.bene-grid-4 .bene p { font-size: 15px; color: var(--ink-600); line-height: 1.55; }
@media (max-width: 1020px) { .bene-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bene-grid-4 { grid-template-columns: 1fr; } }

/* =========================================================
   CÓMO FUNCIONA (3 pasos + listo)
   ========================================================= */
.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps-3 { grid-template-columns: 1fr; } }
.steps-done {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(50,213,131,.28);
  border-radius: var(--r-xl);
  padding: 26px 28px;
  color: white; text-align: center;
  font-family: var(--font-disp);
  font-weight: 700; font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: -.015em;
}
.done-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-500);
  display: grid; place-items: center; flex-shrink: 0;
}
.done-ico svg { width: 19px; height: 19px; color: white; }

/* =========================================================
   MOSTRAR EL PRODUCTO — carrito / checkout
   ========================================================= */
.mock-card-cart { display: flex; flex-direction: column; }
.cart-mock {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 30px;
}
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 600; font-size: 14px;
}
.cart-head span { font-size: 12px; color: var(--ink-500); font-weight: 500; }
.cart-items { padding: 2px 18px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: 0; }
.cart-thumb {
  width: 46px; height: 46px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, #C49A6B, #6B3E1A);
}
.cart-thumb-2 { background: linear-gradient(135deg, #F2A6B5, #C03250); }
.cart-thumb-3 { background: linear-gradient(135deg, #E8C28C, #8A5F2B); }
.cart-item-copy { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 500; font-size: 13.5px; line-height: 1.3; }
.cart-item-sub { font-size: 11.5px; color: var(--ink-500); }
.cart-item-price { font-weight: 600; font-size: 13.5px; font-variant-numeric: tabular-nums; }
.cart-totals {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
}
.cart-total-row { display: flex; justify-content: space-between; color: var(--ink-600); }
.cart-total-row.is-total { color: var(--ink-900); font-weight: 700; font-size: 15.5px; font-family: var(--font-disp); }
.cart-pay { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 12px; }
.cart-pay-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); font-weight: 600; }
.pay-methods { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 9px;
  padding: 8px 12px; font-size: 12px; color: var(--ink-700);
  background: white;
}
.pay-chip svg { width: 14px; height: 14px; color: var(--ink-500); }
.pay-chip.on { border-color: var(--green-500); background: var(--green-50); color: var(--green-700); font-weight: 600; }
.pay-chip.on svg { color: var(--green-600); }
.cart-btn {
  background: var(--ink-900); color: white;
  border: none; border-radius: 11px;
  padding: 13px; font-weight: 600; font-size: 13.5px;
  text-align: center;
}

/* Fila de teléfonos con capturas reales */
.phones-card {
  padding: 26px 24px 34px;
  background: linear-gradient(180deg, var(--bg-soft), var(--white));
}
.phones-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; justify-items: center;
  max-width: 880px; margin: 30px auto 0;
}
.phone-item {
  margin: 0; display: flex; flex-direction: column;
  align-items: center; gap: 16px; width: 100%;
}
.phones-row .phone { width: 100%; max-width: 248px; }
.phone-item figcaption { font-size: 13.5px; color: var(--ink-600); text-align: center; }
.phone-item figcaption b { color: var(--green-600); font-weight: 700; }
@media (max-width: 760px) { .phones-row { grid-template-columns: 1fr; gap: 34px; } }

/* Capturas reales dentro de los marcos */
.mock-card .browser { transform: none; box-shadow: none; margin-top: 30px; }
.browser-shot img { display: block; width: 100%; height: auto; }
.phone-screen-shot { padding: 0; }
.phone-screen-shot img { display: block; width: 100%; height: auto; }
.mock-card-phone .phone { width: 300px; }

/* Integraciones de cobro (réplica del panel) */
.integrations-card { padding: 18px; }
.integrations {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px 34px 26px;
  margin-top: 30px;
}
.integ-head { margin-bottom: 18px; }
.integ-head .dash-title { margin: 6px 0 6px; }
.integ-head .dash-sub { margin: 0; max-width: 620px; }
.integ-tabs {
  display: flex; gap: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.integ-tab {
  font-size: 13.5px; font-weight: 600; color: var(--ink-500);
  padding: 0 2px 10px;
}
.integ-tab.is-on {
  color: var(--green-700);
  box-shadow: inset 0 -2px 0 var(--green-500);
}
.integ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.integ-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 22px 22px;
}
.integ-logo { height: 34px; display: flex; align-items: center; margin-bottom: 14px; }
.logo-mp {
  font-family: var(--font-disp);
  font-weight: 700; font-size: 13px; line-height: 1.05;
  color: #2C2E82; letter-spacing: -.01em;
}
.logo-chyta {
  font-family: var(--font-disp);
  font-weight: 700; font-size: 19px;
  color: #12324F; letter-spacing: -.02em;
}
.logo-uala {
  font-family: var(--font-disp);
  font-weight: 700; font-size: 21px;
  color: #1B3DE5; letter-spacing: -.03em;
}
.logo-uala b { color: #FF4E6B; font-weight: 700; }
.integ-card h4 {
  font-family: var(--font-disp);
  font-size: 15.5px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 7px;
}
.integ-card p { margin: 0; font-size: 13.5px; color: var(--ink-500); line-height: 1.5; }
.integ-note { text-align: center; font-size: 13px; color: var(--ink-400); margin: 22px 0 4px; }
@media (max-width: 860px) {
  .integrations { padding: 24px 18px 20px; }
  .integ-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FUNCIONALIDADES (grid compacta)
   ========================================================= */
.func-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1020px) { .func-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .func-grid { grid-template-columns: 1fr; } }
.func-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px 24px;
}
.func-card h3 {
  font-family: var(--font-disp);
  font-size: 15.5px; font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 11px;
}
.func-ico {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--green-50); color: var(--green-600);
  display: grid; place-items: center; flex-shrink: 0;
}
.func-ico svg { width: 17px; height: 17px; }
.func-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
  font-size: 13.5px; color: var(--ink-600);
}
.func-card li { position: relative; padding-left: 24px; line-height: 1.45; }
.func-card li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 15px; height: 15px;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.func-card li i { font-style: normal; color: var(--ink-900); }

/* =========================================================
   PRECIO
   ========================================================= */
.price-card {
  position: relative;
  max-width: 900px; margin: 0 auto;
  background: var(--ink-900);
  border-radius: var(--r-2xl);
  padding: 60px 52px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-inner { position: relative; z-index: 1; }
.price-flag {
  display: inline-block;
  background: var(--green-500); color: white;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.price-title {
  font-family: var(--font-disp);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700; letter-spacing: -.025em;
  line-height: 1.08; color: white; margin: 0;
}
.price-title .amount { color: var(--green-400); white-space: nowrap; }
.price-sub { color: var(--ink-400); font-size: 16px; margin: 16px 0 0; }
.price-feats {
  list-style: none; margin: 34px auto 0; padding: 30px 0 0;
  max-width: 640px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px 30px;
  text-align: left;
  font-size: 14.5px; color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.1);
}
.price-feats li { position: relative; padding-left: 27px; line-height: 1.4; }
.price-feats li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 17px; height: 17px;
  background: var(--green-400);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.price-trial {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px 12px; margin: 36px 0 24px;
}
.price-trial span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px; font-weight: 500;
}
.price-trial b { font-weight: 700; }
.price-card .btn-primary { background: var(--green-500); color: white; }
.price-card .btn-primary:hover { background: var(--green-600); }
.price-note { font-size: 13px; color: var(--ink-400); margin: 16px 0 0; }
@media (max-width: 720px) {
  .price-card { padding: 44px 24px; }
  .price-feats { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACTO (secundario)
   ========================================================= */
.contact-section .h2 { font-size: clamp(26px, 2.6vw, 34px); }

/* CTA final */
.cta-inner .cta-lede { color: var(--ink-400); margin: 16px 0 32px; font-size: 17px; }
.cta-final .btn-primary { background: var(--green-500); color: white; }
.cta-final .btn-primary:hover { background: var(--green-600); }
.cta-final .btn-xl { padding: 17px 34px; font-size: 16.5px; }
