/* ═══════════════════════════════
   GETLO — Design System
   Light por defecto · Dark toggle
═══════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --teal:         #38C7D2;
  --teal-dark:    #22a8b4;
  --teal-light:   #e8f9fb;
  --orange:       #FF8D36;
  --orange-dark:  #e0720e;
  --orange-light: #fff4eb;
  --text:         #111827;
  --text-soft:    #374151;
  --text-muted:   #6b7280;
  --bg:           #ffffff;
  --bg-off:       #f8fafb;
  --surface:      #f3f4f6;
  --border:       #e5e7eb;
  --border-soft:  rgba(0,0,0,0.06);
  --card:         #ffffff;
  --ink:          #1e2530;
  --radius:       20px;
  --radius-lg:    32px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.09);
  --shadow-teal:  0 8px 40px rgba(56,199,210,0.22);
  --shadow-orange:0 8px 40px rgba(255,141,54,0.22);
}

[data-theme="dark"] {
  --teal-light:   rgba(56,199,210,0.08);
  --orange-light: rgba(255,141,54,0.08);
  --text:         #f0f4f8;
  --text-soft:    #94a3b8;
  --text-muted:   #6b7280;
  --bg:           #0a0d12;
  --bg-off:       #0f1318;
  --surface:      #151b24;
  --border:       #1e2733;
  --border-soft:  rgba(255,255,255,0.06);
  --card:         #111820;
  --ink:          #0d1a1e;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.4);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* ── DARK MODE TOGGLE ── */
.theme-toggle {
  width: 44px; height: 24px;
  position: relative; cursor: pointer; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.theme-toggle input {
  position: absolute; opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer; margin: 0;
  z-index: 2;
}
.toggle-track {
  position: absolute; inset: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: background 0.3s;
}
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--teal); border-radius: 50%;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; line-height: 1;
}
.toggle-thumb::after { content: '☀️'; }
[data-theme="dark"] .toggle-thumb { transform: translateX(20px); }
[data-theme="dark"] .toggle-thumb::after { content: '🌙'; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: #ffffff;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: height 0.3s, background 0.3s;
}
@supports (backdrop-filter: blur(1px)) {
  nav { background: rgba(255,255,255,0.93); }
}
[data-theme="dark"] nav { background: #0a0d12; }
@supports (backdrop-filter: blur(1px)) {
  [data-theme="dark"] nav { background: rgba(10,13,18,0.93); }
}
nav.scrolled { height: 56px; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  flex: 1;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.875rem; font-weight: 500; color: var(--text-soft);
  text-decoration: none; padding: 6px 14px; border-radius: 10px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--teal); background: var(--teal-light); }
.nav-link.active { color: var(--teal); }

.logo img { height: 38px; width: auto; display: block; }
.logo { flex-shrink: 0; }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-nav {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: 0.85rem;
  padding: 9px 20px; border-radius: 12px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-nav-fill {
  background: var(--teal); color: #fff;
  border: 1.5px solid var(--teal);
}
.btn-nav-fill:hover { transform: translateY(-1px); box-shadow: var(--shadow-teal); }
.btn-nav-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-nav-ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--bg);
}

.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 40%, black 10%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 80% at 70% 40%, black 10%, transparent 80%);
}
.hero-glow-1 {
  position: absolute; pointer-events: none; z-index: 0;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,199,210,0.12) 0%, transparent 70%);
  top: -160px; right: -120px;
}
.hero-glow-2 {
  position: absolute; pointer-events: none; z-index: 0;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,141,54,0.09) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}

.hero-layout {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}

.hero-left { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); border: 1px solid rgba(56,199,210,0.25);
  color: var(--teal-dark);
  font-size: 0.76rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-bottom: 28px;
  animation: slideUp 0.6s ease both;
}
[data-theme="dark"] .hero-eyebrow { color: var(--teal); }

.blink-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.06; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 24px;
  animation: slideUp 0.6s ease 0.1s both;
}
h1 .t { color: var(--teal); }
h1 .o { color: var(--orange); }

.lined { position: relative; display: inline; }
.lined::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 3px;
}

.hero-desc {
  font-size: 1.05rem; color: var(--text-soft);
  line-height: 1.7; margin-bottom: 36px;
  animation: slideUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: slideUp 0.6s ease 0.3s both;
}

.btn-hero-main {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 14px; border: none;
  background: var(--orange); color: #fff; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-main:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

.btn-hero-sec {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 14px;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-hero-sec:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

.hero-trust {
  margin-top: 32px; display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 0.8rem; color: var(--text-muted);
  animation: slideUp 0.6s ease 0.4s both;
}
.trust-item { display: flex; align-items: center; gap: 5px; }
.trust-item .ti { color: var(--teal); }

/* ── HERO IMAGE ── */
.hero-right { animation: slideUp 0.9s ease 0.35s both; }

.hero-img {
  width: 70%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(56,199,210,0.07);
  object-fit: cover;
}

/* ── SECTION BASE ── */
section { padding: 96px 48px; }

.container { max-width: 1160px; margin: 0 auto; width: 100%; }

h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 16px;
}
h2 .t { color: var(--teal); }
h2 .o { color: var(--orange); }

.eyebrow {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--teal-dark);
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
[data-theme="dark"] .eyebrow { color: var(--teal); }
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.orange { color: var(--orange-dark); }
[data-theme="dark"] .eyebrow.orange { color: var(--orange); }
.eyebrow.orange::before { background: var(--orange); }

/* ── CÓMO FUNCIONA ── */
#como {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.como-header {
  text-align: center; max-width: 580px; margin: 0 auto 64px;
}
.como-header p { color: var(--text-soft); margin-top: 12px; }

.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; position: relative;
}
.steps-row::before {
  content: ''; position: absolute;
  top: 38px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  opacity: 0.2; z-index: 0;
}

.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 22px;
  text-align: center; position: relative; z-index: 1;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-teal); }

.step-icon-wrap {
  width: 54px; height: 54px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 18px;
}
.si-t { background: var(--teal-light); color: var(--teal-dark); border: 1.5px solid rgba(56,199,210,0.2); }
.si-o { background: var(--orange-light); color: var(--orange-dark); border: 1.5px solid rgba(255,141,54,0.2); }
[data-theme="dark"] .si-t { color: var(--teal); }
[data-theme="dark"] .si-o { color: var(--orange); }

.step-emoji { font-size: 1.7rem; margin-bottom: 12px; }
.step-name { font-weight: 700; font-size: 0.97rem; color: var(--text); margin-bottom: 7px; }
.step-text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }

.como-callout {
  margin-top: 52px; text-align: center;
  padding: 26px 36px;
  background: linear-gradient(135deg, rgba(56,199,210,0.06), rgba(255,141,54,0.04));
  border: 1px solid var(--border); border-radius: 18px;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.como-callout .t { color: var(--teal); }

/* ── FEATURES BENTO ── */
#features { background: var(--bg); }

.features-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.features-header p { color: var(--text-soft); margin-top: 12px; }

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.bento-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.bc-wide { grid-column: span 2; }
.bc-dark { background: var(--ink); border-color: rgba(56,199,210,0.15); }
[data-theme="dark"] .bc-dark { background: #0a1520; }
.bc-teal { background: linear-gradient(135deg, rgba(56,199,210,0.08), rgba(56,199,210,0.02)); border-color: rgba(56,199,210,0.2); }
.bc-orange { background: linear-gradient(135deg, rgba(255,141,54,0.08), rgba(255,141,54,0.02)); border-color: rgba(255,141,54,0.2); }

.bento-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.bi-t { background: var(--teal-light); border: 1px solid rgba(56,199,210,0.18); }
.bi-o { background: var(--orange-light); border: 1px solid rgba(255,141,54,0.18); }
.bi-w { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }

.bento-title {
  font-weight: 700; font-size: 1.1rem;
  color: var(--text); margin-bottom: 9px;
}
.bc-dark .bento-title { color: #f0f4f8; }
.bento-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.bc-dark .bento-desc { color: rgba(240,244,248,0.5); }

.bento-bg-num {
  font-weight: 800; font-size: 7rem; line-height: 1;
  color: var(--teal); opacity: 0.06;
  position: absolute; bottom: 10px; right: 18px;
  pointer-events: none; user-select: none;
}

/* ── MODES ── */
#modos {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
}

.modos-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.modos-header p { color: var(--text-soft); margin-top: 12px; }

.modos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; max-width: 880px; margin: 0 auto;
}

.modo-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px 34px;
  position: relative; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.modo-card:hover { transform: translateY(-4px); }
.modo-card.mc-featured {
  border-color: var(--teal);
  background: linear-gradient(145deg, rgba(56,199,210,0.06), rgba(56,199,210,0.01));
  box-shadow: var(--shadow-teal);
}

.modo-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.71rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px; width: fit-content;
  margin-bottom: 22px;
}
.mp-o { background: var(--orange-light); color: var(--orange-dark); border: 1px solid rgba(255,141,54,0.2); }
.mp-t { background: var(--teal-light); color: var(--teal-dark); border: 1px solid rgba(56,199,210,0.2); }
[data-theme="dark"] .mp-o { color: var(--orange); }
[data-theme="dark"] .mp-t { color: var(--teal); }

.modo-card h3 {
  font-weight: 800; font-size: 1.45rem;
  letter-spacing: -0.02em; color: var(--text); margin-bottom: 7px;
}
.modo-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 26px; line-height: 1.55; }

.modo-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 30px; flex: 1;
}
.modo-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-soft); }
.ck-t, .ck-o {
  width: 19px; height: 19px; border-radius: 6px; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; flex-shrink: 0;
}
.ck-t { background: var(--teal); }
.ck-o { background: var(--orange); }

.rec-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--teal); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 11px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.btn-modo {
  font-weight: 700; font-size: 0.9rem;
  padding: 12px 24px; border-radius: 12px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-modo-t { background: var(--teal); color: #fff; }
.btn-modo-t:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.btn-modo-o { background: var(--orange); color: #fff; }
.btn-modo-o:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* ── IDEAL PARA ── */
#para { background: var(--bg); border-top: 1px solid var(--border); }

.para-header { text-align: center; margin-bottom: 52px; }
.para-header p { color: var(--text-soft); margin-top: 10px; }

.para-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }

.para-item {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 26px 14px; text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.para-item:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }

.para-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--bg-off); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; margin: 0 auto 12px;
  transition: background 0.2s;
}
.para-item:hover .para-icon { background: var(--orange-light); }
.para-name { font-weight: 700; font-size: 0.85rem; color: var(--text); }

/* ── CTA FINAL ── */
#cta-final { background: var(--bg-off); border-top: 1px solid var(--border); }

.cta-container {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 68px 60px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.cta-container::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,199,210,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-container::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,141,54,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-container h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-container > p {
  color: var(--text-soft); font-size: 1.05rem;
  max-width: 460px; margin: 0 auto 40px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-meta {
  margin-top: 22px; display: flex; align-items: center;
  justify-content: center; gap: 18px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-muted);
}
.cta-meta span { display: flex; align-items: center; gap: 5px; }

/* ── FOOTER ── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 26px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-logo { font-weight: 800; font-size: 1rem; color: var(--text); }
.footer-logo span { color: var(--teal); }
.footer-sep { color: var(--border); }
footer p { font-size: 0.79rem; color: var(--text-muted); }

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ── PRICING ── */
#pricing {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.pricing-header p { color: var(--text-soft); margin-top: 12px; }

/* Currency switcher */
.currency-switcher {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  background: var(--bg-off); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 100px;
}
.currency-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--text-muted); transition: color 0.2s;
  user-select: none;
}
.currency-label.active { color: var(--teal); }

.curr-toggle { position: relative; width: 44px; height: 24px; cursor: pointer; flex-shrink: 0; }
.curr-toggle input { display: none; }
.curr-track {
  position: absolute; inset: 0;
  background: var(--teal); border-radius: 100px;
  transition: background 0.3s;
}
.curr-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.curr-toggle input:checked ~ .curr-track { background: var(--orange); }
.curr-toggle input:checked ~ .curr-track .curr-thumb { transform: translateX(20px); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 820px; margin: 0 auto;
}

.price-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.price-featured {
  border-color: var(--teal);
  background: linear-gradient(145deg, rgba(56,199,210,0.06), rgba(56,199,210,0.01));
  box-shadow: var(--shadow-teal);
}

.price-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; white-space: nowrap;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; letter-spacing: 0.05em;
}

.price-tag {
  display: inline-flex; width: fit-content;
  font-size: 0.71rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
}
.tag-o { background: var(--orange-light); color: var(--orange-dark); border: 1px solid rgba(255,141,54,0.2); }
.tag-t { background: var(--teal-light); color: var(--teal-dark); border: 1px solid rgba(56,199,210,0.2); }
[data-theme="dark"] .tag-o { color: var(--orange); }
[data-theme="dark"] .tag-t { color: var(--teal); }

.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 16px; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--text-muted); align-self: flex-start; margin-top: 8px; }
.price-num { font-size: 3.6rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: var(--text); }
.price-period { font-size: 0.9rem; color: var(--text-muted); margin-left: 4px; }

.price-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }

.price-annual {
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--bg-off); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px;
  margin-bottom: 24px; margin-top: -4px;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.price-annual strong { color: var(--teal); font-weight: 700; }

.price-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 11px; margin-bottom: 32px; flex: 1;
}
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-soft); }
.pf-icon {
  width: 18px; height: 18px; border-radius: 5px; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; flex-shrink: 0;
}
.pf-t { background: var(--teal); }
.pf-o { background: var(--orange); }
.pf-dim {
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--surface); color: var(--text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

.pricing-note { text-align: center; margin-top: 32px; font-size: 0.88rem; color: var(--text-muted); }
.pricing-note a { color: var(--teal); text-decoration: none; font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ══════════════════════════════
   HAMBURGER MENU
══════════════════════════════ */

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 36px; height: 36px; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  border-radius: 8px; transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block; height: 2px;
  background: var(--text); border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              opacity   0.35s ease,
              width     0.35s cubic-bezier(.4,0,.2,1);
}
.hamburger span:nth-child(1) { width: 20px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 20px; }

/* open: morph into X */
.hamburger.open span:nth-child(1) { width: 20px; transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { width: 20px; transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer — hidden on desktop ── */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 190;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
  flex-direction: column; gap: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
[data-theme="dark"] .mobile-menu { box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

/* activated only at mobile breakpoint */
@media (max-width: 1024px) {
  .mobile-menu { display: flex; }
}

.mobile-menu.open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

/* each item slides in with stagger — WebView safe */
.mobile-menu > * {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.mobile-menu.open > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.09s; }
.mobile-menu.open > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.13s; }
.mobile-menu.open > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.17s; }
.mobile-menu.open > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.21s; }
.mobile-menu.open > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.25s; }
.mobile-menu.open > *:nth-child(7) { opacity:1; transform:none; transition-delay: 0.29s; }

/* ── Nav links ── */
.mobile-nav-link {
  font-size: 1.05rem; font-weight: 600; color: var(--text-soft);
  text-decoration: none; padding: 13px 16px; border-radius: 14px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  display: flex; align-items: center; gap: 10px;
  position: relative;
}
.mobile-nav-link::after {
  content: '→';
  position: absolute; right: 16px;
  font-size: 0.75rem; color: var(--teal);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-nav-link:hover::after,
.mobile-nav-link.active::after { opacity: 1; transform: translateX(0); }
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--teal); background: var(--teal-light); }

/* ── Divider ── */
.mobile-menu-divider {
  height: 1px; background: var(--border); margin: 6px 0;
}

/* ── CTAs ── */
.mobile-menu-cta {
  font-weight: 700; font-size: 0.97rem;
  padding: 13px 20px; border-radius: 14px;
  text-decoration: none; text-align: center; margin-top: 2px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: block;
}
.mobile-cta-fill { background: var(--orange); color: #fff; }
.mobile-cta-fill:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.mobile-cta-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); margin-top: 6px;
}
.mobile-cta-ghost:hover { border-color: var(--teal); color: var(--teal); }


/* ══════════════════════════════
   RESPONSIVE
   1024 · 768 · 480 · 360
══════════════════════════════ */

/* ── Tablet landscape ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  nav { padding: 0 28px; }
  section { padding: 80px 32px; }

  .hero-layout { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-left { max-width: 640px; margin: 0 auto; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-img { max-width: 560px; margin: 0 auto; }

  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }

  .bento { grid-template-columns: 1fr 1fr; }
  .bc-wide { grid-column: span 2; }

  .modos-grid { grid-template-columns: 1fr; max-width: 540px; }
  .para-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { gap: 16px; }

  .cta-container { padding: 56px 40px; }
  footer { padding: 24px 28px; }
}

/* ── Tablet portrait ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 60px; }
  nav.scrolled { height: 52px; }
  .mobile-menu { top: 60px; }
  .btn-nav-ghost { display: none; }
  section { padding: 64px 20px; }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .hero-layout { gap: 36px; }
  #hero { padding-top: 100px; padding-bottom: 60px; }

  .como-header { margin-bottom: 40px; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .step-card { padding: 24px 16px; }

  .bento { grid-template-columns: 1fr; }
  .bc-wide { grid-column: auto; }

  .modos-grid { max-width: 100%; }
  .modo-card { padding: 30px 24px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card { padding: 32px 28px; }
  .price-num { font-size: 3rem; }
  .currency-switcher { margin-top: 20px; }

  .para-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .para-item:nth-child(5) { grid-column: 1 / -1; }

  .cta-container { padding: 44px 28px; border-radius: 24px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-hero-main, .btn-hero-sec { width: 100%; justify-content: center; max-width: 360px; }
  .cta-meta { flex-direction: column; gap: 8px; }

  footer { flex-direction: column; align-items: flex-start; padding: 20px; gap: 8px; }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  nav { padding: 0 16px; height: 56px; }
  .mobile-menu { top: 56px; }
  .logo img { height: 32px; }
  .btn-nav-fill { display: none; }
  section { padding: 52px 16px; }
  #hero { padding: 86px 16px 52px; }

  h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  .hero-eyebrow { font-size: 0.7rem; padding: 4px 12px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .btn-hero-main, .btn-hero-sec { width: 100%; justify-content: center; padding: 14px 20px; }

  .steps-row { grid-template-columns: 1fr; gap: 10px; }
  .step-card { padding: 22px 18px; }
  .como-callout { padding: 20px 18px; font-size: 0.95rem; }

  .bento-card { padding: 22px 18px; border-radius: 20px; }
  .bento-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 11px; }
  .bento-title { font-size: 1rem; }

  .modo-card { padding: 24px 18px; border-radius: 20px; }
  .modo-card h3 { font-size: 1.2rem; }
  .rec-badge { font-size: 0.6rem; padding: 3px 9px; top: 14px; right: 14px; }

  /* Pricing mobile */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 32px; }
  .price-card { padding: 28px 20px; border-radius: 22px; }
  .price-card.price-featured { margin-top: 18px; }
  .price-num { font-size: 2.8rem; }
  .price-currency { font-size: 1.1rem; }
  .price-period { font-size: 0.82rem; }
  .price-amount { gap: 4px; }
  .price-annual { font-size: 0.74rem; padding: 5px 10px; gap: 2px; flex-wrap: wrap; }
  .price-features li { font-size: 0.84rem; }
  .currency-switcher { padding: 5px 14px; gap: 8px; margin-top: 18px; }
  .pricing-header { margin-bottom: 36px; }

  .para-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .para-item { padding: 20px 10px; }
  .para-item:nth-child(5) { grid-column: 1 / -1; }

  .cta-container { padding: 32px 18px; border-radius: 20px; }
  footer { padding: 18px 16px; }
}

/* ── Mobile small ── */
@media (max-width: 360px) {
  section { padding: 44px 14px; }
  #hero { padding: 80px 14px 48px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  .nav-right { gap: 6px; }
  .cta-container { padding: 28px 14px; }
  .price-num { font-size: 2.4rem; }
  .pricing-grid { gap: 28px; }
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
#faq { padding: 100px 0; }

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
  transition: color .2s;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.faq-q:hover { color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--teal);
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height .35s ease, opacity .3s ease;
}
.faq-item.open .faq-a { padding-bottom: 20px; }

/* ══════════════════════════════
   FOOTER NUEVO
══════════════════════════════ */
#footer {
  background: #0d0d0d !important;
  color: #e0e0e0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  border-top: none !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
}
#footer .footer-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
}
#footer .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
#footer .footer-logo {
  display: block;
  margin-bottom: 12px;
}
#footer .footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.45) !important;
  line-height: 1.6;
}
#footer .footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
#footer .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
#footer .footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
#footer .footer-col ul li svg { flex-shrink: 0; opacity: .6; }
#footer .footer-col ul li a {
  color: rgba(255,255,255,.55) !important;
  text-decoration: none;
  transition: color .2s;
}
#footer .footer-col ul li a:hover { color: var(--teal) !important; }
#footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.55) !important;
  text-decoration: none;
  transition: color .2s;
}
#footer .social-link:hover { color: var(--teal) !important; }
#footer .footer-bottom {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  display: block;
}
#footer .footer-bottom p {
  font-size: .78rem !important;
  color: rgba(255,255,255,.25) !important;
  text-align: center;
}

/* ── FAQ + Footer responsive ── */
@media (max-width: 900px) {
  #footer .footer-main { padding: 48px 32px 36px; }
  #footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  #footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  #faq { padding: 56px 0; }
  .faq-header { margin-bottom: 32px; }
  .faq-list { padding: 0 20px; }
  .faq-q { font-size: .9rem; padding: 16px 0; }
  .faq-a { font-size: .88rem; }
  #footer .footer-main { padding: 40px 20px 28px; }
  #footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #footer .footer-brand { grid-column: auto; }
  #footer .footer-bottom { padding: 16px 20px; }
}