:root{
  --bg0:#050a14;
  --bg1:#07142a;
  --bg2:#0a2e5f;
  --line:rgba(255,255,255,.10);
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.76);
  --muted2:rgba(234,241,255,.60);
  --brand:#29a7ff;
  --brand2:#0b5cff;
  --radius:18px;
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(41,167,255,.20), transparent 62%),
    radial-gradient(900px 600px at 88% 8%, rgba(11,92,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 35%, var(--bg0));
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{max-width:var(--max);margin:0 auto;padding:0 20px}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background:rgba(5,10,20,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo{
  width:44px;
  height:44px;
  border-radius:14px;
  background:#fff;
  padding:6px;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.brand-name{
  font-weight:900;
  letter-spacing:.3px;
  white-space:nowrap;
}

.nav-links{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;align-items:center}
.link{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
}
.link:hover{background:rgba(255,255,255,.07)}

.btn{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(41,167,255,.95), rgba(11,92,255,.95));
  color:#061020;
  font-weight:900;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}
.btn:hover{filter:brightness(1.03)}

/* WhatsApp CTA */
.btn-wa{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(37,211,102,.96), rgba(18,140,126,.96));
  color:#061020;
  font-weight:950;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}
.btn-wa:hover{filter:brightness(1.03)}
.btn-wa svg{width:18px;height:18px}

.hero{padding:52px 0 26px}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:center}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
}
.kicker-dot{width:8px;height:8px;border-radius:999px;background:var(--brand)}

.h1{font-size:44px;line-height:1.05;margin:14px 0 12px;font-weight:950;letter-spacing:-.5px}
.lead{font-size:18px;color:var(--muted);margin:0 0 18px}

.hero-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.ghost{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.03);
  font-weight:800;
}
.ghost:hover{background:rgba(255,255,255,.06)}

.card{
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.card.pad{padding:18px}

.quick{
  display:grid;
  gap:12px;
}
.quick-item{
  border-radius:16px;
  padding:14px 14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.quick-title{font-weight:900;margin:0 0 4px}
.quick-text{margin:0;color:var(--muted2)}

.section{padding:44px 0}
.section-title{font-size:26px;margin:0 0 10px;font-weight:950}
.section-sub{margin:0 0 18px;color:var(--muted)}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

.service{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.service h3{margin:0 0 6px;font-size:16px;font-weight:950}
.service p{margin:0;color:var(--muted2)}

.team{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.person{padding:16px}
.person-top{display:flex;gap:12px;align-items:center}
.avatar{
  width:62px;height:62px;border-radius:18px;overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
.avatar img{width:100%;height:100%;object-fit:cover}
.person-name{margin:0;font-weight:950}
.person-role{margin:2px 0 0;color:var(--muted2);font-weight:700;font-size:13px}
.person p{margin:12px 0 0;color:var(--muted);font-size:14px}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.gallery a{
  display:block;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}
.gallery img{width:100%;height:100%;object-fit:cover}

.notice{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}
.notice strong{color:var(--text)}

.footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted2);
}
.footer-grid{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.floating{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg, rgba(41,167,255,.92), rgba(11,92,255,.92));
  color:#061020;
  font-weight:950;
  box-shadow:0 16px 28px rgba(0,0,0,.42);
}
.floating svg{width:18px;height:18px}
.floating-wa{
  background:linear-gradient(135deg, rgba(37,211,102,.96), rgba(18,140,126,.96));
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .team{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .nav-links{display:none}
}
