:root{
  --bg:#0b1220;
  --panel:#0f1a33;
  --card:#111f3f;
  --text:#eaf0ff;
  --muted:#b9c6e6;
  --line:rgba(255,255,255,.10);
  --accent:#5da8ff;
  --accent2:#7cf3c8;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1200px 600px at 20% -10%, rgba(93,168,255,.25), transparent 55%),
             radial-gradient(900px 500px at 90% 10%, rgba(124,243,200,.18), transparent 60%),
             var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(12px);
  background:rgba(11,18,32,.65);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  font-weight:800;
  letter-spacing:-.03em;
}
.brand span{color:var(--muted); font-weight:700}
.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600}
.nav a:hover{color:var(--text)}
.hamburger{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  padding:8px 10px;
  border-radius:10px;
  font-size:16px;
}

.mobilemenu{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobilemenu a{
  display:block;
  padding:10px 0;
  color:var(--muted);
  font-weight:700;
}

.hero{padding:56px 0 24px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:24px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  border:1px solid var(--line);
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  background:rgba(255,255,255,.03);
}
h1{
  margin:14px 0 10px;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-.04em;
}
.sub{color:var(--muted); font-size:16px; max-width:54ch}
.cta{display:flex; gap:12px; margin:18px 0 18px}

.trust{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.trust__item{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  min-width:120px;
  background:rgba(255,255,255,.03);
}
.trust__num{font-weight:800}
.trust__txt{color:var(--muted); font-weight:700}

.section{padding:42px 0}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 6px;
  font-size:28px;
  letter-spacing:-.03em;
}
.section__head p{margin:0;color:var(--muted); font-weight:600}

.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:18px;
  padding:18px;
}
.card--highlight{
  outline:2px solid rgba(93,168,255,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.tag{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(93,168,255,.10);
  color:var(--text);
  margin-bottom:10px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price{
  font-size:34px;
  margin:8px 0 8px;
  font-weight:900;
  letter-spacing:-.03em;
}
.list{margin:0; padding-left:18px; color:var(--muted); font-weight:600}
.list li{margin:8px 0}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step__num{
  width:34px;height:34px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  background:rgba(124,243,200,.12);
  border:1px solid var(--line);
  margin-bottom:10px;
}

.chips{display:flex; flex-wrap:wrap; gap:10px}
.chip{
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  color:var(--muted);
  font-weight:800;
  background:rgba(255,255,255,.03);
  font-size:13px;
}

.note{margin-top:14px}
.note h3{margin:0 0 6px}
.note p{margin:0 0 12px; color:var(--muted); font-weight:600}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;
  color:var(--text);
  background:rgba(255,255,255,.03);
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}
.btn--full{width:100%}
.btn--primary{
  background:linear-gradient(135deg, rgba(93,168,255,.95), rgba(124,243,200,.70));
  border-color: rgba(255,255,255,.22);
  color:#081021;
}
.btn--ghost{
  background:rgba(255,255,255,.03);
}

.stack{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.fine{color:rgba(234,240,255,.72); font-size:12.5px; font-weight:600; margin-top:12px}

.book{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.book__buttons{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 8px}
.book__buttons .btn{width:100%}

.faq details{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  margin:10px 0;
  background:rgba(255,255,255,.03);
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{margin:10px 0 0; color:var(--muted); font-weight:600}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand--footer{color:var(--text)}
.footer__links{display:flex; gap:14px; font-weight:700}
.footer__links a:hover{color:var(--text)}

@media (max-width: 900px){
  h1{font-size:40px}
  .hero__inner{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .book{grid-template-columns: 1fr}
  .nav{display:none}
  .hamburger{display:inline-flex}
}
