/* ============================================================
   CuboPOS — Sitio de marketing
   Sistema visual basado en la marca: teal #59bbaa, morado #672f6e,
   ink #0e1729, Gotham (sustituto web: Montserrat).
   ============================================================ */
:root {
  --teal: #59bbaa;
  --teal-d: #3f9c8d;
  --teal-dd: #2c7568;
  --teal-soft: #e9f6f3;
  --teal-glow: rgba(89,187,170,.35);
  --morado: #672f6e;
  --morado-d: #4a2050;
  --morado-soft: #f1e9f2;
  --morado-light: #c9a4dc;
  --morado-mid: #8c4f93;
  --ink: #0e1729;
  --ink-2: #1b2740;
  --ink-soft: #374052;
  --muted: #6b7686;
  --muted-2: #9aa3b2;
  --surface: #ffffff;
  --surface-alt: #f6f8fb;
  --surface-alt2: #eef2f7;
  --border: #e1e7ef;
  --border-2: #d4dbe5;
  --amber: #f0a830;
  --star: #f5b945;

  --r-pill: 999px;
  --r-btn: 10px;
  --r-card: 16px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14,23,41,.05), 0 1px 1px rgba(14,23,41,.04);
  --shadow: 0 4px 12px -2px rgba(14,23,41,.08), 0 2px 6px -2px rgba(14,23,41,.05);
  --shadow-md: 0 14px 34px -10px rgba(14,23,41,.16), 0 4px 12px -4px rgba(14,23,41,.08);
  --shadow-lg: 0 40px 90px -30px rgba(14,23,41,.4), 0 12px 32px -12px rgba(14,23,41,.18);
  --shadow-teal: 0 14px 30px -10px rgba(89,187,170,.55);

  --container: 1180px;
  /* Tipografía estilo Apple: SF Pro en dispositivos Apple, Gotham/Montserrat de respaldo */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", 'Gotham', 'Montserrat', system-ui, sans-serif;
  --ease-apple: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  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-family: inherit; cursor: pointer; }
::selection { background: var(--teal-glow); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---------- Tipografía utilitaria ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dd);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--teal); }
.eyebrow.center::before { display: none; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.025em; font-weight: 700; }
.h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -.035em; }
.h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.03em; }
.h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -.02em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-soft); line-height: 1.5; font-weight: 400; letter-spacing: -.01em; }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .h2 { margin-top: 16px; }
.section-head.center { max-width: 760px; }
.section-head p { margin-top: 16px; }
.grad-text { background: linear-gradient(105deg, var(--teal-d), var(--morado)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 50px; padding: 0 26px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px; border: 1.5px solid transparent; letter-spacing: -.01em;
  transition: transform .25s var(--ease-apple), box-shadow .25s var(--ease-apple), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: linear-gradient(120deg, var(--morado), var(--teal-d)); color: #fff; box-shadow: 0 14px 30px -10px rgba(103,47,110,.5); }
.btn-primary:hover { background: linear-gradient(120deg, var(--morado-d), var(--teal-dd)); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-outline { background: #fff; border-color: var(--border-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dd); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--teal-dd); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { height: 56px; padding: 0 30px; font-size: 16px; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.hdr.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.hdr-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand .logo { width: 34px; height: 34px; flex: 0 0 auto; }
.brand .logo-img { height: 40px; width: auto; display: block; }
.footer .brand .logo-img { height: 42px; }
.brand b { font-weight: 800; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a { padding: 9px 14px; border-radius: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: .14s; }
.nav a:hover { background: var(--surface-alt); color: var(--ink); }
.hdr-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hdr-login { font-size: 14.5px; font-weight: 700; color: var(--ink); padding: 9px 12px; }
.hdr-login:hover { color: var(--teal-dd); }
.hdr-burger {
  display: none; position: relative; width: 46px; height: 46px; border: 1px solid var(--border);
  border-radius: var(--r-pill); background: #fff; align-items: center; justify-content: center;
  z-index: 70; transition: background .25s var(--ease-apple), border-color .25s, transform .2s var(--ease-apple);
}
.hdr-burger:active { transform: scale(.92); }
.hdr-burger .dots { display: grid; grid-template-columns: repeat(2, 5px); gap: 4px; }
.hdr-burger .dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); transition: transform .4s var(--ease-apple), opacity .3s, background .25s; }
body.menu-open .hdr-burger { background: var(--ink); border-color: var(--ink); }
body.menu-open .hdr-burger .dots i { background: #fff; }
/* los 4 puntos colapsan al centro y forman una X */
body.menu-open .hdr-burger .dots i:nth-child(1) { transform: translate(4.5px, 4.5px); }
body.menu-open .hdr-burger .dots i:nth-child(2) { transform: translate(-4.5px, 4.5px); }
body.menu-open .hdr-burger .dots i:nth-child(3) { transform: translate(4.5px, -4.5px); }
body.menu-open .hdr-burger .dots i:nth-child(4) { transform: translate(-4.5px, -4.5px); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-shader { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .5; }
.hero-wash { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg, var(--surface) 18%, rgba(255,255,255,.55) 42%, rgba(255,255,255,.08) 70%); }
.hero > .container { position: relative; z-index: 2; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; top: -240px; right: -180px; width: 720px; height: 720px;
  background: radial-gradient(circle, var(--teal-glow), transparent 62%); filter: blur(8px);
}
.hero-bg::after {
  content: ''; position: absolute; top: -120px; left: -160px; width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(103,47,110,.16), transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.hero-inner { display: grid; grid-template-columns: 1.06fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 8px 7px 14px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px;
}
.hero-badge .tag { background: var(--teal-soft); color: var(--teal-dd); font-weight: 800; font-size: 11.5px; padding: 3px 9px; border-radius: var(--r-pill); }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--teal); flex: 0 0 auto; }

/* hero visual */
.hero-visual { position: relative; }
.browser {
  border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: var(--surface-alt); border-bottom: 1px solid var(--border); }
.browser-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border-2); }
.browser-dot:nth-child(1){ background:#ff5f57; } .browser-dot:nth-child(2){ background:#febc2e; } .browser-dot:nth-child(3){ background:#28c840; }
.browser-url { margin-left: 10px; flex: 1; height: 26px; border-radius: 7px; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; padding: 0 12px; font-size: 12px; color: var(--muted); font-weight: 600; }
.browser-url svg { width: 13px; height: 13px; margin-right: 7px; color: var(--teal); }
.hero-shot { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10.4; object-fit: cover; object-position: top center; }

/* Ticket de venta — pieza de marca distintiva del hero */
.hero-ticket {
  position: absolute; left: -42px; bottom: 8%; width: 218px; z-index: 3;
  filter: drop-shadow(0 22px 38px rgba(14,23,41,.20));
  animation: floaty 5.4s ease-in-out infinite;
}
.hero-ticket-card { position: relative; background: #fff; border-radius: 13px 13px 0 0; padding: 14px 16px 16px; font-variant-numeric: tabular-nums; }
.hero-ticket-card::after {
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 9px;
  background: linear-gradient(45deg, #fff 6px, transparent 0) 0 0, linear-gradient(-45deg, #fff 6px, transparent 0) 6px 0;
  background-size: 12px 9px; background-repeat: repeat-x;
}
.ht-head { display: flex; align-items: center; gap: 8px; padding-bottom: 11px; margin-bottom: 11px; border-bottom: 1px dashed var(--border-2); }
.ht-cube { width: 22px; height: 22px; flex: 0 0 auto; }
.ht-name { font-size: 12.5px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.ht-live { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--teal-dd); }
.ht-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); animation: htpulse 1.8s ease-in-out infinite; }
@keyframes htpulse { 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }
.ht-line { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 600; color: var(--ink-soft); padding: 3px 0; }
.ht-line span:last-child { font-weight: 700; color: var(--ink); }
.ht-dash { height: 1px; margin: 9px 0; background: repeating-linear-gradient(90deg, var(--border-2) 0 4px, transparent 4px 8px); }
.ht-total { display: flex; justify-content: space-between; align-items: baseline; }
.ht-total > span:first-child { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.ht-amt { font-size: 22px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.ht-paid { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 6px 11px; border-radius: var(--r-pill); background: var(--teal-soft); color: var(--teal-dd); font-size: 11px; font-weight: 800; }
.ht-paid svg { width: 13px; height: 13px; }

/* Chip "en la nube" — segundo acento, forma distinta */
.hero-chip {
  position: absolute; right: -22px; top: 16%; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px 9px 11px;
  background: var(--ink); color: #fff; border-radius: var(--r-pill);
  box-shadow: 0 16px 30px -12px rgba(14,23,41,.45);
  animation: floaty 6s ease-in-out infinite .7s;
}
.hc-ico { width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; background: rgba(89,187,170,.22); color: var(--teal); }
.hc-ico svg { width: 15px; height: 15px; }
.hc-txt { font-size: 12.5px; font-weight: 700; letter-spacing: -.01em; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-ticket, .hero-chip, .ht-dot { animation: none !important; } }

/* ---------- Logos / trust strip ---------- */
.logos { padding: 38px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-alt); }
.logos-label { text-align: center; font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .03em; margin-bottom: 22px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.logo-slot { width: 150px; height: 46px; border-radius: 8px; opacity: .9; }

/* ---------- Stat band ---------- */
.statband { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.statband::before { content:''; position:absolute; top:-160px; left:50%; transform:translateX(-50%); width:900px; height:380px; background: radial-gradient(circle, rgba(89,187,170,.22), transparent 65%); }
.statband .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .num { font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -.03em; background: linear-gradient(120deg, #fff, var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: 14px; color: #aeb8c9; font-weight: 600; margin-top: 6px; }
.stat .ph { font-size: 11px; color: var(--teal); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-top: 8px; opacity: .8; }

/* ---------- Feature showcase ---------- */
.tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 40px auto 0; }
.tab {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--border); color: var(--ink-soft);
  font-weight: 700; font-size: 14px; transition: .15s;
}
.tab svg { width: 18px; height: 18px; }
.tab:hover { border-color: var(--teal); color: var(--teal-dd); }
.tab.active { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow); }
.tab.active svg { color: var(--teal); }

.showcase { margin-top: 48px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.showcase.rev { grid-template-columns: 1.15fr 1fr; }
.showcase.rev .showcase-text { order: 2; }
.showcase-panel { display: none; }
.showcase-panel.active { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.showcase-text .h2 { margin: 14px 0 16px; }
.feat-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.feat-item { display: flex; gap: 14px; }
.feat-item .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--teal-soft); color: var(--teal-dd); display: grid; place-items: center; flex: 0 0 auto; margin-top: 2px; }
.feat-item .ck svg { width: 16px; height: 16px; }
.feat-item b { font-weight: 700; font-size: 15.5px; }
.feat-item p { font-size: 14px; color: var(--muted); margin-top: 2px; }
.showcase-media { position: relative; }
image-slot { background: var(--surface-alt); }
.media-frame { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); background: var(--surface-alt); }
.media-frame image-slot { width: 100%; height: auto; aspect-ratio: 4 / 3; }
.media-frame .media-img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; display: block; }
.media-badge {
  position: absolute; bottom: 14px; left: 14px; background: #fff; color: var(--ink);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  border-radius: 12px; padding: 8px 15px 8px 8px; display: flex; align-items: center; gap: 11px;
}
.media-badge > svg { width: 34px; height: 34px; padding: 7px; box-sizing: border-box; border-radius: 9px; background: var(--teal-soft); color: var(--teal-dd); flex: 0 0 auto; }
.media-badge .mt b { font-size: 13.5px; display: block; color: var(--ink); font-weight: 800; } .media-badge .mt span { font-size: 11.5px; color: var(--muted); font-weight: 600; }

/* ---------- Giros ---------- */
.giros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.giro {
  display: flex; flex-direction: column; gap: 12px; padding: 22px; border-radius: var(--r-card);
  background: #fff; border: 1px solid var(--border); transition: .18s; position: relative; overflow: hidden;
}
.giro:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.giro .gico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal-dd); }
.giro .gico svg { width: 25px; height: 25px; }
.giro:nth-child(even) .gico { background: var(--morado-soft); color: var(--morado); }
.giro b { font-size: 16px; font-weight: 700; }
.giro p { font-size: 13.5px; color: var(--muted); }

/* ---------- Diferenciadores ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.why {
  padding: 28px; border-radius: var(--r-card); background: #fff; border: 1px solid var(--border);
  transition: .18s;
}
.why:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why .wico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(150deg, var(--teal), var(--teal-d)); color: #fff; box-shadow: var(--shadow-teal); margin-bottom: 18px; }
.why .wico svg { width: 26px; height: 26px; }
.why h3 { font-size: 18px; margin-bottom: 9px; }
.why p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Comparativa ---------- */
.compare { background: var(--surface-alt); }
.ctable { margin-top: 44px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.ctable table { width: 100%; border-collapse: collapse; }
.ctable th, .ctable td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border); }
.ctable thead th { font-size: 13px; }
.ctable thead th:first-child { font-weight: 700; color: var(--muted); }
.ctable .colmain { background: linear-gradient(180deg, var(--teal-soft), #fff); position: relative; }
.ctable th.colmain { color: var(--teal-dd); font-weight: 800; font-size: 16px; }
.ctable th.colother { font-weight: 700; color: var(--ink-soft); text-align: center; }
.ctable td.feat { font-weight: 600; color: var(--ink-soft); font-size: 14.5px; }
.ctable tr.cgroup td { background: var(--surface-alt); color: var(--morado); font-weight: 800; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; padding: 12px 22px; border-bottom: 1px solid var(--border); }
.ctable td.cell { text-align: center; }
.ctable td.colmain { text-align: center; }
.ctable tbody tr:last-child td { border-bottom: none; }
.ctable .yes { color: var(--teal-dd); }
.ctable .no { color: var(--muted-2); }
.ctable .yes svg, .ctable .no svg { width: 22px; height: 22px; }
.ctable .partial { font-size: 13px; color: var(--muted); font-weight: 600; }
.compare-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* ---------- Testimonios ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.tcard { padding: 26px; border-radius: var(--r-card); background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.tstars { display: flex; gap: 2px; margin-bottom: 14px; }
.tstars svg { width: 18px; height: 18px; color: var(--star); }
.tquote { font-size: 15px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.tavatar { width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; font-size: 15px; font-weight: 800; letter-spacing: -.01em; color: #fff; background: linear-gradient(150deg, var(--tone, var(--teal)), color-mix(in srgb, var(--tone, var(--teal)) 62%, #000)); }
.tperson b { font-size: 14.5px; font-weight: 700; display: block; }
.tperson span { font-size: 12.5px; color: var(--muted); }
.tsrc { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--muted-2); }

/* ---------- Precios ---------- */
.pricing { background: var(--surface-alt); }
.bill-toggle { display: inline-flex; align-items: center; gap: 4px; padding: 5px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--border); margin: 28px auto 0; }
.bill-toggle button { padding: 9px 20px; border-radius: var(--r-pill); border: none; background: none; font-weight: 700; font-size: 14px; color: var(--ink-soft); }
.bill-toggle button.active { background: var(--ink); color: #fff; }
.bill-toggle .save { font-size: 11px; color: var(--teal-dd); font-weight: 800; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; position: relative; transition: .18s; }
.plan.feat { border: 2px solid var(--teal); box-shadow: var(--shadow-md); transform: translateY(-8px); }
.plan-tag { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--teal); color: #fff; font-size: 11.5px; font-weight: 800; padding: 5px 16px; border-radius: var(--r-pill); letter-spacing: .02em; box-shadow: var(--shadow-teal); }
.plan-name { font-size: 17px; font-weight: 800; }
.plan-desc { font-size: 13px; color: var(--muted); margin-top: 4px; min-height: 38px; }
.plan-price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.plan-price .cur { font-size: 20px; font-weight: 700; color: var(--ink-soft); }
.plan-price .amt { font-size: 46px; font-weight: 800; letter-spacing: -.03em; }
.plan-price .per { font-size: 14px; color: var(--muted); font-weight: 600; }
.plan-note { font-size: 12.5px; color: var(--muted); margin-bottom: 22px; }
.plan .btn { margin-bottom: 24px; }
.plan-feats { display: flex; flex-direction: column; gap: 13px; }
.plan-feats li { display: flex; gap: 11px; font-size: 14px; color: var(--ink-soft); list-style: none; }
.plan-feats .ck { width: 20px; height: 20px; flex: 0 0 auto; color: var(--teal-dd); margin-top: 1px; }
.plan-feats .ck svg { width: 20px; height: 20px; }
.plan-feats .muted { color: var(--muted-2); }
.guarantee { display: flex; align-items: center; justify-content: center; gap: 11px; margin-top: 34px; font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.guarantee svg { width: 22px; height: 22px; color: var(--teal-dd); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-card); background: #fff; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--teal); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; text-align: left; font-weight: 700; font-size: 16px; color: var(--ink); }
.faq-q .pm { width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%; background: var(--surface-alt); display: grid; place-items: center; transition: .2s; }
.faq-q .pm svg { width: 16px; height: 16px; color: var(--teal-dd); }
.faq-item.open .pm { background: var(--teal); transform: rotate(45deg); }
.faq-item.open .pm svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ---------- CTA final ---------- */
.cta-final { padding: 30px 0 96px; }
.cta-box {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: linear-gradient(125deg, var(--morado-d), var(--morado) 45%, var(--teal-d));
  padding: 72px 40px; text-align: center; color: #fff; box-shadow: var(--shadow-lg);
}
.cta-box::before { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 70%); }
.cta-box > * { position: relative; }
.cta-box .h2 { color: #fff; }
.cta-box p { color: rgba(255,255,255,.85); margin: 16px auto 0; max-width: 540px; font-size: 1.1rem; }
.cta-box .hero-cta { justify-content: center; margin-top: 32px; }
.cta-box .hero-trust { justify-content: center; }
.cta-box .hero-trust-item { color: rgba(255,255,255,.9); }
.cta-box .hero-trust-item svg { color: #fff; }

/* ---------- Footer ---------- */
.footer { position: relative; overflow: hidden; background: var(--ink); color: #aeb8c9; padding: 0 0 0; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), var(--morado), transparent); opacity: .8; }
.footer-glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 360px; background: radial-gradient(circle, rgba(89,187,170,.16), transparent 65%); pointer-events: none; }
.footer .container { position: relative; z-index: 1; }

/* Newsletter */
.footer-news { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-news-copy .h3 { color: #fff; }
.footer-news-copy p { font-size: 14px; color: #97a3b4; margin-top: 7px; max-width: 460px; line-height: 1.55; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; position: relative; }
.news-form input { height: 50px; width: 280px; max-width: 70vw; padding: 0 16px; border-radius: var(--r-btn); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #fff; font: inherit; font-size: 14.5px; outline: none; transition: .15s; }
.news-form input::placeholder { color: #6b7686; }
.news-form input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(89,187,170,.18); background: rgba(255,255,255,.09); }
.news-ok { position: absolute; left: 2px; bottom: -24px; font-size: 12.5px; font-weight: 700; color: var(--teal); opacity: 0; transform: translateY(-4px); transition: .3s var(--ease-apple); pointer-events: none; }
.news-form.sent .news-ok { opacity: 1; transform: none; }

/* Top: marca + columnas */
.footer-top { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 48px; padding: 56px 0 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand-col { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer-brand-col .logo-img { height: 42px; margin-bottom: 0; }
.footer-about { font-size: 14px; line-height: 1.6; max-width: 320px; color: #97a3b4; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: #cdd5e0; padding: 7px 13px; border-radius: var(--r-pill); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.footer-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #41d39a; box-shadow: 0 0 0 3px rgba(65,211,154,.2); }
.footer-byline { display: inline-flex; flex-direction: column; gap: 8px; line-height: 1.2; width: fit-content; }
.footer-byline span { font-size: 11px; font-weight: 600; color: #7e8a99; letter-spacing: .04em; text-transform: uppercase; }
.footer-byline img { width: 76px; height: 76px; display: block; transition: transform .25s var(--ease-apple), filter .25s; filter: drop-shadow(0 6px 16px rgba(40,80,240,.35)); }
.footer-byline:hover img { transform: translateY(-3px) scale(1.03); filter: drop-shadow(0 10px 22px rgba(40,80,240,.5)); }
.footer-parent { color: #cdd5e0; font-weight: 700; transition: color .15s; }
.footer-parent:hover { color: var(--teal); }
.footer-apps { display: flex; gap: 10px; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px 9px 13px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: #fff; transition: .15s; }
.store-btn:hover { background: rgba(89,187,170,.16); border-color: var(--teal); transform: translateY(-2px); }
.store-btn svg { width: 24px; height: 24px; flex: 0 0 auto; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; font-size: 14px; font-weight: 700; }
.store-btn small { font-size: 9.5px; font-weight: 600; color: #97a3b4; letter-spacing: .03em; }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col h4 { color: #fff; font-size: 13.5px; font-weight: 800; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: #97a3b4; transition: .14s; display: inline-flex; align-items: center; }
.footer-col a:hover { color: var(--teal); }
.footer-link-ico svg { width: 15px; height: 15px; margin-right: 7px; color: #41d39a; }

/* Badges de confianza */
.footer-badges { display: flex; flex-wrap: wrap; gap: 12px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.fbadge { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #cdd5e0; }
.fbadge svg { width: 17px; height: 17px; color: var(--teal); flex: 0 0 auto; }
.fbadge + .fbadge { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.1); }

/* Bottom */
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0 30px; flex-wrap: wrap; }
.footer-bottom > p { font-size: 13px; color: #7e8a99; }
.footer-bottom-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 13px; color: #97a3b4; transition: .14s; }
.footer-legal a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #aeb8c9; transition: .15s; }
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .footer-news { flex-direction: column; align-items: flex-start; gap: 18px; }
  .news-form { width: 100%; }
  .news-form input { flex: 1; width: auto; min-width: 0; max-width: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom-right { width: 100%; justify-content: space-between; }
}
@media (max-width: 440px) {
  .footer-cols { grid-template-columns: 1fr; gap: 26px; }
  .footer-apps { flex-direction: column; align-items: stretch; }
  .footer-badges { flex-direction: column; align-items: flex-start; gap: 12px; }
  .fbadge + .fbadge { padding-left: 0; border-left: none; }
}
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Reveal (estilo Apple: fade + subida + escala + desenfoque) ---------- */
.reveal { opacity: 0; transform: translateY(56px) scale(.955); filter: blur(12px); transition: opacity 1s var(--ease-apple), transform 1.15s var(--ease-apple), filter 1s var(--ease-apple); will-change: opacity, transform, filter; }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* Escala ligada al scroll (firma Apple): los mockups crecen al entrar al viewport */
.scroll-scale { transform: scale(var(--ss, .84)); transition: transform .12s linear; transform-origin: center 60%; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .scroll-scale { transform: none !important; }
}

/* ---------- Mobile menu (overlay full-screen estilo Apple) ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 65; display: flex; flex-direction: column;
  padding: 84px 0 28px; overflow-y: auto;
  background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px);
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity .5s var(--ease-apple), transform .5s var(--ease-apple), visibility .5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mm-inner { width: 100%; max-width: 440px; margin: 0 auto; min-height: 100%; padding: 0 26px; display: flex; flex-direction: column; }
.mm-label { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); padding: 0 4px 6px; }
.mm-links { display: flex; flex-direction: column; }
.mobile-menu a.mm-link {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(13px, 3.2vw, 17px) 4px;
  font-size: clamp(20px, 5.6vw, 26px); font-weight: 600; letter-spacing: -.02em; color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.mm-link span { line-height: 1.1; }
.mm-link .mm-chev { width: 20px; height: 20px; flex: 0 0 auto; color: var(--muted-2); transition: transform .25s var(--ease-apple), color .25s; }
.mobile-menu a.mm-link:hover, .mobile-menu a.mm-link:active { color: var(--teal-dd); }
.mobile-menu a.mm-link:hover .mm-chev, .mobile-menu a.mm-link:active .mm-chev { transform: translateX(4px); color: var(--teal); }
.mm-actions { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 11px; }
.mm-foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.mm-contact { display: inline-flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color .15s; }
.mm-contact svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--teal-dd); }
.mm-contact:hover { color: var(--teal-dd); }
body.menu-open { overflow: hidden; }

/* ============================================================
   FX AVANZADOS (impulsados por JS — visibles en cualquier contexto)
   ============================================================ */
/* Barra de progreso de scroll */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 90; background: linear-gradient(90deg, var(--teal), var(--morado)); box-shadow: 0 0 14px var(--teal-glow); pointer-events: none; }

/* Aurora viva del hero */
.aurora { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; will-change: transform; }
.aurora.a1 { width: 540px; height: 540px; background: radial-gradient(circle, var(--teal-glow), transparent 62%); top: -180px; right: -60px; }
.aurora.a2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(103,47,110,.24), transparent 62%); top: 30px; left: -150px; }

/* Revelado palabra por palabra */
.word { display: inline-block; will-change: transform, opacity, filter; }

/* Mockup del hero con tilt 3D */
.hero-mockup { transform: perspective(1100px) scale(.9); will-change: transform; transform-origin: center 55%; }

/* Glow tipo spotlight que sigue al cursor en tarjetas */
.spotlight { position: relative; isolation: isolate; }
.spotlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: 0; pointer-events: none;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), var(--teal-soft), transparent 60%);
  opacity: var(--sp, 0); transition: opacity .35s var(--ease-apple);
}
.spotlight > * { position: relative; z-index: 1; }

/* Parallax por capas */
[data-parallax] { will-change: transform; }
.has-px { position: relative; overflow: hidden; }
.has-px > .container { position: relative; z-index: 2; }
.px-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; z-index: 0; will-change: transform; }
.px-blob.teal { background: radial-gradient(circle, var(--teal-glow), transparent 62%); }
.px-blob.violet { background: radial-gradient(circle, rgba(103,47,110,.20), transparent 62%); }
@media (prefers-reduced-motion: reduce) { [data-parallax] { transform: none !important; } }

/* Scrollytelling pinned (estilo Apple) */
.scrolly { position: relative; height: 320vh; background: var(--surface); content-visibility: auto; contain-intrinsic-size: 320vh; }
.scrolly-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 0 24px; }
.scrolly-head { text-align: center; margin-bottom: 30px; z-index: 3; }
.scrolly-head .h2 { margin-top: 14px; }
.scrolly-stage { position: relative; width: min(880px, 92vw); height: min(560px, 60vh); }
.scrolly-shot { position: absolute; inset: 0; opacity: 0; will-change: transform, opacity; }
.scrolly-frame { width: 100%; height: 100%; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--surface-alt); }
.scrolly-frame image-slot { width: 100%; height: 100%; }
.scrolly-frame .scrolly-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.scrolly-tag { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: var(--r-pill); background: rgba(14,23,41,.9); color: #fff; font-weight: 700; font-size: 15px; backdrop-filter: blur(8px); box-shadow: var(--shadow-md); white-space: nowrap; }
.scrolly-tag svg { width: 20px; height: 20px; color: var(--teal); }
.scrolly-dots { display: flex; gap: 9px; margin-top: 30px; z-index: 3; }
.scrolly-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); transition: width .3s var(--ease-apple), background .3s; }
.scrolly-dots span.on { width: 26px; background: var(--teal); }
@media (max-width: 560px) { .scrolly { height: 300vh; } .scrolly-tag { font-size: 13px; padding: 10px 16px; } }

/* Ticker de giros — etiquetas de precio estilo retail (lenguaje propio) */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-alt); padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-item { position: relative; display: inline-flex; align-items: center; gap: 9px; margin: 0 9px; padding: 11px 18px 11px 24px; font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-soft); white-space: nowrap; background: #fff; border: 1px solid var(--border); border-radius: 7px; clip-path: polygon(13px 0, 100% 0, 100% 100%, 13px 100%, 0 50%); box-shadow: var(--shadow-sm); }
.marquee-item .dot { position: absolute; left: 7px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--surface-alt); box-shadow: 0 0 0 1.5px var(--border-2); flex: 0 0 auto; }
.marquee-item::before { content: '$'; font-size: 12px; font-weight: 800; color: var(--teal-dd); }

@media (prefers-reduced-motion: reduce) {
  .aurora { display: none; }
  .hero-mockup { transform: none; }
  .word { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- Hardware / periféricos ---------- */
.hardware { position: relative; overflow: hidden; }
.hw-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.hw-visual { position: relative; }
.hw-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--surface-alt); }
.hw-photo-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 30px; background: linear-gradient(150deg, var(--teal-soft), #fff 55%, var(--morado-soft)); color: var(--teal-dd); }
.hw-photo-fallback svg { width: 88px; height: 88px; opacity: .85; }
.hw-photo-fallback span { font-size: 14px; font-weight: 800; letter-spacing: -.01em; color: var(--ink-soft); }
.hw-photo img { position: relative; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.hw-float { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 15px; display: flex; align-items: center; gap: 11px; }
.hw-float .ico { width: 40px; height: 40px; border-radius: 10px; flex: 0 0 auto; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal-dd); }
.hw-float .ico svg { width: 21px; height: 21px; }
.hw-float .ft b { font-size: 14px; font-weight: 800; display: block; line-height: 1.2; }
.hw-float .ft span { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.hw-float.hw-f1 { top: 22px; left: -28px; }
.hw-float.hw-f2 { bottom: 22px; right: -24px; }
.hw-float.hw-f2 .ico { background: var(--morado-soft); color: var(--morado); }
.hw-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 56px; }
.hw-item { display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center; padding: 22px 12px; border-radius: var(--r-card); background: #fff; border: 1px solid var(--border); font-size: 13.5px; font-weight: 700; color: var(--ink-soft); transition: .18s; }
.hw-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; color: var(--teal-dd); }
.hw-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--surface-alt); color: var(--teal-dd); transition: .18s; }
.hw-item:hover .hw-ico { background: var(--teal-soft); }
.hw-ico svg { width: 26px; height: 26px; }
@media (max-width: 900px) {
  .hw-grid { grid-template-columns: 1fr; gap: 40px; }
  .hw-strip { grid-template-columns: repeat(3, 1fr); }
  .hw-float.hw-f1 { left: 0; } .hw-float.hw-f2 { right: 0; }
}
@media (max-width: 560px) { .hw-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .hdr-login { display: none; }
  .hdr-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 560px; }
  .hero-ticket { left: 0; } .hero-chip { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .showcase-panel.active, .showcase { grid-template-columns: 1fr; gap: 36px; }
  .showcase.rev .showcase-text, .showcase-text { order: 0; }
  .giros-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .plan.feat { transform: none; }
  .ctable { overflow-x: auto; }
  .ctable table { min-width: 640px; }
}
@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .giros-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .cta-box { padding: 50px 24px; }
}

/* ============================================================
   BALANCE DE COLOR — morado como segundo acento (paridad con teal)
   ============================================================ */
/* Eyebrows alternan: el guion va en degradado teal→morado */
.eyebrow::before { background: linear-gradient(90deg, var(--teal), var(--morado-mid)); }

/* Stats: alterna números teal / morado sobre la banda oscura */
.stat:nth-child(2) .num, .stat:nth-child(4) .num { background: linear-gradient(120deg, #fff, var(--morado-light)); -webkit-background-clip: text; background-clip: text; }
.stat:nth-child(2) .ph, .stat:nth-child(4) .ph { color: var(--morado-light); }

/* Showcase: paneles 2 (Inventario) y 4 (Reportes) usan acento morado */
.showcase-panel[data-panel="1"] .eyebrow, .showcase-panel[data-panel="3"] .eyebrow { color: var(--morado); }
.showcase-panel[data-panel="1"] .feat-item .ck, .showcase-panel[data-panel="3"] .feat-item .ck { background: var(--morado-soft); color: var(--morado); }
.showcase-panel[data-panel="1"] .media-badge > svg, .showcase-panel[data-panel="3"] .media-badge > svg { background: var(--morado-soft); color: var(--morado); }

/* Pestañas activas: icono en morado para las de acento morado */
.tab[data-tab="1"].active svg, .tab[data-tab="3"].active svg { color: var(--morado-light); }

/* Diferenciadores: la 1ª tarjeta a morado (queda morado–teal–morado balanceado) */
.why:nth-child(1) .wico { background: linear-gradient(150deg, var(--morado), var(--morado-d)); box-shadow: 0 14px 30px -10px rgba(103,47,110,.5); }

/* Hardware: acento morado en checks y en el primer badge flotante */
.hardware .feat-item .ck { background: var(--morado-soft); color: var(--morado); }
.hw-float.hw-f1 .ico { background: var(--morado-soft); color: var(--morado); }
.hw-item:nth-child(even) .hw-ico { color: var(--morado); }
.hw-item:nth-child(even):hover .hw-ico { background: var(--morado-soft); }

/* Giros: refuerza la alternancia ya existente con hover morado en pares */
.giro:nth-child(4n+2):hover, .giro:nth-child(4n+3):hover { border-color: var(--morado-soft); }

/* FAQ: las preguntas pares abren en morado */
.faq-item:nth-child(even).open { border-color: var(--morado-mid); }
.faq-item:nth-child(even).open .pm { background: var(--morado); }

/* Precios: la marca "MÁS POPULAR" mantiene teal, pero el plan Empresarial
   toma un guiño morado en su botón al pasar el cursor */
.plan:nth-child(3) .btn-outline:hover { border-color: var(--morado-mid); color: var(--morado); }

/* Marquee: una de cada tres etiquetas con símbolo morado */
.marquee-item:nth-child(3n)::before { color: var(--morado); }

/* Ticket del hero: el sello "Pagado" en morado para variar del teal dominante */
.ht-paid { background: var(--morado-soft); color: var(--morado); }

/* ===== DOSIS ALTA DE MORADO (protagonismo parejo con teal) ===== */
/* Títulos en degradado: arranca más en morado */
.grad-text { background: linear-gradient(105deg, var(--morado), var(--teal-d)); -webkit-background-clip: text; background-clip: text; }
/* Eyebrows en morado por defecto (el guion sigue en degradado) */
.eyebrow { color: var(--morado); }
/* Badge NUEVO del hero en morado */
.hero-badge .tag { background: var(--morado-soft); color: var(--morado); }
/* Botones oscuros → morado de marca */
.btn-dark { background: var(--morado); }
.btn-dark:hover { background: var(--morado-d); }
/* Botones outline: hover morado */
.btn-outline:hover { border-color: var(--morado-mid); color: var(--morado); }
/* Pestaña activa: icono morado */
.tab.active svg { color: var(--morado-light); }
.tab:hover { border-color: var(--morado-mid); color: var(--morado); }
/* Giros: mayoría morado (3 de cada 4), teal como alterno */
.giro .gico { background: var(--morado-soft); color: var(--morado); }
.giro:nth-child(4n+3) .gico { background: var(--teal-soft); color: var(--teal-dd); }
.giro:hover { border-color: var(--morado-soft); }
/* Stats: 3 de 4 en morado, 1 teal */
.stat:nth-child(3) .num { background: linear-gradient(120deg, #fff, var(--morado-light)); -webkit-background-clip: text; background-clip: text; }
.stat:nth-child(3) .ph { color: var(--morado-light); }
.stat:nth-child(1) .ph { color: var(--morado-light); }
/* Banda de stats: glow morado además del teal */
.statband::before { background: radial-gradient(circle, rgba(103,47,110,.30), transparent 65%); }
/* FAQ: todas abren en morado */
.faq-item.open { border-color: var(--morado-mid); }
.faq-item.open .pm { background: var(--morado); }
.faq-item:nth-child(even).open { border-color: var(--teal); }
.faq-item:nth-child(even).open .pm { background: var(--teal); }
/* Búsqueda/inputs: foco morado */
.news-form input:focus { border-color: var(--morado-mid); box-shadow: 0 0 0 4px rgba(103,47,110,.16); }
/* Showcase feature checks por defecto morado; teal en paneles alternos */
.showcase-panel .feat-item .ck { background: var(--morado-soft); color: var(--morado); }
.showcase-panel[data-panel="0"] .feat-item .ck, .showcase-panel[data-panel="2"] .feat-item .ck, .showcase-panel[data-panel="4"] .feat-item .ck { background: var(--teal-soft); color: var(--teal-dd); }
/* Hero trust checks en morado */
.hero-trust-item svg { color: var(--morado-mid); }
/* Diferenciadores: 2 de 3 en morado */
.why:nth-child(3) .wico { background: linear-gradient(150deg, var(--morado), var(--morado-d)); box-shadow: 0 14px 30px -10px rgba(103,47,110,.5); }
.why:nth-child(2) .wico { background: linear-gradient(150deg, var(--teal), var(--teal-d)); box-shadow: var(--shadow-teal); }
/* Marquee: símbolo morado en 2 de cada 3 */
.marquee-item::before { color: var(--morado); }
.marquee-item:nth-child(3n)::before { color: var(--teal-dd); }
/* Línea superior del footer: más morado */
.footer::before { background: linear-gradient(90deg, transparent, var(--morado), var(--teal), transparent); }
