:root{
  --bg:#0b1220;
  --bg2:#0f1a33;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.12);
  --txt:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.68);
  --white:#fff;
  --accent:#5eead4;
  --accent2:#60a5fa;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--txt);
  background:
    radial-gradient(1200px 600px at 10% 5%, rgba(96,165,250,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 10%, rgba(94,234,212,.14), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
.container{width:min(1140px, 92vw); margin:0 auto}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.68);
  border-bottom:1px solid var(--line);
}
.header__wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand__logo{height:40px; width:auto; display:block}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--white)}

.nav__toggle{
  display:none;
  width:44px; height:40px; border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:12px; cursor:pointer;
}
.nav__toggle span{
  display:block; height:2px; width:18px; margin:5px auto;
  background:rgba(255,255,255,.82);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(96,165,250,.26), rgba(94,234,212,.18));
  color:var(--white);
  font-weight:700;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{background:rgba(255,255,255,.04)}
.btn--small{padding:10px 14px; border-radius:12px; font-size:14px}

.hero{padding:56px 0 28px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  margin:0 0 12px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height:1.08;
}
.grad{
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width: 62ch;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:10px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px;
}
.stat__num{font-weight:800}
.stat__txt{color:var(--muted); font-size:13px; line-height:1.4; margin-top:6px}

.hero__card{position:relative; border-radius:var(--radius2)}
.cardGlow{
  position:absolute; inset:0;
  background: radial-gradient(500px 260px at 30% 20%, rgba(96,165,250,.22), transparent 60%),
              radial-gradient(500px 260px at 80% 40%, rgba(94,234,212,.18), transparent 60%);
  filter: blur(10px);
  border-radius:var(--radius2);
}
.hero__panel{
  position:relative;
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero__panel h3{margin:0 0 10px; font-size:16px}
.checklist{margin:0; padding-left:18px; color:var(--muted); line-height:1.65}
.mini-cta{display:flex; align-items:center; gap:12px; margin-top:14px; flex-wrap:wrap}
.mini-cta__hint{color:var(--muted); font-size:13px}

.section{padding:52px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px; font-size:26px}
.section__head p{margin:0; color:var(--muted); line-height:1.6}

.grid{display:grid; gap:14px}
.cards{grid-template-columns: repeat(3, 1fr)}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 10px}
.card p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.65}
.card--highlight{
  background: linear-gradient(135deg, rgba(96,165,250,.16), rgba(94,234,212,.10));
}

.features{grid-template-columns: repeat(4, 1fr)}
.feature{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.6}

.about{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.lead2{color:var(--muted); line-height:1.7}
.about__box{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.pillRow{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

.contactGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.form{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:16px;
}
.form__row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form__field{display:flex; flex-direction:column; gap:8px; margin-bottom:12px}
label{font-weight:700; font-size:13px; color:rgba(255,255,255,.82)}
input, select, textarea{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--white);
  border-radius: 14px;
  padding:12px 12px;
  outline:none;
}
textarea{min-height:130px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color: rgba(94,234,212,.45)}
.form__hint{color:var(--muted); font-size:12px; line-height:1.5; margin:10px 0 0}

.hp{display:none !important}

.contactInfo{display:grid; gap:12px}
.contactInfo__card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:16px;
}
.contactInfo__card h3{margin:0 0 8px}
.contactInfo__card p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.contactInfo__list{display:grid; gap:10px; margin-top:10px}
.contactInfo__list div{display:flex; justify-content:space-between; gap:12px}
.k{color:var(--muted); font-weight:600}
.v{font-weight:700}

.ctaSide__buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.ctaSide__meta{
  display:grid;
  gap:10px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
}
.ctaSide__meta div{
  display:flex;
  justify-content:space-between;
  gap:12px;
}

.footer{
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
}
.footer__wrap{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}
.footer__logo{height:34px; width:auto; display:block; margin-bottom:8px}
.footer__brand p{margin:0; color:var(--muted); max-width:52ch; line-height:1.6}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:700; font-size:14px}
.footer__links a:hover{color:var(--white)}
.footer__bottom{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color:var(--muted); font-size:13px;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__stats{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr 1fr}
  .features{grid-template-columns: 1fr 1fr}
  .about{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  .nav__toggle{display:block}
  .nav{
    position:fixed; right:16px; top:70px;
    display:none;
    flex-direction:column;
    gap:12px;
    padding:14px;
    border:1px solid var(--line);
    background: rgba(11,18,32,.92);
    border-radius: 16px;
    width: min(260px, calc(100vw - 32px));
  }
  .nav.nav--open{display:flex}
  .cards{grid-template-columns: 1fr}
  .features{grid-template-columns: 1fr}
  .form__row{grid-template-columns: 1fr}
}
