﻿:root{
  --bg:#0b1220;
  --card:#0f1a31;
  --card2:#0c162a;
  --text:#e9eefc;
  --muted:#b8c4e8;
  --line:rgba(255,255,255,.10);
  --accent:#4f7cff;
  --accent2:#6ee7ff;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: radial-gradient(1000px 500px at 20% -10%, rgba(79,124,255,.35), transparent 60%),
              radial-gradient(800px 500px at 90% 0%, rgba(110,231,255,.20), transparent 55%),
              radial-gradient(900px 700px at 50% 100%, rgba(79,124,255,.18), transparent 60%),
              var(--bg);
}

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

.topbar{
  position:sticky;top:0;z-index:50;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}

.brand{display:flex;gap:10px;align-items:center}
.brand__mark{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(79,124,255,.95), rgba(110,231,255,.75));
  color:#0b1220;font-weight:800;letter-spacing:.5px;
  box-shadow: var(--shadow);
}
.brand__text{font-weight:700;letter-spacing:.2px}

.nav{display:flex;gap:18px;align-items:center}
.nav a{color:var(--muted);font-weight:600}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;
  background: linear-gradient(135deg, rgba(79,124,255,.95), rgba(110,231,255,.85));
  color:#071022;font-weight:800;border:0;cursor:pointer;
  box-shadow: 0 16px 40px rgba(79,124,255,.25);
}
.btn--ghost{
  background: transparent;color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--ghost:hover{border-color:rgba(255,255,255,.22)}
.btn--sm{padding:10px 12px;border-radius:12px;font-weight:800}
.btn--full{width:100%}

.hero{position:relative;padding:58px 0 10px;overflow:hidden}
.hero__grid{display:grid;grid-template-columns:1.2fr .9fr;gap:28px;align-items:start}
.hero__bg{
  position:absolute;inset:-80px -120px auto -120px;height:420px;
  background: radial-gradient(600px 220px at 40% 50%, rgba(79,124,255,.35), transparent 60%),
              radial-gradient(520px 240px at 70% 40%, rgba(110,231,255,.20), transparent 65%);
  filter: blur(18px);
  pointer-events:none;
}

.pill{
  display:inline-flex;gap:10px;align-items:center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:8px 12px;border-radius:999px;
  color:var(--muted);font-weight:700;
}
h1{font-size:44px;line-height:1.05;margin:14px 0 12px}
.lead{color:var(--muted);font-size:17px;line-height:1.6;max-width:58ch}
.cta{display:flex;gap:12px;margin:18px 0 16px;flex-wrap:wrap}

.trust{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:12px;margin-top:10px
}
.trust__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;padding:12px;
}
.trust__k{color:var(--muted);font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.12em}
.trust__v{font-weight:800;margin-top:6px}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,26,49,.90), rgba(12,22,42,.85));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card--flat{padding:18px}
.card__head{padding:18px 18px 0}
.card__head h2{margin:0 0 6px;font-size:20px}
.card__head p{margin:0;color:var(--muted)}

.form{padding:18px;display:grid;gap:12px}
label{display:grid;gap:7px;color:var(--muted);font-weight:700;font-size:13px}
input,textarea{
  width:100%;
  padding:12px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,16,34,.55);
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{border-color: rgba(110,231,255,.45)}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.fineprint{color:rgba(233,238,252,.72);font-size:12px;line-height:1.45;margin:0}

.section{padding:50px 0}
.section--alt{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px;font-size:28px}
.section__head p{margin:0;color:var(--muted)}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.listing{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.listing__meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.tag{
  font-size:12px;font-weight:800;letter-spacing:.06em;
  padding:6px 10px;border-radius:999px;
  background: rgba(79,124,255,.16);
  border:1px solid rgba(79,124,255,.28);
  color: rgba(233,238,252,.92);
}
.tag--soft{
  background: rgba(110,231,255,.10);
  border-color: rgba(110,231,255,.22);
}
.listing h3{margin:0 0 6px;font-size:18px}
.listing__price{margin:0 0 10px;color:var(--muted);font-weight:800}
.bullets{margin:0;padding-left:18px;color:rgba(233,238,252,.82);line-height:1.6}
.link{display:inline-block;margin-top:12px;color:rgba(110,231,255,.95);font-weight:900}
.link:hover{text-decoration:underline}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;display:flex;gap:12px;
}
.step__n{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(79,124,255,.18);
  border:1px solid rgba(79,124,255,.32);
  font-weight:900;
}

.contact{display:grid;grid-template-columns:1.2fr .8fr;gap:14px;align-items:start}
.lead2{color:var(--muted);margin:0 0 18px}
.contact__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:12px}
.contact__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;padding:12px
}
.contact__k{color:var(--muted);font-weight:800;font-size:12px;text-transform:uppercase;letter-spacing:.12em}
.contact__v{display:inline-block;margin-top:6px;font-weight:900}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0;color:rgba(233,238,252,.76)
}
.footer__inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.footer__right{display:flex;gap:14px}
.footer__right a:hover{text-decoration:underline}

@media (max-width: 960px){
  .hero__grid{grid-template-columns:1fr;gap:16px}
  h1{font-size:38px}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .contact__grid{grid-template-columns:1fr}
  .nav{display:none}
}
