:root{
  --bg:#ffffff;
  --bg2:#f7f9fc;
  --panel:#ffffff;
  --panel2:#ffffff;
  --text:#0f172a;        /* slate-900 */
  --muted:#64748b;       /* slate-500 */
  --line:rgba(15,23,42,.10);
  --shadow:0 18px 50px rgba(2,6,23,.08);
  --shadow2:0 10px 30px rgba(2,6,23,.06);
  --brand:#1e3a8a;       /* navy */
  --brand2:#0f2e7a;      /* deeper navy */
  --brandSoft:rgba(30,58,138,.10);
  --ok:#16a34a;
  --r:18px;
  --r2:26px;
  --max:1120px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(30,58,138,.06), transparent 62%),
    radial-gradient(900px 520px at 90% 8%, rgba(2,132,199,.05), transparent 62%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:12px}
.brand{display:flex; align-items:center; gap:12px}
.brand-logo{
  height:42px; width:auto;
  border-radius:14px;
  background: #fff;
  border:1px solid rgba(15,23,42,.10);
  padding:6px;
}
.brand-name{font-size:15px; font-weight:900}
.brand-tag{color:var(--muted); font-size:12px; margin-top:2px}
.menu{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
.menu a{
  color:var(--muted);
  font-weight:900; font-size:14px;
  padding:10px 10px; border-radius:14px;
}
.menu a:hover{background: rgba(30,58,138,.06); color:var(--text)}
.menu a.active{
  background: var(--brandSoft);
  border:1px solid rgba(30,58,138,.18);
  color:var(--text);
}
.nav-actions{display:flex; gap:10px; align-items:center}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border:1px solid rgba(15,23,42,.12);
  padding:11px 14px; border-radius:14px;
  font-weight:900; font-size:14px;
  background: #fff;
  cursor:pointer; transition:.2s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.btn-primary{
  border:none;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
  box-shadow: 0 14px 34px rgba(30,58,138,.20);
}
.btn-ghost{background:transparent}
.hamburger{display:none}
.hide-mobile{display:inline}
.mobile{display:none; border-top:1px solid var(--line); padding:10px 0 14px}
.mobile a{
  display:block; padding:12px 10px; border-radius:14px;
  color:var(--muted); font-weight:900;
}
.mobile a:hover{background: rgba(30,58,138,.06); color:var(--text)}
.mobile.show{display:block}

/* HERO */
.hero{padding:44px 0 16px}
.grid-hero{display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:stretch}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  padding:10px 12px; border-radius:999px;
  color:var(--muted); font-weight:900; font-size:13px;
  width:fit-content;
}
.dot{width:8px;height:8px;border-radius:999px;background:var(--brand)}
h1{margin:14px 0 10px; font-size: clamp(28px, 3.4vw, 46px); line-height:1.12; letter-spacing:-.6px}
.sub{color:var(--muted); font-size:16px; max-width:62ch}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:18px}
.stat{
  border:1px solid var(--line);
  background:#fff;
  padding:14px; border-radius: var(--r);
  box-shadow: var(--shadow2);
}
.stat .n{font-weight:1000; font-size:18px}
.stat .t{color:var(--muted); font-size:12px; margin-top:4px}

/* CARDS */
.card{
  border:1px solid var(--line);
  background:#fff;
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.hero-card{padding:18px}
.hero-card h3{margin:0 0 8px; font-size:16px}
.hero-card p{margin:0; color:var(--muted); font-size:13px}
.badge-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  font-size:12px; font-weight:1000;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(30,58,138,.04);
  color:var(--text);
}
.badge b{color:var(--brand)}
.hero-media{
  border:1px solid var(--line);
  border-radius: var(--r2);
  overflow:hidden;
  background: #fff;
  margin-top:14px;
  box-shadow: var(--shadow2);
}
.hero-media img{display:block; width:100%; height:240px; object-fit:cover}

/* PAGE */
.page{padding:26px 0 16px}
.page-head{
  border:1px solid var(--line);
  background:#fff;
  border-radius: var(--r2);
  padding:16px; margin-bottom:14px;
  box-shadow: var(--shadow2);
}
.page-title{margin:0; font-size:26px}
.page-lead{margin:8px 0 0; color:var(--muted)}
.lead{color:var(--muted); font-size:15px}

.section{padding:26px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:16px}
.section h2{margin:0; font-size: clamp(20px, 2.2vw, 30px)}
.section p.lead{margin:6px 0 0; color:var(--muted); max-width:75ch}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
.item{
  padding:16px; border-radius: var(--r2);
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow2);
}
.item h4{margin:0 0 6px; font-size:15px}
.item p{margin:0; color:var(--muted); font-size:13px}
.kpi{display:flex; gap:10px; align-items:center; margin-top:10px; color:var(--muted); font-size:12px; flex-wrap:wrap}
.kpi span{
  border:1px solid rgba(15,23,42,.10);
  background: rgba(30,58,138,.04);
  padding:6px 8px; border-radius:999px
}

/* SPLIT */
.split{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.timeline{display:flex; flex-direction:column; gap:10px}
.step{
  padding:14px; border:1px solid var(--line);
  background:#fff; border-radius: var(--r2);
  box-shadow: var(--shadow2);
}
.step .top-left{display:flex; gap:10px; align-items:center}
.no{
  width:30px;height:30px;border-radius:12px;
  background: var(--brandSoft);
  border:1px solid rgba(30,58,138,.18);
  display:grid; place-items:center;
  font-weight:1000; color:var(--brand);
}
.step h4{margin:0; font-size:14px}
.step p{margin:8px 0 0; color:var(--muted); font-size:13px}
.quote{
  padding:18px; border-radius: var(--r2);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(30,58,138,.08), transparent 60%),
    radial-gradient(600px 300px at 90% 30%, rgba(2,132,199,.06), transparent 60%),
    #fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.quote-title{font-weight:1000; font-size:16px; margin:0 0 10px}
.list{margin:14px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
.list li{display:flex; gap:10px; color:var(--muted); font-size:13px}
.tick{
  width:18px;height:18px;border-radius:6px;
  border:1px solid rgba(22,163,74,.25);
  background: rgba(22,163,74,.10);
  display:grid; place-items:center;
  color:var(--ok); flex:0 0 auto; margin-top:1px; font-weight:1000
}

/* FAQ */
details{
  border:1px solid var(--line);
  background:#fff;
  border-radius: var(--r2);
  padding:14px 16px;
  box-shadow: var(--shadow2);
}
summary{cursor:pointer; font-weight:1000; display:flex; justify-content:space-between; gap:10px; list-style:none}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); font-size:13px}

/* CONTACT */
.contact{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
form{display:flex; flex-direction:column; gap:10px}
input,textarea,select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background: #fff;
  color:var(--text);
  padding:12px 12px;
  outline:none;
  font: inherit;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
input:focus,textarea:focus,select:focus{
  border-color: rgba(30,58,138,.40);
  box-shadow: 0 0 0 4px rgba(30,58,138,.10);
}
textarea{min-height:120px; resize:vertical}
.note{color:var(--muted); font-size:12px; margin-top:8px}

/* FOOTER */
.footer{
  padding:22px 0 34px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  background: var(--bg2);
}
.footer-cols{display:grid; grid-template-columns: 1.2fr .9fr .9fr; gap:14px; padding:18px 0}
.footer-title{font-weight:1000; color:var(--text)}
.footer-h{font-weight:1000; color:var(--text); margin-bottom:10px}
.footer-links{display:grid; gap:8px}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-bottom{border-top:1px solid var(--line); padding-top:14px}

/* FLOATING WA */
.whatsapp-fab{
  position:fixed; right:18px; bottom:18px; z-index:70;
  border:none; border-radius:999px; padding:12px 14px;
  box-shadow: 0 18px 50px rgba(2,6,23,.14);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color:#052e16; font-weight:1000;
  cursor:pointer; display:flex; gap:10px; align-items:center
}
.whatsapp-fab span{
  display:inline-grid; place-items:center;
  width:28px; height:28px; border-radius:999px;
  background: rgba(255,255,255,.65);
  font-weight:1000
}

/* RESPONSIVE */
@media (max-width: 980px){
  .grid-hero{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .menu{display:none}
  .hamburger{display:inline-flex}
  .hide-mobile{display:none}
  .footer-cols{grid-template-columns:1fr}
}
