
:root{
  --navy:#14123D; --navy2:#1C1A52; --paper:#F7F5EF; --paper2:#EFEBE1;
  --teal:#00D4B8; --teal-dim:#0A8F7D; --gold:#C9A227;
  --ink:#14123D; --ink-soft:#4A4870; --line:rgba(20,18,61,0.12);
  --white:#FFFFFF;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'IBM Plex Sans',sans-serif; color:var(--ink); background:var(--paper); line-height:1.55; font-size:16px;}
h1,h2,h3,.display{font-family:'Space Grotesk',sans-serif; font-weight:700; letter-spacing:-0.02em; color:var(--navy);}
.mono{font-family:'IBM Plex Mono',monospace;}
a{color:inherit; text-decoration:none;}
img,svg{display:block; max-width:100%;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
.eyebrow{font-family:'IBM Plex Mono',monospace; font-size:12px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--teal-dim);}

/* ── NAV ── */
header{position:sticky; top:0; z-index:100; background:rgba(247,245,239,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
nav{display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:1180px; margin:0 auto;}
.logo{font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:20px; color:var(--navy); display:flex; align-items:center; gap:8px;}
.logo .dot{width:8px; height:8px; border-radius:50%; background:var(--teal); box-shadow:0 0 8px var(--teal);}
.navlinks{display:flex; gap:32px; font-size:14px; font-weight:500;}
.navlinks a{color:var(--ink-soft); transition:color .15s;}
.navlinks a:hover{color:var(--navy);}
.btn{display:inline-flex; align-items:center; gap:8px; padding:11px 22px; border-radius:8px; font-weight:600; font-size:14px; transition:all .15s; border:1px solid transparent; cursor:pointer;}
.btn-primary{background:var(--navy); color:var(--white);}
.btn-primary:hover{background:var(--navy2); transform:translateY(-1px);}
.btn-ghost{border-color:var(--line); color:var(--navy);}
.btn-ghost:hover{border-color:var(--navy);}
.btn-teal{background:var(--teal); color:var(--navy);}
.btn-teal:hover{background:#1EE0C5; transform:translateY(-1px);}
.navcta{display:flex; gap:10px; align-items:center;}
.navmenu-mobile{display:none;}

/* ── HERO ── */
.hero{position:relative; overflow:hidden; background:var(--navy); color:var(--white); padding:64px 0 0;}
.hero-grid{max-width:1180px; margin:0 auto; padding:0 24px; display:grid; grid-template-columns:1fr; gap:40px; align-items:center; position:relative; z-index:2;}
.hero h1{font-size:clamp(34px,5.4vw,58px); line-height:1.04; color:var(--white); margin-bottom:22px;}
.hero h1 em{font-style:normal; color:var(--teal);}
.hero p.lead{font-size:18px; color:#C7C5E8; max-width:560px; margin-bottom:32px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:20px;}
.hero-note{font-size:12px; color:#8583B0; font-family:'IBM Plex Mono',monospace;}
.map-stage{position:relative; height:520px; margin-top:8px;}
.map-stage svg{width:100%; height:100%;}
.map-stage path{fill:rgba(0,212,184,0.10); stroke:rgba(0,212,184,0.55); stroke-width:0.6;}
.map-stage path.pulse{animation:pulse 3.6s ease-in-out infinite;}
@keyframes pulse{0%,100%{fill:rgba(0,212,184,0.10);}50%{fill:rgba(0,212,184,0.65);}}
.hero-stats{position:absolute; bottom:0; left:0; right:0; display:flex; gap:0; border-top:1px solid rgba(255,255,255,0.12); background:rgba(20,18,61,0.6); backdrop-filter:blur(6px);}
.hstat{flex:1; padding:18px 20px; border-right:1px solid rgba(255,255,255,0.1);}
.hstat:last-child{border-right:none;}
.hstat .n{font-family:'IBM Plex Mono',monospace; font-size:24px; font-weight:600; color:var(--teal);}
.hstat .l{font-size:11px; color:#9694C4; margin-top:2px;}

/* ── SECTION generic ── */
section{padding:88px 0;}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(28px,3.6vw,40px); margin:10px 0 14px; line-height:1.08;}
.section-head p{color:var(--ink-soft); font-size:17px;}

/* ── PROBLEMA ── */
.problema{background:var(--paper2); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.problema-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:14px; overflow:hidden;}
.problema-card{background:var(--paper2); padding:28px;}
.problema-card .num{font-family:'IBM Plex Mono',monospace; color:var(--gold); font-size:13px; font-weight:600; margin-bottom:12px;}
.problema-card h3{font-size:18px; margin-bottom:8px;}
.problema-card p{color:var(--ink-soft); font-size:14.5px;}

/* ── MODULOS ── */
.modulos-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
.mod-card{background:var(--white); border:1px solid var(--line); border-radius:12px; padding:22px; transition:all .15s;}
.mod-card:hover{border-color:var(--teal-dim); transform:translateY(-2px); box-shadow:0 8px 24px rgba(20,18,61,0.06);}
.mod-card .ic{font-size:26px; margin-bottom:12px;}
.mod-card h3{font-size:15px; margin-bottom:6px;}
.mod-card p{font-size:13px; color:var(--ink-soft);}

/* ── COMPARATIVA ── */
.tablewrap{overflow-x:auto; border:1px solid var(--line); border-radius:14px; background:var(--white);}
table.cmp{width:100%; border-collapse:collapse; font-size:14px; min-width:760px;}
table.cmp th, table.cmp td{padding:14px 16px; text-align:center; border-bottom:1px solid var(--line);}
table.cmp th{font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.05em; color:var(--ink-soft); font-weight:600;}
table.cmp td:first-child, table.cmp th:first-child{text-align:left; font-weight:600; color:var(--navy);}
table.cmp th.us{background:var(--navy); color:var(--white); border-radius:8px 8px 0 0;}
table.cmp td.us{background:rgba(0,212,184,0.06); font-weight:700; color:var(--teal-dim);}
table.cmp tr:last-child td{border-bottom:none;}
.yes{color:var(--teal-dim); font-weight:700;}
.no{color:#C4C2DC;}

/* ── PRECIOS ── */
.precios-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.plan{background:var(--white); border:1px solid var(--line); border-radius:16px; padding:32px 28px; position:relative;}
.plan.destacado{border-color:var(--teal); box-shadow:0 12px 32px rgba(0,212,184,0.14);}
.plan .tag{position:absolute; top:-12px; right:24px; background:var(--teal); color:var(--navy); font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; font-family:'IBM Plex Mono',monospace;}
.plan h3{font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-soft); font-family:'IBM Plex Mono',monospace; margin-bottom:14px;}
.plan .precio{font-size:36px; font-weight:700; color:var(--navy); margin-bottom:4px;}
.plan .precio span{font-size:14px; color:var(--ink-soft); font-weight:500;}
.plan .desc{font-size:13.5px; color:var(--ink-soft); margin-bottom:22px;}
.plan ul{list-style:none; margin-bottom:26px;}
.plan li{font-size:14px; padding:8px 0; border-top:1px solid var(--line); display:flex; gap:8px;}
.plan li:first-child{border-top:none;}
.plan li::before{content:"✓"; color:var(--teal-dim); font-weight:700;}

/* ── DEMO CTA ── */
.demo{background:var(--navy); color:var(--white); border-radius:24px; margin:0 24px; padding:64px 48px; text-align:center; position:relative; overflow:hidden;}
.demo h2{color:var(--white); font-size:clamp(26px,4vw,38px); margin-bottom:14px;}
.demo p{color:#C7C5E8; max-width:520px; margin:0 auto 30px;}

/* ── CONTACTO ── */
.contacto-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
.form input, .form textarea, .form select{width:100%; padding:13px 14px; border:1px solid var(--line); border-radius:8px; font-family:inherit; font-size:14px; background:var(--white); margin-bottom:14px;}
.form label{font-size:12px; font-weight:600; color:var(--ink-soft); display:block; margin-bottom:6px; font-family:'IBM Plex Mono',monospace; text-transform:uppercase; letter-spacing:0.04em;}
.form textarea{min-height:110px; resize:vertical;}
.contacto-info h3{font-size:15px; margin-bottom:6px;}
.contacto-info .item{margin-bottom:24px;}
.contacto-info p{color:var(--ink-soft); font-size:14px;}

/* ── FOOTER ── */
footer{background:var(--navy2); color:#B5B3DE; padding:56px 0 28px; font-size:13.5px;}
.footgrid{display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px;}
footer h4{color:var(--white); font-size:13px; margin-bottom:14px; font-family:'IBM Plex Mono',monospace; text-transform:uppercase; letter-spacing:0.05em;}
footer ul{list-style:none;}
footer li{margin-bottom:9px;}
footer a:hover{color:var(--teal);}
.footbottom{border-top:1px solid rgba(255,255,255,0.1); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; color:#8583B0; font-size:12px;}

@media(max-width:920px){
  .navlinks{display:none;}
  .hero-grid{grid-template-columns:1fr;}
  .problema-grid{grid-template-columns:1fr;}
  .modulos-grid{grid-template-columns:repeat(2,1fr);}
  .precios-grid{grid-template-columns:1fr;}
  .contacto-grid{grid-template-columns:1fr;}
  .footgrid{grid-template-columns:1fr 1fr;}
  .map-stage{height:340px;}
}
