:root{
  --bg:#0b1220;
  --card:#0f1a30;
  --card2:#0c162b;
  --text:#e8eefc;
  --muted:#b9c6e6;
  --accent:#6aa7ff;
  --accent2:#7cffa6;
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 15% 10%, rgba(106,167,255,.18), transparent 60%),
              radial-gradient(900px 600px at 85% 20%, rgba(124,255,166,.10), transparent 55%),
              linear-gradient(180deg, #070b14, var(--bg));
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }

.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.72);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(106,167,255,.85), rgba(124,255,166,.55));
  color:#071023;
}
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ font-size:13px; color:var(--muted); margin-top:2px; }

.header-cta{ display:flex; align-items:center; gap:12px; }
.phone{
  font-weight:700;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background: rgba(255,255,255,.04);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  border-radius:14px;
  padding:11px 14px;
  border:1px solid var(--border);
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  border-color: rgba(106,167,255,.45);
  background: linear-gradient(135deg, rgba(106,167,255,.95), rgba(106,167,255,.55));
  color:#071023;
}
.btn-outline{
  background: rgba(255,255,255,.04);
}
.btn-lg{ padding:14px 16px; border-radius:16px; }
.w-full{ width:100%; }

.hero{ padding:44px 0 22px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:26px;
  align-items:start;
}
h1{
  font-size: clamp(34px, 4.3vw, 52px);
  line-height:1.05;
  margin: 10px 0 12px;
  letter-spacing:-.8px;
}
.accent{ color: var(--accent); }
.lead{
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin:18px 0 14px; }

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.trust-item{
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.03);
}
.trust-title{ font-weight:800; font-size:14px; }
.trust-desc{ color:var(--muted); font-size:13px; margin-top:4px; }

.card{
  border:1px solid var(--border);
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-head{ padding:16px 16px 10px; }
.card-title{ font-weight:900; letter-spacing:.2px; }
.card-sub{ color:var(--muted); font-size:13px; margin-top:4px; }

.video-wrap{ padding: 0 12px 12px; }
video{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:#050a14;
}
.card-foot{
  display:flex; gap:10px; padding: 0 12px 14px;
}

.section{ padding: 36px 0; }
.section.alt{
  background: linear-gradient(180deg, rgba(106,167,255,.08), rgba(124,255,166,.05));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{ margin-bottom:18px; }
.section-head h2{ margin:0 0 6px; font-size:28px; letter-spacing:-.4px; }
.section-head p{ margin:0; color:var(--muted); }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  padding:16px;
  border:1px solid var(--border);
  border-radius:20px;
  background: rgba(255,255,255,.03);
}
.feature h3{ margin:0 0 8px; font-size:16px; }
.feature p{ margin:0; color:var(--muted); line-height:1.55; }

.cta{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:stretch;
}
.cta-copy h2{ margin:0 0 8px; font-size:30px; letter-spacing:-.5px; }
.cta-copy p{ margin:0 0 12px; color:var(--muted); line-height:1.6; }
.bullets{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.bullets li{ margin: 8px 0; }

.cta-box{
  border:1px solid rgba(106,167,255,.35);
  border-radius:22px;
  background: rgba(7,16,35,.55);
  padding:16px;
  box-shadow: var(--shadow);
}
.cta-box-title{ font-weight:900; margin-bottom:10px; }
.cta-box-number a{
  display:inline-block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .3px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(106,167,255,.18);
  border:1px solid rgba(106,167,255,.35);
}
.cta-box-note{ color:var(--muted); font-size:13px; margin:10px 0 12px; line-height:1.5; }
.divider{ height:1px; background: var(--border); margin:14px 0; }
.small{ font-size:13px; color: var(--muted); line-height:1.5; }

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.checklist{
  padding:16px;
  border:1px solid var(--border);
  border-radius:20px;
  background: rgba(255,255,255,.03);
}
.checklist h3{ margin:0 0 10px; font-size:16px; }
.checklist ul{ margin:0; padding-left: 18px; color: var(--muted); }
.checklist li{ margin: 8px 0; }

.note{
  margin-top:14px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(124,255,166,.24);
  background: rgba(124,255,166,.06);
  color: var(--muted);
  line-height:1.6;
}

.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(0,0,0,.12);
}
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.footer-small{ color:var(--muted); font-size:13px; margin-top:4px; }
.footer-link{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background: rgba(255,255,255,.04);
  font-weight:700;
}

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
  .header-inner{ flex-direction: column; align-items: stretch; }
  .header-cta{ justify-content: space-between; }
  .cta-box-number a{ font-size:24px; }
}
