:root{
  --bg:#0b1220;
  --bg2:#070b14;
  --card: rgba(15,27,51,.62);
  --text:#e7eefc;
  --muted:#a8b6d6;
  --line: rgba(255,255,255,.12);
  --accent:#38bdf8;
  --radius:18px;
  --max:1120px;
  --shadow: 0 14px 44px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 20% 0%, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(255,0,0,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2) 70%);
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
  flex-wrap:wrap;
}

.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900; letter-spacing:.2px;
}
.brand img{
  height:38px; width:auto; display:block;
  border-radius:10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
}
.links{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.links a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
  transition:.15s;
}
.links a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.links a.cta{
  background: rgba(56,189,248,.14);
  border:1px solid rgba(56,189,248,.30);
  color:var(--text);
}

main{padding:34px 0 24px}

.card{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}

.hero h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.8px;
}
@media(max-width:520px){ .hero h1{font-size:34px} }

.sub{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  max-width: 70ch;
}

.btnrow{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  transition:.15s;
}
.btn:hover{transform:translateY(-1px); background: rgba(255,255,255,.09)}
.btn.primary{
  border:1px solid rgba(56,189,248,.38);
  background: linear-gradient(135deg, rgba(56,189,248,.30), rgba(255,0,0,.10));
}

.grid3{
  display:grid; gap:12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top:14px;
}
@media(max-width:900px){ .grid3{grid-template-columns:1fr} }

.box{
  border:1px solid var(--line);
  background: rgba(15,27,51,.50);
  border-radius: var(--radius);
  padding:16px;
}
.box h3{margin:0 0 8px; font-size:16px}
.box p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}

.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  margin-bottom:12px;
}
.section-title h2{margin:0; font-size:22px}
.section-title p{margin:0; color:var(--muted); font-size:14px}

.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.85;
  font-size:14px;
}

.two{
  display:grid; gap:12px;
  grid-template-columns: 1fr 1fr;
}
@media(max-width:900px){ .two{grid-template-columns:1fr} }

.kv{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius:14px;
  padding:14px;
}
.kv .k{
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.45px;
}
.kv .v{
  margin-top:6px;
  font-weight:900;
}

.footer{
  margin-top:18px;
  padding:18px 0 34px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

/* WhatsApp floating button */
.wa{
  position:fixed;
  right:18px;
  bottom:18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#062b14;
  border-radius:999px;
  padding:12px 14px;
  font-weight:900;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  z-index:9999;
}
.wa svg{width:18px;height:18px}
.wa:hover{filter:brightness(1.04); transform: translateY(-1px)}
