/* ==========================================================================
   AKI-STOY GPS — marketing.css
   Hoja de estilo única para todas las páginas públicas (public/).
   Fuentes: Inter (cuerpo) · Space Grotesk (títulos) · JetBrains Mono (datos)
   ========================================================================== */

/* ---------- Reset y base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0b0b1a;
  --bg-card: #13132b;
  --bg-elevated: #1a1a3a;
  --card-bg: #12122a;
  --text: #e0e0e0;
  --text-muted: #b0b0b0;
  --neon-blue: #2979ff;
  --neon-red: #ff1744;
  --neon-green: #00e676;
  --accent: #00e676;
  --border: #1e1e3a;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Contenido: ancho completo en pantallas grandes, textos legibles por bloque */
.container { width: 100%; max-width: none; margin: 0 auto; padding: 0 20px; }

h1 { font-family: 'Space Grotesk', sans-serif; color: #fff; margin-bottom: 20px; font-size: 28px; line-height: 1.25; }
h2 { font-family: 'Space Grotesk', sans-serif; color: #2979ff; margin-top: 24px; margin-bottom: 8px; font-size: 20px; }
p { margin-bottom: 15px; }
ul, ol { margin: 8px 0 16px 24px; }
li { margin-bottom: 6px; }
a { color: #2979ff; }
footer { margin-top: 24px; text-align: center; color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border); padding: 24px 0; }
footer a { color: var(--neon-blue); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---------- Header / nav / botones ---------- */
header { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--border); }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font-size: 20px; font-weight: 700; color: #fff; }
.logo img { height: 42px; width: auto; border-radius: 8px; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; background: linear-gradient(135deg, var(--neon-blue), var(--neon-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-text span { color: var(--neon-green); }
nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 600; transition: color .2s; }
nav a:hover { color: var(--neon-blue); }
nav a.active { color: var(--neon-blue); }
nav a.login-btn { color: #fff; }
.login-btn { background: var(--neon-blue); color: #fff; border: none; padding: 10px 28px; border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.2s; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; display: inline-block; }
.login-btn:hover { box-shadow: 0 0 20px rgba(41,121,255,0.5); transform: translateY(-1px); }
nav a.login-btn:hover { color: #fff; }
.btn-green { background: var(--accent); color: #000; }
.btn-green:hover { box-shadow: 0 0 20px rgba(0,230,118,0.5); }
.btn-outline { background: transparent; border: 2px solid var(--neon-blue); color: var(--neon-blue); padding: 12px 36px; border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.2s; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; display: inline-block; }
.btn-outline:hover { background: var(--neon-blue); color: #fff; box-shadow: 0 0 20px rgba(41,121,255,0.3); }
.btn-outline-green { border-color: var(--accent); color: var(--accent); }
.btn-outline-green:hover { background: var(--accent); color: #000; }

/* ---------- Hero (centrado por defecto) ---------- */
.hero { text-align: center; padding: 56px 0 40px; }
.hero-badge { display: inline-block; background: rgba(0,230,118,0.12); border: 1px solid var(--accent); color: var(--accent); font-size: 14px; font-weight: 700; padding: 6px 18px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 5vw, 48px); font-weight: 800; background: linear-gradient(135deg, var(--neon-blue), var(--neon-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.hero h1 span { background: linear-gradient(135deg, var(--neon-blue), var(--neon-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(16px, 2vw, 20px); color: var(--text-muted); margin: 0 auto 32px; max-width: min(65ch, 100%); font-weight: 500; }
.hero p strong { color: var(--text); }
.hero .highlight { color: var(--neon-green); font-weight: 700; }
.hero .subtitle { color: var(--text-muted); font-size: 15px; }
.hero .hero-note { font-size: 16px; color: var(--text-muted); margin-top: 20px; padding: 16px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; display: inline-block; }
.hero .hero-note strong { color: var(--accent); }
.hero .lista { margin: 4px 0 28px; text-align: left; }
.hero .lista ul { list-style: none; margin: 0; padding: 0; }
.hero .lista li { position: relative; padding-left: 34px; margin-bottom: 12px; font-size: 16px; color: var(--text); line-height: 1.5; }
.hero .lista li::before { content: ''; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--neon-blue), var(--neon-green)); box-shadow: 0 0 12px rgba(0,230,118,0.35); }
.hero .lista li::after { content: '✓'; position: absolute; left: 5px; top: 4px; font-size: 13px; font-weight: 700; color: #08121f; line-height: 1; }
.hero .lista li strong { color: var(--neon-green); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-btns .login-btn, .hero-btns .btn-outline { font-size: 18px; padding: 14px 40px; }
.hero-price { margin-bottom: 24px; }
.hero-price .price { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-price .price-note { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 28px; font-size: 14px; color: var(--text-muted); }
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-visual img { width: 100%; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ---------- Secciones genéricas ---------- */
section { padding: 30px 0; border-top: 1px solid var(--border); }
section h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 17px; max-width: 700px; margin: 0 auto 40px; }

/* ---------- Bloque Problema / Solución (dispositivos) ---------- */
.problem-solution { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.ps-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.ps-card.solution { border-color: rgba(0,230,118,0.3); }
.ps-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 14px; color: #fff; }
.ps-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ps-card li { font-size: 15px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.ps-card li span { font-size: 18px; flex-shrink: 0; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.features .compatibility-block { margin-top: 20px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(41,121,255,0.15); }
.feature-icon { font-size: 24px; margin-bottom: 12px; flex-shrink: 0; margin-top: 2px; }
.feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.feature-card-wide .compatibility-search { max-width: 640px; margin: 24px auto; }
.feature-card-wide .compatibility-search input { width: 100%; padding: 14px 24px; border: 2px solid var(--border); border-radius: 12px; background: var(--bg-elevated, var(--bg-card)); color: var(--text); font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; outline: none; transition: border-color 0.2s; }
.feature-card-wide .compatibility-search input:focus { border-color: var(--neon-blue); }
.feature-card-wide .compatibility-stats { text-align: center; margin-bottom: 24px; }
.feature-card-wide .compatibility-stats .stat { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 800; color: var(--neon-blue); margin: 0 8px; }
.feature-card-wide .compatibility-stats .stat-label { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.feature-card-wide .compatibility-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; max-height: 400px; overflow-y: auto; padding: 20px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 20px; }
.feature-card-wide .compatibility-results::-webkit-scrollbar { width: 8px; }
.feature-card-wide .compatibility-results::-webkit-scrollbar-track { background: var(--bg); border-radius: 4px; }
.feature-card-wide .compatibility-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.feature-card-wide .compatibility-note { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 0; }
.feature-card-wide .compatibility-note a { color: var(--neon-blue); text-decoration: none; font-weight: 600; }

/* ---------- Included (dispositivos) ---------- */
.included { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; max-width: 900px; margin: 0 auto; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.included h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.included ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.included li { font-size: 15px; color: var(--text); display: flex; align-items: flex-start; gap: 10px; }
.included li span { color: var(--accent); font-size: 18px; flex-shrink: 0; }
.renewal-box { background: rgba(0,230,118,0.08); border: 1px solid var(--accent); border-radius: 12px; padding: 24px; text-align: center; }
.renewal-box .renewal-price { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); }
.renewal-box p { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* ---------- Tabla comparativa ---------- */
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 24px; }
.comparison-table th, .comparison-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; }
.comparison-table th { background: var(--bg-card); font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #fff; padding: 20px 24px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--border); }
.comparison-table td { color: var(--text); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .col-aki { background: rgba(0,230,118,0.05); color: var(--accent); font-weight: 700; }
.comparison-table .col-trad { background: var(--bg-card); }
.comparison-table .col-aki td { color: var(--accent); }
.comparison-table .check { color: var(--accent); font-weight: 700; }
.comparison-table .cross { color: var(--neon-red); }
.comparison-table .highlight { font-weight: 700; }
.comparison-note { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.comparison-note span { color: var(--accent); font-weight: 700; }
.comparison-cta { text-align: center; }
.comparison-cta p { font-size: 18px; color: var(--text); margin-bottom: 20px; font-weight: 600; }
.comparison-cta .total { font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.comparison-cta .period { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* ---------- FAQ ---------- */
.faq { padding: 60px 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 1100px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; align-items: start; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.faq-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; padding: 70px 0 90px; }
.final-cta .price-tag { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800; color: var(--accent); margin: 16px 0 8px; }
.final-cta .price-note { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.final-cta .login-btn { font-size: 18px; padding: 16px 44px; }
.final-cta .secondary { display: inline-block; margin-top: 16px; color: var(--text-muted); text-decoration: none; font-weight: 600; }
.final-cta .secondary:hover { color: var(--neon-blue); }

/* ---------- Plantilla de ciudad ---------- */
.benefits { padding: 50px 0; border-top: 1px solid var(--border); }
.benefits h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 32px; color: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: border-color 0.2s; }
.benefit-card:hover { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(41,121,255,0.1); }
.benefit-icon { font-size: 32px; margin-bottom: 10px; }
.benefit-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); }
.pricing { padding: 50px 0; border-top: 1px solid var(--border); text-align: center; }
.pricing h2 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.pricing-subtitle { color: var(--text-muted); font-size: 16px; margin-bottom: 40px; text-align: center; }
.price-box { background: var(--bg-card); border: 1px solid var(--accent); border-radius: 16px; padding: 32px; max-width: 500px; margin: 0 auto 24px; }
.price-box .price { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 800; color: var(--accent); }
.price-box .price-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.price-box .price-detail { font-size: 15px; color: var(--text); margin-bottom: 8px; }
.price-box .price-detail strong { color: var(--accent); }
.cta { text-align: center; padding: 60px 0 80px; border-top: 1px solid var(--border); }
.cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.cta p { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }
.cta .cta-badge { display: inline-block; background: rgba(0,230,118,0.12); border: 1px solid var(--accent); color: var(--accent); font-size: 13px; font-weight: 700; padding: 6px 18px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.other-cities { padding: 50px 0; border-top: 1px solid var(--border); }
.other-cities h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; color: #fff; text-align: center; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.cities-grid a { display: block; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 16px; text-align: center; color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; transition: all 0.2s; }
.cities-grid a:hover { border-color: var(--neon-blue); color: var(--neon-blue); }
.cities-grid a.active { border-color: var(--accent); color: var(--accent); background: rgba(0,230,118,0.08); }

/* ---------- Hero de dispositivo (dispositivos-gps.html) ---------- */
body.product-page .hero-device {
  display: block; width: 100%; height: auto;
  max-width: 320px; margin: 0 auto;
  border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* ---------- Aliados Instaladores ---------- */
.aliados-section { padding: 50px 0; border-top: 1px solid var(--border); scroll-margin-top: 20px; }
.aliados-section h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.aliados-section h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #fff; text-align: center; margin: 32px 0 20px; }
.aliados-section .section-subtitle { margin-bottom: 32px; }
.aliados-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 320px)); justify-content: center; gap: 20px; }
.aliado-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.aliado-card:hover { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(41,121,255,0.15); }
.aliado-photo { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; display: block; border-bottom: 1px solid var(--border); }
.aliado-body { padding: 20px; }
.aliado-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.aliado-head .aliado-icon { font-size: 28px; }
.aliado-head h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin: 0; }
.aliado-city { color: var(--accent); font-size: 13px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.aliado-row { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.aliado-row a { color: var(--text); text-decoration: none; font-weight: 600; }
.aliado-row a:hover { color: var(--neon-blue); }
.aliado-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.aliado-actions .login-btn, .aliado-actions .btn-outline { padding: 10px 18px; font-size: 14px; }
.aliado-empty { background: var(--bg-card); border: 1px dashed var(--border); border-radius: 12px; padding: 28px; text-align: center; max-width: 640px; margin: 0 auto; }
.aliado-empty p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.aliado-empty a { color: var(--neon-blue); font-weight: 600; text-decoration: none; }
.aliado-empty a:hover { text-decoration: underline; }

/* ---------- Landing: comparativa ---------- */
.comparison { padding: 60px 0; border-top: 1px solid var(--border); }
.comparison h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.comparison-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 40px; }

/* ---------- Landing: pasos ---------- */
.steps { padding: 60px 0; border-top: 1px solid var(--border); }
.steps h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.steps-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 40px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s; position: relative; margin: 20px 0; }
.step-card:hover { border-color: var(--neon-blue); box-shadow: 0 0 20px rgba(41,121,255,0.12); }
.step-number { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 800; color: var(--neon-blue); opacity: 0.3; line-height: 1; margin-bottom: 12px; }
.step-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.step-card h4 { margin-top: 0; }
.step-card p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.step-card .step-detail { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 14px; color: var(--neon-blue); font-weight: 600; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--neon-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.steps-cta { margin-top: 32px; text-align: center; }
.steps-cta p { margin-bottom: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 20px; color: #fff; }
.steps-cta .login-btn { font-size: 18px; padding: 14px 40px; }

/* ---------- Landing: sección plataforma ---------- */
.platform { padding: 60px 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.platform-visual { order: 1; display: flex; justify-content: center; }
.platform-photo { width: auto; max-width: 100%; max-height: 440px; border-radius: 20px; box-shadow: 0 0 0 1px var(--border), 0 8px 40px rgba(0,0,0,0.35); display: block; }
.platform-content { order: 2; }
.platform h2 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin: 12px 0 12px; }
.platform p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.platform-benefits { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.platform-benefits li { display: flex; flex-direction: column; gap: 4px; font-size: 15px; color: var(--text); line-height: 1.5; }
.platform-benefits li strong { color: var(--neon-blue); font-weight: 700; }

/* ---------- Landing: features / compatibilidad ---------- */
.features { padding: 60px 0; border-top: 1px solid var(--border); }
.features h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 40px; color: #fff; }
.compatibility { padding: 60px 0; border-top: 1px solid var(--border); }
.compatibility h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.compatibility-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }
.compatibility-search { max-width: 600px; margin: 0 auto 24px; position: relative; }
.compatibility-search input { width: 100%; padding: 16px 24px; border: 2px solid var(--border); border-radius: 12px; background: var(--bg-card); color: var(--text); font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; outline: none; transition: border-color 0.2s; }
.compatibility-search input:focus { border-color: var(--neon-blue); }
.compatibility-search input::placeholder { color: var(--text-muted); }
.compatibility-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; max-height: 400px; overflow-y: auto; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 20px; }
.compatibility-results::-webkit-scrollbar { width: 8px; }
.compatibility-results::-webkit-scrollbar-track { background: var(--bg); border-radius: 4px; }
.compatibility-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.device-tag { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 14px; font-weight: 600; color: var(--text); text-align: center; transition: all 0.2s; }
.device-tag:hover { border-color: var(--neon-blue); color: var(--neon-blue); }
.device-tag.hidden { display: none; }
.device-tag.matched { border-color: var(--accent); background: rgba(0,230,118,0.1); color: var(--accent); }
.compatibility-note { text-align: center; color: var(--text-muted); font-size: 14px; }
.compatibility-note a { color: var(--neon-blue); text-decoration: none; font-weight: 600; }
.compatibility-stats { text-align: center; margin-bottom: 32px; }
.compatibility-stats .stat { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 800; color: var(--neon-blue); margin: 0 8px; }
.compatibility-stats .stat-label { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

/* ---------- Landing: sección SIM ---------- */
.sim-section { padding: 60px 0; border-top: 1px solid var(--border); }
.sim-section h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.sim-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 40px; }
.sim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
.sim-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 20px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; position: relative; }
.sim-card:hover { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,230,118,0.15); transform: translateY(-3px); }
.sim-card.best { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,230,118,0.2); }
.sim-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: 11px; font-weight: 800; padding: 3px 12px; border-radius: 10px; text-transform: uppercase; }
.sim-card .sim-name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sim-card .sim-qty { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.sim-card .sim-price { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 2px; }
.sim-card .sim-price-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.sim-card .sim-total { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.sim-card .sim-save { font-size: 12px; color: var(--neon-green); margin-bottom: 16px; font-weight: 600; }
.sim-includes { margin: 30px auto 0; max-width: 700px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; }
.sim-includes h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 16px; text-align: center; }
.sim-includes ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sim-includes li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.sim-includes li span { font-size: 18px; }
.sim-contact { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.sim-contact a { color: var(--neon-blue); text-decoration: none; font-weight: 600; }

/* ---------- Landing: testimonios ---------- */
.testimonials { padding: 60px 0; border-top: 1px solid var(--border); }
.testimonials h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.testimonials-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.testimonial-card:hover { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(41,121,255,0.15); }
.testimonial-stars { color: #ffc107; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.testimonial-name { font-size: 15px; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* ---------- Manual ---------- */
.toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; margin: 20px 0 40px; }
.toc h2 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; color: var(--neon-blue); margin-bottom: 16px; }
.toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.toc-grid a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; padding: 4px 0; transition: color 0.15s; }
.toc-grid a:hover { color: var(--neon-blue); }
.section { margin-bottom: 48px; scroll-margin-top: 24px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; color: var(--neon-blue); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.section h3 { font-size: 17px; color: var(--neon-green); margin: 20px 0 8px; }
.section h4 { font-size: 15px; color: var(--text); margin: 16px 0 8px; }
.section p { font-size: 15px; font-weight: 500; color: var(--text-muted); margin-bottom: 10px; }
.section ul, .section ol { margin: 0 0 12px 20px; }
.section li { font-size: 15px; font-weight: 500; color: var(--text-muted); margin-bottom: 4px; }
.section table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; font-weight: 500; }
.section th { background: rgba(41,121,255,0.1); color: var(--neon-blue); padding: 8px 12px; text-align: left; font-weight: 700; border-bottom: 1px solid var(--border); }
.section td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.section tr:hover td { background: rgba(255,255,255,0.02); }
.section img { max-width: 100%; border-radius: 10px; border: 1px solid var(--border); margin: 12px 0; display: block; }
.section strong { color: var(--text); }
.url-box { font-family: 'JetBrains Mono', monospace; font-size: 16px; color: var(--neon-green); background: rgba(0,230,118,0.08); padding: 10px 16px; border-radius: 8px; text-align: center; margin: 12px 0; }
.note { background: rgba(41,121,255,0.08); border-left: 3px solid var(--neon-blue); padding: 12px 16px; border-radius: 6px; margin: 12px 0; font-size: 14px; font-weight: 500; color: var(--text-muted); }
.warn { background: rgba(255,23,68,0.1); border-left: 3px solid var(--neon-red); padding: 10px 14px; border-radius: 6px; margin: 12px 0; font-size: 14px; font-weight: 500; color: var(--neon-red); }
.config-card { background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; margin: 10px 0; font-size: 14px; font-weight: 500; }
.config-card > div { display: flex; justify-content: space-between; padding: 4px 0; }
.config-card .label { color: var(--text-muted); }
.config-card .value { color: var(--text); font-weight: 600; }
.config-card .highlight { color: var(--neon-green); }
.cta-wrap { text-align: center; margin: 32px 0 48px; }
.cta-btn { display: inline-block; background: var(--neon-green); color: #000; padding: 14px 40px; border-radius: 8px; font-weight: 700; font-size: 18px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.cta-btn:hover { box-shadow: 0 0 20px rgba(0,230,118,0.5); }
.footer { text-align: center; padding: 24px 0; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 14px; font-weight: 500; }

/* ---------- Precios ---------- */
.pricing-section { padding: 40px 0 60px; }
.pricing-section h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 20px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 22px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; position: relative; display: flex; flex-direction: column; }
.pricing-card:hover { border-color: var(--neon-blue); box-shadow: 0 0 20px rgba(41,121,255,0.12); transform: translateY(-3px); }
.pricing-card.best { border-color: var(--accent); box-shadow: 0 0 24px rgba(0,230,118,0.18); }
.pricing-card.best:hover { box-shadow: 0 0 28px rgba(0,230,118,0.25); }
.pricing-card.free { border-color: var(--accent); box-shadow: 0 0 24px rgba(0,230,118,0.18); background: rgba(0,230,118,0.03); }
.pricing-card.free:hover { box-shadow: 0 0 28px rgba(0,230,118,0.25); }
.pricing-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-card .plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pricing-vehicles { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-price { font-size: 32px; font-weight: 800; color: var(--accent); margin-bottom: 2px; line-height: 1.1; }
.pricing-price.free { color: var(--neon-green); }
.pricing-price-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.pricing-period { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pricing-annual { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-btn { display: inline-block; margin-top: auto; background: var(--neon-blue); color: #fff; border: none; padding: 12px 32px; border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s; }
.pricing-btn:hover { box-shadow: 0 0 20px rgba(41,121,255,0.5); transform: translateY(-1px); }
.pricing-btn.green { background: var(--accent); color: #000; }
.pricing-btn.green:hover { box-shadow: 0 0 20px rgba(0,230,118,0.5); }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.free-explanation { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; max-width: 700px; margin: 0 auto 40px; text-align: center; }
.free-explanation .free-explanation-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.free-explanation p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.free-explanation .free-features { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; text-align: left; font-size: 14px; color: var(--text); }
.free-explanation .free-features li { display: flex; align-items: center; gap: 8px; }
.free-explanation .free-features li span { color: var(--accent); font-weight: 700; }
.features-section { padding: 60px 0; border-top: 1px solid var(--border); }
.features-section h2 { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.features-section .subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 40px; }
.features-section .features-callout { text-align: center; background: rgba(0,230,118,0.08); border: 1px solid var(--accent); border-radius: 12px; padding: 20px; max-width: 700px; margin: 0 auto 40px; font-size: 15px; color: var(--text); }
.features-section .features-callout strong { color: var(--accent); }
.feature-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.2s; }
.feature-item:hover { border-color: var(--neon-blue); }
.feature-text h4 { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.feature-text p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.fleets-note { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; }
.fleets-note h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.fleets-note p { color: var(--text-muted); font-size: 16px; margin-bottom: 20px; }
.fleets-note .fleets-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; max-width: 800px; margin: 0 auto 24px; }
.fleets-note .fleets-feature { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; font-size: 14px; color: var(--text); }
.fleets-note .fleets-feature span { color: var(--accent); margin-right: 8px; }

/* ---------- Términos ---------- */
.legal-content { padding: 0 0 60px; }
.legal-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-content h3 { font-size: 16px; font-weight: 600; color: var(--neon-blue); margin: 24px 0 8px; }
.legal-content p { color: var(--text); font-size: 15px; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin: 8px 0 16px 24px; font-size: 15px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: #fff; }
.legal-content a { color: var(--neon-blue); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .highlight-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin: 16px 0; }

/* ---------- Pago exitoso ---------- */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 48px 40px; max-width: 480px; width: 100%; }
.icon { font-size: 64px; margin-bottom: 20px; }
.card h1 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; background: linear-gradient(135deg, var(--neon-blue), var(--neon-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.card p { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-bottom: 12px; }
.card .highlight { color: var(--neon-green); font-weight: 600; }
.card .btn { display: inline-block; margin-top: 24px; background: var(--neon-blue); color: #fff; border: none; padding: 14px 40px; border-radius: 10px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s; }
.card .btn:hover { box-shadow: 0 0 20px rgba(41,121,255,0.5); transform: translateY(-1px); }

/* ---------- Blog ---------- */
article { background: #10101f; border: 1px solid #1e1e3a; border-radius: 12px; padding: 24px; }
article.post { background: #13132b; border: 1px solid #1e1e3a; padding: 20px; border-radius: 12px; margin-bottom: 20px; }
article.post a { color: #2979ff; text-decoration: none; font-size: 18px; font-weight: 600; }
article.post p { color: #b0b0b0; font-size: 14px; margin: 6px 0 0; }
nav.back { margin-bottom: 24px; }
nav.back a { color: #2979ff; text-decoration: none; font-size: 14px; }

/* ---------- WhatsApp flotante ---------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Páginas específicas ---------- */
body.pago-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; }
body.blog { padding: 20px; }
body.blog-index h1 { margin-bottom: 40px; }
body.blog-index article.post { max-width: none; }
body.blog article h1 { text-align: left; }
body.product-page .hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px 0 32px; text-align: left; }
body.product-page .hero-content { order: 1; }
body.product-page .hero-visual { order: 2; }
body.product-page .hero h1 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
body.product-page .hero p { max-width: 520px; margin: 0 0 28px; }
.hero-photo { display: block; width: 100%; height: auto; border-radius: 28px; box-shadow: 0 0 0 1px rgba(41,121,255,0.22), 0 0 48px rgba(41,121,255,0.18), 0 24px 70px rgba(0,0,0,0.55); }
body.sim-page section { text-align: center; }
body.sim-page section p { max-width: 700px; margin: 0 auto; }

/* ---------- Ancho completo en PC: legibilidad de bloques largos ---------- */
.section-subtitle, .steps-subtitle, .comparison-subtitle, .compatibility-subtitle,
.sim-subtitle, .testimonials-subtitle, .cta p, .comparison-cta p,
.fleets-note p, .hero .hero-note { max-width: min(72ch, 100%); margin-left: auto; margin-right: auto; }
.legal-content, article { max-width: min(72ch, 100%); margin-left: auto; margin-right: auto; }
.section p { max-width: 65ch; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  body.product-page .hero { grid-template-columns: 1fr; text-align: center; }
  body.product-page .hero-content { order: 1; }
  body.product-page .hero-visual { order: 2; }
  body.product-page .hero p { margin-left: auto; margin-right: auto; }
  .hero-photo { max-width: 560px; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .problem-solution { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  header { flex-direction: column; gap: 12px; }
  nav { justify-content: center; }
  .toc-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 18px; }
}
@media (max-width: 600px) {
  header { flex-direction: column; gap: 12px; }
  .logo { flex-direction: column; gap: 6px; }
  nav { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero { padding: 40px 0 24px; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 16px; font-weight: 500; }
  .hero-price .price { font-size: 34px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .login-btn, .hero-btns .btn-outline { width: 100%; max-width: 320px; }
  .hero .hero-note { font-size: 14px; font-weight: 500; }
  .hero h1 { font-size: 22px; }
  p, li { font-size: 15px; }
  h1 { font-size: 24px; }
  .section-subtitle, .steps-subtitle, .compatibility-subtitle, .sim-subtitle,
  .testimonials-subtitle, .comparison-note, .cta p { font-size: 15px; font-weight: 500; }
  .steps-grid, .sim-grid, .sim-includes ul, .testimonials-grid,
  .free-explanation .free-features { grid-template-columns: 1fr; }
  .platform { grid-template-columns: 1fr; gap: 24px; }
  .platform-visual { order: 2; }
  .platform-content { order: 1; }
  .platform h2 { font-size: 24px; }
  .compatibility-results { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .features .features-grid { grid-template-columns: 1fr; }
  .comparison-table { display: block; overflow-x: auto; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: 14px; }
  article { padding: 16px; }
  footer { font-size: 13px; }
}

/* ---------- Cambio de tema ---------- */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; padding: 0;
  background: var(--bg-elevated); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 50%;
  font-size: 17px; line-height: 1; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.theme-toggle:hover { border-color: var(--neon-blue); color: var(--neon-blue); transform: translateY(-1px); }
.theme-toggle--fixed { position: fixed; top: 16px; right: 16px; z-index: 10001; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }

/* Tema claro: paleta del logo (#1a9cf4 primario, #113953, #0d2d44) */
html[data-theme="light"] {
  --bg: #f5f7fb;
  --bg-card: #ffffff;
  --bg-elevated: #eef2f8;
  --card-bg: #ffffff;
  --text: #223044;
  --text-muted: #5b6779;
  --neon-blue: #1a9cf4;
  --neon-red: #d63333;
  --neon-green: #0d2d44;
  --accent: #0d2d44;
  --border: #dde4ee;
}
html[data-theme="light"] body { background: var(--bg); }
html[data-theme="light"] h1,
html[data-theme="light"] .logo,
html[data-theme="light"] section h2,
html[data-theme="light"] .ps-card h3,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .included h3,
html[data-theme="light"] .faq-item h3,
html[data-theme="light"] .benefits h2,
html[data-theme="light"] .benefit-card h3,
html[data-theme="light"] .pricing h2,
html[data-theme="light"] .cta h2,
html[data-theme="light"] .comparison h2,
html[data-theme="light"] .steps h2,
html[data-theme="light"] .step-card h3,
html[data-theme="light"] .steps-cta p,
html[data-theme="light"] .platform h2,
html[data-theme="light"] .features h2,
html[data-theme="light"] .compatibility h2,
html[data-theme="light"] .sim-section h2,
html[data-theme="light"] .sim-card .sim-name,
html[data-theme="light"] .sim-includes h3,
html[data-theme="light"] .testimonials h2,
html[data-theme="light"] .testimonial-name,
html[data-theme="light"] .pricing-section h2,
html[data-theme="light"] .pricing-card .plan-name,
html[data-theme="light"] .free-explanation .free-explanation-title,
html[data-theme="light"] .features-section h2,
html[data-theme="light"] .feature-text h4,
html[data-theme="light"] .fleets-note h2,
html[data-theme="light"] .legal-content h2,
html[data-theme="light"] .legal-content strong,
html[data-theme="light"] .other-cities h2,
html[data-theme="light"] .aliados-section h2,
html[data-theme="light"] .aliados-section h3,
html[data-theme="light"] .aliado-head h3,
html[data-theme="light"] .cta .cta-badge { color: #0d2d44; }
html[data-theme="light"] h2,
html[data-theme="light"] a:not(.login-btn):not(.btn-outline):not(.pricing-btn):not(.theme-toggle):not(.whatsapp-float),
html[data-theme="light"] .section-title,
html[data-theme="light"] nav.back a,
html[data-theme="light"] article.post a { color: #1a9cf4; }
html[data-theme="light"] header { border-bottom-color: var(--border); }
html[data-theme="light"] footer { border-top-color: var(--border); }
html[data-theme="light"] .btn-green,
html[data-theme="light"] .cta-btn,
html[data-theme="light"] .pricing-btn.green,
html[data-theme="light"] .pricing-badge { background: #0d2d44; color: #fff; }
html[data-theme="light"] .btn-green:hover,
html[data-theme="light"] .pricing-btn.green:hover { box-shadow: 0 0 20px rgba(13,45,68,0.35); }
html[data-theme="light"] .btn-outline-green { border-color: #0d2d44; color: #0d2d44; }
html[data-theme="light"] .btn-outline-green:hover { background: #0d2d44; color: #fff; }
html[data-theme="light"] .hero-badge,
html[data-theme="light"] .cta .cta-badge,
html[data-theme="light"] .renewal-box,
html[data-theme="light"] .url-box,
html[data-theme="light"] .device-tag.matched,
html[data-theme="light"] .features-section .features-callout,
html[data-theme="light"] .sim-card.best { background: rgba(13,45,68,0.06); border-color: #0d2d44; }
html[data-theme="light"] .hero-badge,
html[data-theme="light"] .cta .cta-badge,
html[data-theme="light"] .device-tag.matched { color: #0d2d44; }
html[data-theme="light"] .sim-card.best { box-shadow: 0 0 20px rgba(13,45,68,0.15); }
html[data-theme="light"] .hero .lista li::before,
html[data-theme="light"] .hero .lista strong { color: #0d2d44; }
html[data-theme="light"] .hero .lista li::before { background: linear-gradient(135deg, #1a9cf4, #0d2d44); box-shadow: 0 0 12px rgba(13,45,68,0.25); }
html[data-theme="light"] article,
html[data-theme="light"] article.post { background: #ffffff; border-color: var(--border); }
html[data-theme="light"] article.post p { color: var(--text-muted); }
html[data-theme="light"] .config-card { background: rgba(13,45,68,0.04); border-color: var(--border); }
html[data-theme="light"] .comparison-table .col-aki,
html[data-theme="light"] .pricing-card.free,
html[data-theme="light"] .section th { background: rgba(26,156,244,0.08); }
html[data-theme="light"] .pricing-card.best,
html[data-theme="light"] .pricing-card.free { box-shadow: 0 0 20px rgba(13,45,68,0.12); }
html[data-theme="light"] .hero-photo,
html[data-theme="light"] .platform-photo { box-shadow: 0 8px 40px rgba(13,45,68,0.18); }
html[data-theme="light"] .hero-visual img { border-color: var(--border); box-shadow: 0 20px 60px rgba(13,45,68,0.15); }
html[data-theme="light"] .comparison-table th { color: #0d2d44; }
html[data-theme="light"] .sim-badge { background: #0d2d44; color: #fff; }
html[data-theme="light"] .theme-toggle { background: #ffffff; color: #0d2d44; border-color: var(--border); }