:root{
  --bg:#070b14;
  --bg2:#0b1220;
  --text:#e9eefc;
  --muted:#a9b4cf;
  --line:rgba(255,255,255,.12);
  --accent:#6ea8fe;
  --accent2:#7ee787;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 15% 10%, rgba(110,168,254,.18), transparent 55%),
              radial-gradient(900px 500px at 70% 20%, rgba(126,231,135,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto}

.muted{color:var(--muted)}
.small{font-size:13px}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,11,20,.62);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;   /* compact */
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 180px;
}
.brandLogo{
  height: 34px;       /* IMPORTANT: small + clean */
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
}
.menu a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
}
.menu a:hover{color:var(--text)}

.menuBtn{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  width:44px;
  height:40px;
  border-radius:12px;
  cursor:pointer;
}
.menuBtn span{
  display:block;
  height:2px;
  width:18px;
  margin:4px auto;
  background:var(--text);
  opacity:.85;
  border-radius:2px;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(110,168,254,.95), rgba(126,231,135,.85));
  color:#06101f;
  font-weight:900;
  border:0;
  box-shadow: 0 18px 50px rgba(110,168,254,.18);
  transition: transform .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.small{padding:10px 12px; font-size:14px}
.btn.ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}

/* HERO */
.hero{padding:56px 0 24px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:26px;
  align-items:start;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}
h1{font-size:44px; line-height:1.08; margin:14px 0 12px}
.lead{color:var(--muted); font-size:17px; max-width:62ch}
.ctaRow{display:flex; gap:12px; margin:18px 0 0; flex-wrap:wrap}

.stats{display:flex; gap:14px; margin-top:20px; flex-wrap:wrap}
.stat{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  min-width:160px;
}
.statNum{font-weight:900}
.statLbl{color:var(--muted); font-size:13px}

.heroCard{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px 18px 14px;
  box-shadow: var(--shadow);
}
.heroCard h3{margin:4px 0 12px}
.checklist{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:8px 0}
.cardLine{height:1px; background:var(--line); margin:14px 0}

.logos{padding:12px 0 0}
.logoRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  border:1px dashed rgba(255,255,255,.16);
  border-radius:14px;
  padding:12px;
  background: rgba(255,255,255,.03);
}
.logoRow span{
  color:rgba(233,238,252,.82);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
}

/* SECTIONS */
.section{padding:56px 0}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
h2{font-size:30px; margin:0}
.twoCol{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:start;
}

.panel{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:8px 0}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}

.tags{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.tag{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:rgba(233,238,252,.86);
}

/* PROCESS */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.step{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.stepNum{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(110,168,254,.18);
  border:1px solid rgba(110,168,254,.35);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted)}

/* FAQ */
.faq details{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: 14px;
  padding:14px 14px;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:900}
.faq p{color:var(--muted); margin:10px 0 0}

/* CONTACT */
.contactCards{
  display:grid;
  gap:10px;
  margin-top:16px;
}
.contactCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:14px;
  border-radius:14px;
  display:flex;
  justify-content:space-between;
  gap:14px;
}
.contactCard span{color:var(--muted); font-size:13px}
.contactCard b{font-size:14px}
.contactCard.static{cursor: default}

.mapWrap{
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.mapWrap iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.form{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
label{
  display:block;
  font-weight:900;
  font-size:13px;
  color:rgba(233,238,252,.9);
  margin-bottom:10px;
}
input, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(6,10,18,.55);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(110,168,254,.55)}

/* FOOTER */
.footer{padding:26px 0; border-top:1px solid var(--line)}
.foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.footLinks a{color:var(--muted); font-size:13px}
.footLinks a:hover{color:var(--text)}

/* MOBILE */
@media (max-width: 920px){
  h1{font-size:36px}
  .heroGrid{grid-template-columns:1fr;}
  .twoCol{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}

  .brand{min-width:auto}
  .brandLogo{height:32px; max-width:160px}

  .menuBtn{display:block}
  .menu{
    display:none;
    position:absolute;
    right:4%;
    top:64px;
    flex-direction:column;
    padding:14px;
    background: rgba(7,11,20,.92);
    border:1px solid var(--line);
    border-radius:14px;
    min-width:240px;
  }
  .menu.open{display:flex}
}
