:root{
  --bg:#0B1220; --panel:#0F1B33; --panel2:#0B162E;
  --text:#E5E7EB; --muted:#94A3B8; --line:#203152;
  --green:#22C55E; --gold:#F59E0B; --red:#EF4444; --blue:#60A5FA;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(34,197,94,.14), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(245,158,11,.12), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.55
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(11,18,32,.72); backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(32,49,82,.55);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}

.brand{display:flex; gap:10px; align-items:center}
.brand .logo{
  width:40px; height:40px; border-radius:12px;
  background:linear-gradient(135deg, rgba(34,197,94,.25), rgba(245,158,11,.18));
  border:1px solid rgba(255,255,255,.10);
  display:grid; place-items:center;
  box-shadow: var(--shadow);
}
.brand b{letter-spacing:.2px}
.brand-sub{font-size:12px;color:var(--muted);margin-top:2px}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.nav a{padding:8px 10px; border-radius:10px; color:var(--muted)}
.nav a:hover{background:rgba(255,255,255,.04); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:12px;
  background:linear-gradient(135deg, rgba(34,197,94,.20), rgba(245,158,11,.18));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.btn:hover{filter:brightness(1.06)}
.btn.secondary{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:none;
}
.btn.secondary:hover{
  background:rgba(255,255,255,.06);
}

/* Keyboard accessibility */
a:focus-visible, .btn:focus-visible{
  outline: 2px solid rgba(96,165,250,.85);
  outline-offset: 2px;
  border-radius: 12px;
}

.hero{padding:44px 0 22px}
.kicker{color:var(--muted); font-weight:600; letter-spacing:.2px}
.h-title{font-size:42px; line-height:1.1; margin:10px 0 10px}
.h-sub{color:var(--muted); max-width:760px; font-size:16px}

.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  font-size:13px; padding:7px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04); color:var(--muted);
}
.badge.ok{color:#bbf7d0; border-color:rgba(34,197,94,.35); background:rgba(34,197,94,.10)}
.badge.soon{color:#fde68a; border-color:rgba(245,158,11,.35); background:rgba(245,158,11,.10)}
.badge.req{color:#bfdbfe; border-color:rgba(96,165,250,.35); background:rgba(96,165,250,.10)}

.actions{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}

.grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(12, 1fr);
  margin: 18px 0 34px;
}
.card{
  background:linear-gradient(180deg, rgba(15,27,51,.92), rgba(11,22,46,.88));
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.span-6{grid-column: span 6}
.span-4{grid-column: span 4}
.span-8{grid-column: span 8}
.span-12{grid-column: span 12}

.ul{margin:10px 0 0; padding:0; list-style:none}
.ul li{display:flex; gap:10px; padding:10px 0; border-top:1px solid rgba(255,255,255,.06); color:var(--muted)}
.ul li:first-child{border-top:0}
.check{
  width:20px; height:20px; border-radius:8px;
  background:rgba(34,197,94,.14); border:1px solid rgba(34,197,94,.35);
  display:grid; place-items:center; flex:0 0 auto; margin-top:2px;
}
.note{color:var(--muted); font-size:13px; margin-top:10px}
.hr{height:1px; background:rgba(255,255,255,.08); margin:24px 0}
.footer{padding:22px 0 40px; color:var(--muted); font-size:13px}
.footer a{color:var(--text)}

@media (max-width: 900px){
  .h-title{font-size:34px}
  .span-6,.span-4,.span-8{grid-column: span 12}

  /* show menu on mobile */
  .topbar-inner{flex-direction:column;align-items:flex-start;gap:10px}
  .nav{display:flex;gap:10px;flex-wrap:wrap}
  .btn{width:100%;justify-content:center}
}

/* =========================
   Pricing page helpers
   ========================= */
.pricing-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.pricing-line{
  margin:12px 0 6px;
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}
.pricing-amount{
  font-weight:800;
  font-size:22px;
  letter-spacing:.2px;
  color: var(--text);
}
.pricing-unit{
  color: var(--muted);
  font-size:13px;
}







/* =========================
   Contact form styling
   ========================= */
.form{margin-top:12px}
.f-label{
  display:block;
  margin:14px 0 8px;
  color: var(--muted);
  font-size:13px;
  font-weight:600;
}
.f-input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
.f-input::placeholder{color: rgba(148,163,184,.85)}
.f-input:focus{
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
select.f-input{appearance:auto}
textarea.f-input{resize:vertical; min-height:120px}

/* Make button elements match links */
button.btn{
  font-family: var(--font);
  color: var(--text);
}

/* =========================
   Mobile nav fix (do NOT hide menu)
   ========================= */
@media (max-width: 900px){
  .h-title{font-size:34px}
  .span-6,.span-4,.span-8{grid-column: span 12}

  /* show menu on mobile */
  .topbar-inner{flex-direction:column; align-items:flex-start; gap:10px}
  .nav{display:flex; gap:10px; flex-wrap:wrap}
  .btn{width:100%; justify-content:center}
}
