:root{
  --bg:#070b12;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --text:#eef2ff;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.12);
  --brand:#2f7df6;
  --radius:20px;
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --wrap:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 700px at 50% -10%, rgba(47,125,246,.26), transparent 60%),
              radial-gradient(800px 500px at 10% 10%, rgba(47,125,246,.16), transparent 55%),
              var(--bg);
  color:var(--text);
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 18px}
.section{padding:64px 0}
.muted{color:var(--muted)}
.small{font-size:14px}
h1,h2,h3{margin:0 0 12px}
h2{font-size:34px; letter-spacing:.2px}
p{margin:0 0 12px; line-height:1.6}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(4,7,12,.92), rgba(4,7,12,.76));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:220px;
}
.logo-img{
  height:34px;
  width:auto;
  opacity:.9;
  filter: grayscale(1) contrast(1.1) brightness(.95);
}
.brand-title strong{display:block; font-weight:800; letter-spacing:.6px}
.brand-title span{display:block; font-size:13px; color:var(--muted)}

.nav{display:flex; gap:18px; align-items:center; flex-wrap:wrap}
.nav a{
  text-decoration:none;
  font-weight:650;
  color:rgba(255,255,255,.86);
  padding:8px 8px;
  border-radius:10px;
}
.nav a:hover{background:rgba(255,255,255,.06)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:750;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.btn.primary{
  background: linear-gradient(180deg, rgba(47,125,246,.95), rgba(47,125,246,.72));
  border-color: rgba(47,125,246,.55);
  box-shadow: 0 12px 30px rgba(47,125,246,.18);
}
.btn.primary:hover{filter:brightness(1.06)}
.btn.ghost:hover{background:rgba(255,255,255,.1)}

.hero{
  padding:34px 0 12px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}
.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  background:#0a1120;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
  min-height:380px;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.92;
  transform:scale(1.02);
}
.hero-media:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.52), rgba(0,0,0,.15) 55%, rgba(0,0,0,.08));
}
.hero-copy{
  border-radius:var(--radius);
  background: var(--panel);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--shadow);
  padding:26px;
}
.kicker{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.75);
  margin-bottom:10px;
}
.hero h1{font-size:48px; line-height:1.06}
.hero .lead{font-size:16.5px; color:rgba(255,255,255,.78)}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pill{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.14);
  font-weight:650;
  color:rgba(255,255,255,.84);
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:16px;
  margin-top:18px;
}
.card{
  border-radius:18px;
  overflow:hidden;
  background:var(--panel);
  border:1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 34px rgba(0,0,0,.32);
}
.card img{width:100%; height:170px; object-fit:cover}
.card .body{padding:14px 14px 16px}
.card strong{display:block; margin-bottom:6px}
.card p{margin:0; color:rgba(255,255,255,.72); font-size:14.5px}

.panel{
  border-radius:var(--radius);
  background:var(--panel);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--shadow);
  padding:18px;
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  margin-top:10px;
}
.row span{color:rgba(255,255,255,.72)}
.row strong a{color:rgba(255,255,255,.92); text-decoration:underline}

.map{
  width:100%;
  height:320px;
  border:0;
  border-radius:18px;
  overflow:hidden;
}

.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.7);
}
.footer .wrap{display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px}
.footer a{color:rgba(255,255,255,.82); text-decoration:underline}

.bigbtns{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}

/* Mobile */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-media{min-height:320px}
  .hero h1{font-size:40px}
}
@media (max-width: 720px){
  .header .wrap{padding:12px 14px}
  .brand{min-width:unset}
  .logo-img{height:28px}
  .brand-title strong{font-size:15px}
  .brand-title span{font-size:12px}
  .nav{width:100%; gap:10px}
  .nav a{padding:8px 10px}
  .hero{padding-top:22px}
  .hero-copy{padding:18px}
  .hero h1{font-size:32px}
  .card img{height:160px}
  .grid2{grid-template-columns:1fr}
  .map{height:260px}
}
