:root{
  --bg:#0b1220;
  --panel:#0f1930;
  --panel2:#0d162b;
  --text:#eaf0ff;
  --muted:#aab6d6;
  --line:rgba(255,255,255,.08);
  --brand:#0c2cde; /* your blue */
  --brand2:#3a56ff;
  --good:#2ef2a3;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(12,44,222,.35), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(46,242,163,.12), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:12px; top:12px; width:auto; height:auto; padding:10px 12px; background:#000; border-radius:10px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(11,18,32,.85), rgba(11,18,32,.55));
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.logo-mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:800; letter-spacing:.5px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 28px rgba(12,44,222,.25);
}
.logo-img{
  height: 100px;
  width: auto;
  display: block;
}
.brand-name{font-weight:800}
.brand-sub{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

.menu-btn{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line); background: rgba(255,255,255,.03);
  cursor:pointer;
}
.menu-btn span{
  display:block; height:2px; width:18px; margin:5px auto;
  background: var(--text); opacity:.9;
}

.mobile-nav{
  border-top:1px solid var(--line);
  padding:14px 0 18px;
}
.mobile-nav a{
  display:block;
  padding:12px 4%;
  color:var(--muted);
  font-weight:700;
}
.mobile-nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-weight:800;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.18)}
.btn:active{transform: translateY(0px)}
.btn-primary{
  border-color: rgba(12,44,222,.45);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 38px rgba(12,44,222,.18);
}
.btn-primary:hover{border-color: rgba(12,44,222,.7)}
.btn-ghost{background: rgba(255,255,255,.03)}
.btn-small{padding:10px 12px; font-size:13px}
.btn-block{width:100%}

.hero{padding:56px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700; font-size:13px;
}
.dot{width:10px; height:10px; border-radius:999px; background: var(--good); box-shadow:0 0 0 5px rgba(46,242,163,.12)}
h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width:56ch;
}
.cta-row{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:20px;
}
.trust-item{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.02);
  min-width:170px;
}
.trust-title{font-weight:900}
.trust-sub{color:var(--muted); font-size:13px; margin-top:3px}

.mini-note{
  margin-top:16px;
  color:rgba(234,240,255,.72);
  font-size:13px;
}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}
.hero-card{padding:18px}
.card-top{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:12px; margin-bottom:12px;
}
.card-title{font-weight:900}
.card-sub{color:var(--muted); font-size:13px; margin-top:3px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(46,242,163,.25);
  background: rgba(46,242,163,.08);
  color: rgba(46,242,163,.95);
  font-weight:900; font-size:12px;
}

.form{display:flex; flex-direction:column; gap:12px}
label{display:flex; flex-direction:column; gap:7px; font-weight:800; font-size:12px; color:rgba(234,240,255,.85)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color: rgba(170,182,214,.7)}
input:focus, select:focus, textarea:focus{border-color: rgba(12,44,222,.55); box-shadow: 0 0 0 4px rgba(12,44,222,.15)}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form-note{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  text-align:center;
}

.stat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.02);
  padding:12px;
}
.stat-num{font-weight:900}
.stat-text{color:var(--muted); font-size:12px; margin-top:4px}

.section{padding:56px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom:18px;
  flex-wrap:wrap;
}
.section-head h2{margin:0; font-size:28px}
.section-head p{margin:0; color:var(--muted); max-width:64ch}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.service h3{margin:0 0 8px}
.service p{margin:0; color:var(--muted); line-height:1.6}

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(12,44,222,.08);
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price-card{
  position:relative;
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.price-card h3{margin:0 0 10px}
.price{font-size:28px; font-weight:900; margin-bottom:12px}
.price-card ul{margin:0 0 14px; padding-left:18px; color:var(--muted); line-height:1.7}
.price-card.highlight{
  border-color: rgba(12,44,222,.55);
  background: linear-gradient(180deg, rgba(12,44,222,.16), rgba(255,255,255,.02));
}
.ribbon{
  position:absolute; top:14px; right:14px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(46,242,163,.1);
  border:1px solid rgba(46,242,163,.25);
  color: rgba(46,242,163,.95);
  font-weight:900;
  font-size:12px;
}

.fineprint{color:var(--muted); font-size:12px; line-height:1.6; margin-top:14px}

.reviews .review{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.stars{margin:0 0 10px; letter-spacing:2px}
.review p{margin:0; color:rgba(234,240,255,.9); line-height:1.7}
.who{margin-top:10px; color:var(--muted); font-weight:800; font-size:13px}

.faq details{
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.02);
  padding:14px 16px;
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq-body{
  margin-top:10px;
  color:var(--muted);
  line-height:1.7;
}

.contact-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.contact-item{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.15);
}
.label{color:var(--muted); font-size:12px; font-weight:900; margin-bottom:6px}

.social-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.map-card{
  border-radius:18px;
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(0,0,0,.15);
}
.map-top{padding:14px 14px 0}
.map-title{font-weight:900}
.map-sub{color:var(--muted); font-size:12px; margin-top:4px}
.map-placeholder{
  height:220px;
  display:grid;
  place-items:center;
  margin:14px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.2);
  background: rgba(12,44,222,.06);
}
.map-text{font-weight:900; color:rgba(234,240,255,.85)}
.map-bottom{padding:0 14px 14px}
.small{color:var(--muted); font-size:12px}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0 26px;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer-brand{font-weight:900}
.footer-sub{color:var(--muted); font-size:12px; margin-top:3px}
.footer-right{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.footer-right a{color:var(--muted); font-weight:800; font-size:13px}
.footer-right a:hover{color:var(--text)}
.to-top{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}
.copyright{color:var(--muted); font-size:12px; margin-top:10px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .contact-card{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr; }
  .pricing-grid{grid-template-columns:1fr}
  .stat-grid{grid-template-columns:1fr}
}

@media (max-width: 820px){
  .nav{display:none}
  .menu-btn{display:inline-block}
  .form-row{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}


