:root{
  --bg:#0b1220;
  --text:#eaf0ff;
  --muted:#b8c4e6;
  --accent:#6ee7ff;
  --border:rgba(255,255,255,.12);
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
  --container:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 700px at 10% -10%, rgba(110,231,255,.25), transparent 60%),
              linear-gradient(180deg, var(--bg), #070b14 70%);
  color:var(--text);
  line-height:1.5;
}

.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

.header{
  position:sticky; top:0; z-index:40;
  background:rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{display:flex; gap:10px; align-items:center}
.brand__logo{font-size:24px}
.brand__name{font-weight:900}
.brand__tag{color:var(--muted); font-size:12px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid var(--border);
  text-decoration:none; color:inherit;
  font-weight:900; background:rgba(255,255,255,.03);
}
.btn--primary{
  background:rgba(110,231,255,.12);
  border-color:rgba(110,231,255,.28);
}
.btn--ghost{opacity:.92}
.btn--lg{padding:12px 16px}
.btn--block{width:100%; border-radius:14px; padding:12px 16px}

.hero{padding:34px 0 18px}
.hero__grid{display:grid; gap:18px; grid-template-columns:1fr}
.hero__left, .hero__right{
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  border-radius:22px;
  padding:22px;
  box-shadow: var(--shadow);
}
.badge{
  display:inline-flex; padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(110,231,255,.25);
  background: rgba(110,231,255,.10);
  font-weight:900;
}
h1{margin:10px 0; font-size:36px; line-height:1.1}
.accent{color:var(--accent)}
.lead{color:var(--muted); margin:0 0 14px}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap}
.trust{margin:14px 0 0; padding-left:18px; color:var(--muted)}

.section{padding:34px 0}
.section--alt{
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.muted{color:var(--muted); margin:0 0 18px}
.cards{display:grid; gap:14px; grid-template-columns:1fr}
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

.cta-strip{
  margin-top:16px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(110,231,255,.22);
  background: rgba(110,231,255,.06);
}

.form{display:grid; gap:10px; margin-top:10px}
label{display:grid; gap:6px; font-weight:900}
input, select{
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(255,255,255,.02);
  color: var(--text);
  padding:12px;
  font-size:16px;
}
.fineprint{font-size:12px; color: rgba(184,196,230,.85); margin:0}

.footer{padding:26px 0 90px; border-top:1px solid rgba(255,255,255,.06)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; color:rgba(184,196,230,.85)}

.sticky-call{
  position:fixed; left:0; right:0; bottom:0;
  padding:12px 16px;
  background: rgba(11,18,32,.88);
  border-top:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.sticky-call__btn{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(110,231,255,.28);
  background: rgba(110,231,255,.10);
  text-decoration:none; color:inherit;
  display:flex; justify-content:center; gap:10px;
  font-weight:1000;
}

@media (min-width: 900px){
  .hero__grid{grid-template-columns: 1.1fr .9fr}
  .cards{grid-template-columns: repeat(3, 1fr)}
  .sticky-call{display:none}
  h1{font-size:44px}
}
