:root{
  --bg:#0b1220;
  --card:#0f1a33;
  --muted:#9fb0d0;
  --text:#e9f0ff;
  --accent:#57a5ff;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(87,165,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(120,87,255,.12), transparent 65%),
    var(--bg);
}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
a{color:inherit; text-decoration:none}
code{background:rgba(255,255,255,.08); padding:2px 6px; border-radius:10px}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand__dot{width:12px; height:12px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 6px rgba(87,165,255,.18)}
.brand__name{letter-spacing:.2px}

.nav{display:flex; gap:18px; margin-left:12px}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}
.header__cta{margin-left:auto}

.burger{
  display:none; margin-left:auto;
  width:44px; height:40px;
  border:1px solid var(--line);
  background:transparent;
  border-radius:14px;
}
.burger span{display:block; height:2px; background:var(--text); margin:6px 10px; border-radius:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  transition: transform .08s ease, background .2s ease;
  font-weight:600;
}
.btn:active{transform:scale(.98)}
.btn--primary{
  background: linear-gradient(135deg, rgba(87,165,255,1), rgba(87,165,255,.70));
  border-color: transparent;
  color:#07101f;
}
.btn--ghost{background: rgba(255,255,255,.04)}
.btn--ghost:hover{background: rgba(255,255,255,.07)}

.hero{padding:58px 0 26px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:start;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background: rgba(255,255,255,.04);
  margin:0 0 14px;
}
h1{font-size:42px; line-height:1.05; margin:0 0 14px}
.accent{color:var(--accent)}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}
.hero__stats{display:flex; gap:12px; flex-wrap:wrap}
.stat{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  min-width: 160px;
}
.stat__num{font-weight:700}
.stat__txt{color:var(--muted); font-size:13px; margin-top:3px}

.card, .tile, .panel, .infoCard, .form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.hero__card .card{padding:18px}
.card h3{margin:0 0 10px}
.checklist{margin:0; padding-left:18px; color:var(--muted); line-height:1.6}
.card__note{margin-top:12px; color:var(--muted); border-top:1px solid var(--line); padding-top:12px}

.section{padding:42px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:28px}
.section__head p{margin:0; color:var(--muted); line-height:1.6}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid--2{grid-template-columns: repeat(2, 1fr)}
.tile{padding:16px}
.tile h3{margin:0 0 6px}
.tile p{margin:0; color:var(--muted); line-height:1.6}

.panel{padding:18px}
.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.infoCard{padding:18px}
.infoActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.muted{color:var(--muted); font-size:13px; line-height:1.6}

.form{padding:18px}
label{display:block; font-weight:600; margin-bottom:12px}
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(87,165,255,.7)}
.form button{width:100%; margin-top:6px}

.footer{
  padding:24px 0 40px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  flex-wrap:wrap;
}
.footer__links{display:flex; gap:14px}

.wa-float{
  position:fixed; right:16px; bottom:16px; z-index:60;
  width:54px; height:54px;
  display:flex; align-items:center; justify-content:center;
  border-radius:999px;
  background: rgba(87,165,255,1);
  color:#07101f;
  font-weight:800;
  border:none;
  box-shadow: 0 14px 30px rgba(87,165,255,.25);
}

@media (max-width: 940px){
  h1{font-size:34px}
  .hero__grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .nav{display:none}
  .burger{display:inline-block}
  .header__cta{display:none}
  .grid{grid-template-columns:1fr}
}

.logo{height:34px;width:auto;display:block}

.hero-img{
  width:100%;
  border-radius:18px;
  margin-bottom:14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.service-img{
  width:100%;
  border-radius:14px;
  margin-bottom:10px;
  display:block;
}
