:root{
  --bg:#0b1220;
  --card:#111a2e;
  --text:#eef2ff;
  --muted:#b9c2d8;
  --accent:#38bdf8;
  --accent2:#22c55e;
  --border:rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max: 980px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(56,189,248,.35), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(34,197,94,.25), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:18px 16px 40px}
.navbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:var(--max); margin:0 auto; padding:10px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.brand{
  display:flex; flex-direction:column; gap:2px;
}
.brand strong{font-size:16px; letter-spacing:.2px}
.brand span{font-size:12px; color:var(--muted)}
.lang{
  display:flex; gap:6px; align-items:center;
  padding:6px; border:1px solid var(--border); border-radius:999px;
  background: rgba(255,255,255,.03);
}
.lang button{
  appearance:none; border:0; cursor:pointer;
  padding:8px 10px; border-radius:999px;
  background: transparent; color:var(--muted); font-weight:700; font-size:12px;
}
.lang button.active{background: rgba(56,189,248,.18); color:var(--text)}
.hero{
  padding:22px 0 14px;
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-top{
  padding:18px 16px 12px;
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size:12px; color:var(--muted);
}
.kicker b{color:var(--text)}
h1{
  margin:10px 0 8px;
  font-size:28px;
  line-height:1.12;
  letter-spacing:-.5px;
}
.lead{color:var(--muted); margin:0 0 14px; font-size:14.5px}
.cta-row{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:800;
  font-size:14px;
  min-height:44px;
}
.btn.primary{
  background: linear-gradient(180deg, rgba(34,197,94,.95), rgba(34,197,94,.75));
  border-color: rgba(34,197,94,.35);
}
.btn.secondary{
  background: linear-gradient(180deg, rgba(56,189,248,.95), rgba(56,189,248,.75));
  border-color: rgba(56,189,248,.35);
}
.btn:active{transform: translateY(1px)}
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:12px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px;
}
.card h2{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13.5px}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--muted);
}
.pricing{
  display:grid; grid-template-columns: 1fr; gap:10px;
}
.price{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.price .val{font-size:22px; font-weight:900}
.price small{color:var(--muted)}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted); font-size:13.5px}
.section-title{
  margin:18px 0 10px; font-size:16px; color:var(--text); letter-spacing:.2px
}
.locations{
  display:flex; flex-wrap:wrap; gap:8px;
}
.locations a{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700; font-size:12px;
}
.blog-list{display:grid; grid-template-columns:1fr; gap:10px}
.blog-item h3{margin:0 0 6px; font-size:15px}
.blog-item p{margin:0; color:var(--muted); font-size:13.5px}
.footer{
  margin-top:18px; padding-top:14px;
  border-top:1px solid var(--border);
  color:var(--muted); font-size:12.5px;
}
/* WhatsApp floating button */
.wa-fab{
  position:fixed; right:14px; bottom:14px; z-index:60;
  width:56px; height:56px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background: #25D366;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border:0; cursor:pointer;
}
.wa-fab svg{width:28px; height:28px; fill:#fff}
/* Responsive */
@media (min-width: 760px){
  h1{font-size:36px}
  .grid{grid-template-columns: 1.2fr .8fr}
  .pricing{grid-template-columns: 1fr 1fr}
  .blog-list{grid-template-columns: 1fr 1fr}
}