
:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 20px 60px rgba(0,0,0,0.40);
  --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;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(139,92,246,0.25), transparent 60%),
              radial-gradient(900px 600px at 80% 20%, rgba(34,197,94,0.18), transparent 60%),
              radial-gradient(1000px 700px at 50% 90%, rgba(59,130,246,0.18), transparent 60%),
              var(--bg);
  color: var(--text);
}

a{color:inherit;text-decoration:none}
.container{width:min(1160px, calc(100% - 40px)); margin: 0 auto;}

.topbar{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,16,32,0.55);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{display:flex; align-items:center; gap:10px;}
.logo{
  width:32px; height:32px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(139,92,246,1), rgba(59,130,246,1));
  box-shadow: 0 10px 30px rgba(139,92,246,0.25);
}
.brand-name{font-weight:700; letter-spacing:0.2px;}
.nav{display:flex; gap:16px; color: var(--muted);}
.nav a{padding:8px 10px; border-radius: 12px;}
.nav a:hover{background: rgba(255,255,255,0.06); color: var(--text);}

.cta{
  padding:10px 14px; border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}
.cta:hover{background: rgba(255,255,255,0.12);}

.hero{position:relative; padding: 56px 0 28px;}
.hero-grid{display:grid; grid-template-columns: 1fr; gap: 22px; align-items: center; justify-items: center; text-align:center;}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}

.hero-actions{display:flex; gap: 12px; flex-wrap:wrap; margin: 10px 0 20px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background: rgba(255,255,255,0.12);}
.btn:active{transform: translateY(1px);}
.btn-primary{
  border-color: rgba(99,102,241,0.45);
  background: linear-gradient(135deg, rgba(99,102,241,0.9), rgba(59,130,246,0.9));
  box-shadow: 0 20px 50px rgba(59,130,246,0.18);
}
.btn-primary:hover{filter: brightness(1.03);}
.btn-ghost{background: rgba(255,255,255,0.03);}
.btn-small{padding:10px 12px; border-radius: 14px; font-weight: 700;}

.stats{display:flex; gap: 14px; flex-wrap:wrap;}
.stat{
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  min-width: 150px;
}
.stat-k{font-weight: 800; font-size: 18px;}
.stat-v{color: var(--muted); font-size: 13px; margin-top: 4px;}

.hero-card .card{
  height: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  padding: 18px;
}
.card-title{font-weight: 800; font-size: 16px;}
.card-sub{color: var(--muted); margin-top: 6px; line-height:1.5; font-size: 14px;}
.search-wrap{display:flex; gap:10px; margin-top: 14px;}
.search{
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(11,16,32,0.35);
  color: var(--text);
  outline: none;
}
.search:focus{border-color: rgba(99,102,241,0.55);}
.search-wide{max-width: 520px;}
.icon-btn{
  width: 46px; min-width: 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  cursor:pointer;
}
.icon-btn:hover{background: rgba(255,255,255,0.10); color: var(--text);}

.chips{display:flex; gap:10px; flex-wrap: wrap; margin-top: 12px;}
.chip{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 700;
  cursor:pointer;
}
.chip:hover{background: rgba(255,255,255,0.08); color: var(--text);}

.mini{margin-top: 14px; color: var(--muted); font-size: 13px;}
.mini-row{display:flex; gap:10px; align-items:flex-start; margin-top: 8px;}
.dot{width: 10px; height: 10px; border-radius: 999px; background: rgba(59,130,246,0.9); margin-top: 4px;}

.section{padding: 40px 0;}
.section.alt{background: rgba(255,255,255,0.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);}
.section-head h2{margin:0; font-size: 24px; letter-spacing: -0.01em;}
.section-head p{margin:8px 0 0; color: var(--muted);}

.toolbar{
  margin-top: 18px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.toolbar-left{display:flex; align-items:center; gap: 10px; flex-wrap:wrap;}
.count{color: var(--muted); font-weight: 600;}

.services{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
@media (max-width: 980px){ .services{grid-template-columns: repeat(3, minmax(0,1fr));} }
@media (max-width: 720px){ .services{grid-template-columns: repeat(2, minmax(0,1fr));} }
@media (max-width: 480px){ .services{grid-template-columns: 1fr;} }

.service-btn{
  text-align:left;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor:pointer;
  font-weight: 700;
  transition: transform .06s ease, background .18s ease, border-color .18s ease;
}
.service-btn:hover{background: rgba(255,255,255,0.09); border-color: rgba(99,102,241,0.45);}
.service-btn:active{transform: translateY(1px);}
.service-btn.selected{
  border-color: rgba(34,197,94,0.55);
  background: rgba(34,197,94,0.10);
}

.support-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items:start;
}
@media (max-width: 900px){ .support-grid{grid-template-columns:1fr;} }

.bullets{margin: 14px 0 0; color: var(--muted); line-height:1.7; padding-left: 18px;}
.form{
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 18px;
}
.form label{display:block; font-weight: 700; margin-bottom: 12px;}
.form input, .form textarea{
  margin-top: 8px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(11,16,32,0.30);
  color: var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{border-color: rgba(99,102,241,0.55);}
.toast{
  margin-top: 12px;
  min-height: 20px;
  color: rgba(34,197,94,0.95);
  font-weight: 700;
}

.footer{
  padding: 22px 0 30px;
  color: var(--muted);
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;}
.muted{color: var(--muted);}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.glow{
  position:absolute; inset: -200px -200px auto -200px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(99,102,241,0.28), transparent 60%);
  filter: blur(10px);
  pointer-events:none;
  z-index:-1;
}


.hero-copy p{margin-left:auto; margin-right:auto;}
.stats{justify-content:center;}
.hero-actions{justify-content:center;}
