:root{
  --bg:#070b14;
  --bg2:#0b1220;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --brand:#4f9cff;
  --brand2:#38d9a9;
  --accent:#fbbf24;
  --radius: 20px;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --shadow2: 0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% 12%, rgba(79,156,255,.28), transparent 60%),
    radial-gradient(900px 650px at 78% 18%, rgba(56,217,169,.18), transparent 62%),
    radial-gradient(900px 700px at 55% 105%, rgba(251,191,36,.10), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{width:min(1160px, calc(100% - 32px)); margin:0 auto}
.grid{display:grid; gap:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  color: var(--text);
  font-weight: 750;
  letter-spacing:.2px;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); border-color: var(--stroke2); filter:brightness(1.03)}
.btn.primary{
  border-color: rgba(79,156,255,.35);
  background: linear-gradient(135deg, rgba(79,156,255,.98), rgba(56,217,169,.88));
  color:#06101f;
}
.btn.ghost{background: rgba(255,255,255,.04)}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  font-size:13px;
  color: var(--muted);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--stroke);
}
.kbd{
  font-size:12px; color: rgba(0,0,0,.82);
  padding:2px 8px; border-radius:999px;
  background: rgba(255,255,255,.86);
}
.card{
  position:relative;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.04));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(800px 400px at 30% 0%, rgba(79,156,255,.25), transparent 55%),
              radial-gradient(700px 380px at 80% 15%, rgba(56,217,169,.18), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.card > *{position:relative}
.card .inner{padding:18px}
.nav{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(16px);
  background: rgba(7,11,20,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav .row{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:12px; font-weight:900; letter-spacing:.3px}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 28px rgba(79,156,255,.22);
  position:relative;
}
.logo:after{
  content:""; position:absolute; inset:9px;
  border-radius:10px; border:2px solid rgba(7,11,20,.65);
}
.menu{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.menu a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.menu a:hover{color:var(--text); border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.04)}
.menu a.active{color:rgba(255,255,255,.92); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.10)}
.nav .mobile-btn{display:none}

.hero{padding:62px 0 26px}
.hero-grid{display:grid; gap:18px; grid-template-columns: 1.05fr .95fr; align-items:stretch}
.h1{font-size:46px; line-height:1.03; margin:14px 0 14px; letter-spacing:-1px}
.p{color:var(--muted); font-size:16px; margin:0 0 18px}
.p.small{font-size:14px; color:var(--muted2)}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.hero-illus{
  padding:14px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.hero-illus svg{width:100%; height:auto; display:block}
.hl{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04)}
.hl .ic{width:34px; height:34px; border-radius:14px; display:grid; place-items:center; color:#07101f; background: linear-gradient(135deg, rgba(79,156,255,.95), rgba(56,217,169,.85))}
.hl strong{display:block}
.section{padding:30px 0}
.section h2{font-size:28px; margin:0 0 10px; letter-spacing:-.4px}
.section p.lead{color:var(--muted); margin:0 0 16px}
.cols-4{grid-template-columns: repeat(4, minmax(0,1fr))}
.cols-3{grid-template-columns: repeat(3, minmax(0,1fr))}
.cols-2{grid-template-columns: repeat(2, minmax(0,1fr))}

.service{
  display:block;
  transition: transform .18s ease, filter .18s ease;
}
.service:hover{transform: translateY(-2px); filter:brightness(1.03)}
.service .top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.service h3{margin:10px 0 6px; font-size:18px}
.service p{margin:0; color:var(--muted); font-size:14px}
.chips{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.chip{
  font-size:12px; color:var(--muted);
  padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.stats{display:grid; gap:14px; grid-template-columns: repeat(3, minmax(0,1fr))}
.stat{
  padding:16px; border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.stat .num{font-size:26px; font-weight:900; letter-spacing:-.3px}
.stat .lbl{color:var(--muted); font-size:13px}

.steps{counter-reset: step}
.step{position:relative; padding:16px; border-radius:18px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04)}
.step:before{
  counter-increment: step;
  content: counter(step);
  position:absolute; top:14px; right:14px;
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(79,156,255,.22);
  border:1px solid rgba(79,156,255,.28);
}
.faq details{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px 14px;
}
.faq summary{cursor:pointer; font-weight:750}
.faq p{margin:10px 0 0; color:var(--muted)}
.quote{
  padding:16px; border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(79,156,255,.18), rgba(56,217,169,.10));
}
.quote .by{margin-top:10px; color:var(--muted); font-size:13px}
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:24px 0 90px;
  background: rgba(0,0,0,.12);
}
.footer .row{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.whatsapp-fab{
  position:fixed; right:16px; bottom:16px; z-index:80;
  display:flex; gap:10px; align-items:center;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, #25D366, #1fbf5e);
  color:#06210f;
  font-weight:900;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.whatsapp-fab small{display:none; font-weight:750; opacity:.85}
.whatsapp-fab:hover{filter:brightness(1.03)}

.breadcrumbs{font-size:13px; color:var(--muted); margin:10px 0 0}
.page-head{padding:30px 0 14px}
.page-head h1{margin:0; font-size:36px; letter-spacing:-.6px}
.page-head p{margin:10px 0 0; color:var(--muted)}
.prose p{color:var(--muted); margin:10px 0}
.prose ul{color:var(--muted); padding-left:18px}
.prose li{margin:6px 0}
.table{
  width:100%; border-collapse:collapse; overflow:hidden; border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  font-size:14px;
}
.table th{color:rgba(255,255,255,.82); background: rgba(255,255,255,.04)}
.table td{color:var(--muted)}

.reveal{opacity:0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease}
.reveal.in{opacity:1; transform: translateY(0)}


/* Mobile nav */
.nav .row{position:relative}
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  box-shadow: var(--shadow2);
}
.nav-toggle:hover{filter:brightness(1.04)}
.nav-panel{
  display:none;
  position:absolute;
  right:0;
  top:62px;
  width:min(360px, 100%);
  padding:10px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,20,.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.nav-panel a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  margin:6px 0;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  font-weight:800;
}
.nav-panel a span{color: rgba(255,255,255,.72); font-weight:650; font-size:13px}
.nav-panel a:hover{filter:brightness(1.03)}
.nav-panel .cta{margin-top:6px}
.nav-panel .cta a{
  background: linear-gradient(135deg, rgba(79,156,255,.98), rgba(56,217,169,.88));
  color:#06101f;
  border-color: rgba(79,156,255,.35);
}
.nav-panel.open{display:block}

@media (max-width: 980px){
  .menu{display:none}
  .nav .btn.primary{display:none}
  .nav-toggle{display:inline-flex}

  .hero-grid{grid-template-columns:1fr}
  .cols-4{grid-template-columns: repeat(2, minmax(0,1fr))}
  .cols-3{grid-template-columns: repeat(2, minmax(0,1fr))}
  .stats{grid-template-columns:1fr}
  .h1{font-size:40px}
}
@media (max-width: 560px){
  .nav-panel{left:0; right:0; width:100%; top:64px}

  .cols-4,.cols-3,.cols-2{grid-template-columns: 1fr}
  .h1{font-size:35px}
  .whatsapp-fab small{display:inline}
}

/* Soro blog overrides */
.soro-blog-card-title, .soro-blog-header, .soro-blog-back, .soro-blog-article-title, .soro-blog-article-content, .soro-blog-article-content h2 {color:#fff!important;}
.soro-blog-card-excerpt{color:rgba(255,255,255,.70)}
