:root{
  --bg:#0b1220;
  --surface:#101a2f;
  --surface2:#0f1930;
  --text:#e8eefc;
  --muted:#a9b7dd;
  --line:rgba(255,255,255,.10);
  --accent:#6aa9ff;
  --accent2:#8df0c7;
  --danger:#ff6a6a;
  --shadow: 0 14px 34px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(106,169,255,.25), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(141,240,199,.16), transparent 55%),
    radial-gradient(900px 650px at 60% 110%, rgba(106,169,255,.14), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.45;
}

a{color:inherit; text-decoration:none}

/* Layout */
.wrap{max-width:var(--max); margin:0 auto; padding:24px}

/* Top bar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 24px;
  max-width:var(--max); margin:0 auto;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 20px rgba(106,169,255,.25);
}
.brand small{display:block; font-size:12px; color:var(--muted); font-weight:700; margin-top:2px}
.navlinks{display:flex; align-items:center; gap:6px; color:var(--muted); font-weight:800}
.navlinks a{padding:8px 12px; border-radius:12px}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.navlinks a.active{background:rgba(106,169,255,.16); color:var(--text); border:1px solid rgba(106,169,255,.28)}
.navcta{display:flex; gap:10px; align-items:center}

.pill{
  font-size:12px; color:#0b1220;
  background: linear-gradient(135deg, var(--accent2), #bff9e5);
  padding:6px 10px; border-radius:999px; font-weight:900;
}

.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;
  border-radius: 14px;
  font-weight:900;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  display:inline-flex; align-items:center; gap:8px;
}
.btn:hover{background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--accent), #5b7cff);
  box-shadow: 0 12px 24px rgba(106,169,255,.22);
}
.btn.primary:hover{filter:brightness(1.05)}

/* Page header / hero */
.pageHero{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 24px 10px;
}
.heroCard{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:26px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-120px -120px auto auto;
  width:280px; height:280px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(141,240,199,.26), transparent 60%);
  transform: rotate(22deg);
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
.heroCard h1{margin:10px 0 8px; font-size:40px; line-height:1.05}
.heroCard p{margin:0 0 14px; color:var(--muted); font-size:16px; max-width:62ch}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 0}
.badge{
  border:1px solid var(--line);
  background: rgba(11,18,32,.45);
  padding:8px 10px;
  border-radius: 999px;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.heroAside{
  background: linear-gradient(180deg, rgba(16,26,47,.85), rgba(16,26,47,.55));
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:22px;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column; justify-content:space-between;
}
.quickGrid{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:10px}
.quick{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding:14px;
  min-height: 110px;
}
.quick h3{margin:0 0 6px; font-size:14px}
.quick p{margin:0; color:var(--muted); font-size:13px}
.mini{
  display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:900; font-size:13px;
  margin-top:14px;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(141,240,199,.14);
}

/* Sections */
section{max-width:var(--max); margin:0 auto; padding:26px 24px}
.sectionTitle{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:12px}
.sectionTitle h2{margin:0; font-size:24px}
.sectionTitle p{margin:0; color:var(--muted); max-width:80ch}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

.kpiRow{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:12px}
.kpi{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding:14px;
}
.kpi strong{display:block; font-size:18px}
.kpi span{color:var(--muted); font-weight:800; font-size:12px}

.list{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:8px}
.list li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:800; font-size:14px}
.check{
  width:18px; height:18px; border-radius:6px;
  background: rgba(141,240,199,.18);
  border: 1px solid rgba(141,240,199,.35);
  flex:0 0 auto;
  position:relative;
  margin-top:2px;
}
.check:after{
  content:"";
  position:absolute;
  left:5px; top:2px;
  width:6px; height:10px;
  border-right:2px solid var(--accent2);
  border-bottom:2px solid var(--accent2);
  transform: rotate(45deg);
}

/* Pricing */
.pricing{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; align-items:stretch}
.priceCard{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.priceCard.featured{
  border-color: rgba(106,169,255,.45);
  background: linear-gradient(180deg, rgba(106,169,255,.14), rgba(255,255,255,.03));
}
.priceTop{display:flex; align-items:center; justify-content:space-between; gap:10px}
.price{font-size:30px; font-weight:950; margin:10px 0 2px; letter-spacing:.2px}
.price small{font-size:13px; color:var(--muted); font-weight:900}
.note{color:var(--muted); font-size:13px; margin:8px 0 0; font-weight:700}
.priceActions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

/* Process */
.steps{display:grid; grid-template-columns: repeat(4, 1fr); gap:12px}
.step{padding:16px; border-radius: var(--radius); border:1px solid var(--line); background: rgba(255,255,255,.03)}
.stepNum{
  width:32px; height:32px; border-radius:12px;
  background: rgba(106,169,255,.18);
  border: 1px solid rgba(106,169,255,.35);
  display:flex; align-items:center; justify-content:center;
  font-weight:950;
  margin-bottom:10px;
}
.step h4{margin:0 0 6px}
.step p{margin:0; color:var(--muted); font-size:13px}

/* FAQ */
details{border:1px solid var(--line); background: rgba(255,255,255,.03); border-radius: var(--radius); padding:14px 16px}
details summary{cursor:pointer; font-weight:950; color: var(--text); list-style:none}
details summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted)}

/* Contact */
.contact{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:stretch}
.form{display:grid; gap:10px; margin-top:12px}
label{font-weight:950; font-size:13px; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.35);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color: rgba(106,169,255,.55); box-shadow: 0 0 0 4px rgba(106,169,255,.12)}
.infoRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.infoChip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:10px 12px;
  border-radius: 14px;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.mapEmbed{width:100%; height:280px; border:0; border-radius: 18px; overflow:hidden}

/* Footer */
footer{
  border-top:1px solid var(--line);
  padding:22px 24px;
  color:var(--muted);
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 980px){
  .navlinks{display:none}
  .heroGrid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
  .kpiRow{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .heroCard h1{font-size:34px}
  .steps{grid-template-columns:1fr}
}


/* Multi-page header/footer enhancements */
.brand{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.3px}
.brandSub{font-size:12px; color:var(--muted); font-weight:700}
.hamburger{display:none; border:1px solid var(--line); background: rgba(255,255,255,.06); border-radius:14px; width:44px; height:44px; cursor:pointer}
.hamburger span{display:block; height:2px; width:18px; background: var(--text); margin:4px auto; opacity:.9}
.mobileMenu{display:none; max-width:var(--max); margin:0 auto; padding:10px 24px 14px; border-bottom:1px solid var(--line); background: rgba(11,18,32,.55); backdrop-filter: blur(10px)}
.mobileMenu a{display:block; padding:10px 12px; border-radius:14px; color:var(--muted); font-weight:700}
.mobileMenu a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.mobileMenuCtas{display:flex; gap:10px; flex-wrap:wrap; padding:10px 12px}
.mobileMenu.open{display:block}

.page{
  max-width:var(--max);
  margin:0 auto;
  padding:26px 24px;
}
.pageHero{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  padding:22px;
  box-shadow: var(--shadow);
}
.pageHero h1{margin:6px 0 8px; font-size:34px; line-height:1.1}
.pageHero p{margin:0; color:var(--muted); max-width:80ch}

.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:16px}
.kpi{border:1px solid var(--line); background: rgba(255,255,255,.04); border-radius: var(--radius); padding:14px}
.kpi .num{font-weight:900; font-size:18px; margin-bottom:4px}
.kpi .lbl{color:var(--muted); font-weight:700; font-size:13px}

footer{border-top:1px solid var(--line); padding:22px 24px; color:var(--muted); max-width:var(--max); margin:0 auto; display:grid; grid-template-columns: 1.2fr 1fr 1.3fr; gap:14px}
.footerBrand{color:var(--text); font-weight:900}
.footerSmall{font-size:13px}
.footerLinks{display:flex; flex-wrap:wrap; gap:12px; align-content:flex-start}
.footerLinks a{color:var(--muted); font-weight:800}
.footerLinks a:hover{color:var(--text)}
.footerContact{display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end}
.footerChip{border:1px solid var(--line); background: rgba(255,255,255,.04); padding:10px 12px; border-radius:14px; color:var(--muted); font-weight:800; font-size:13px}
.footerChip:hover{background: rgba(255,255,255,.07); color:var(--text)}
.footerBottom{grid-column: 1 / -1; border-top:1px solid var(--line); padding-top:14px; font-size:13px}

.callout{border:1px solid rgba(106,169,255,.35); background: rgba(106,169,255,.10); padding:14px 16px; border-radius: var(--radius); color:var(--muted); font-weight:700}

.table{width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius: var(--radius); border:1px solid var(--line); background: rgba(255,255,255,.03)}
.table th, .table td{padding:12px 12px; text-align:left}
.table thead th{color:var(--text); font-weight:900; border-bottom:1px solid var(--line); background: rgba(255,255,255,.04)}
.table tbody td{color:var(--muted); font-weight:700; border-bottom:1px solid rgba(255,255,255,.06)}
.table tbody tr:last-child td{border-bottom:none}

@media (max-width: 980px){
  .navlinks{display:none}
  .hamburger{display:inline-block}
  footer{grid-template-columns: 1fr}
  .footerContact{justify-content:flex-start}
  .kpis{grid-template-columns: 1fr}
}
