:root{
  --bg:#0b1220;
  --card:#0f1a2f;
  --alt:#0d1628;
  --text:#eaf0ff;
  --muted:#b6c2e2;
  --line:rgba(255,255,255,.10);
  --accent:#ffd166;
  --accent2:#7bdff2;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

*{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(--text);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(123,223,242,.16), transparent 60%),
              radial-gradient(1000px 600px at 80% 0%, rgba(255,209,102,.14), transparent 55%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border:1px solid #fff; border-radius:10px; z-index:999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,209,102,.14);
  border:1px solid rgba(255,209,102,.28);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex; gap:16px; align-items:center}
.nav a{font-weight:600; color:rgba(234,240,255,.88)}
.nav a:hover{color:#fff}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(255,209,102,1), rgba(255,209,102,.88));
  color:#1a1a1a;
  font-weight:800;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,209,102,.5);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--small{padding:10px 12px; border-radius:12px}
.btn--full{width:100%}

.hero{padding:42px 0 26px}
.hero__grid{display:grid; grid-template-columns: 1.2fr .9fr; gap:22px; align-items:start}
.hero__content{padding:18px 0}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(123,223,242,.10);
  border:1px solid rgba(123,223,242,.22);
  color: rgba(234,240,255,.92);
}
h1{font-size:44px; line-height:1.06; margin:14px 0 12px; letter-spacing:-.6px}
.lead{font-size:16px; color:rgba(234,240,255,.86); max-width:58ch; line-height:1.55}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 12px}

.quick{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:10px; margin-top:12px;
}
.quick__item{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
}
.quick__kicker{font-size:12px; color:var(--muted); font-weight:700}
.quick__value{font-weight:800; margin-top:4px}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card__title{margin:0 0 10px; font-size:18px}
.card__subtitle{margin:0 0 6px; font-size:16px}
.card__cta{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px}

.list{margin:0; padding-left:18px; color:rgba(234,240,255,.88); line-height:1.6}
.list li{margin:6px 0}

.divider{height:1px; background:var(--line); margin:14px 0}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.link{display:inline-block; margin-top:10px; color:rgba(255,209,102,.95); font-weight:800}

.section{padding:44px 0}
.section--alt{background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{margin-bottom:14px}
h2{margin:0 0 8px; font-size:28px; letter-spacing:-.4px}
.lead2{margin:0 0 6px; font-size:18px}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:14px}
.tile{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.tile h3{margin:0 0 8px}
.tile p{margin:0 0 10px; color:rgba(234,240,255,.84); line-height:1.55}
.bullets{margin:0; padding-left:18px; color:rgba(234,240,255,.86); line-height:1.6}
.bullets li{margin:6px 0}

.split{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; align-items:start}
.panel{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.panel--wide{display:flex; align-items:center; justify-content:space-between; gap:14px}
.panel__title{font-weight:900; margin-bottom:8px}
.panel__actions{display:grid; gap:10px}

.row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.address{
  margin-top:10px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
}
.address__label{font-size:12px; color:var(--muted); font-weight:800}
.address__value{font-weight:900; margin-top:4px}

.map{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  min-height:320px;
}
.map iframe{width:100%; height:100%; min-height:320px; border:0}

.contact{display:grid; gap:10px; margin-top:12px}
.contact__item{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius:16px;
}
.contact__k{font-size:12px; color:var(--muted); font-weight:900}
.contact__v{font-weight:900}

.footer{
  margin-top:10px;
  padding:22px 0 18px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.footer__inner{display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap}
.footer__brand{font-weight:900}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a{color:rgba(234,240,255,.84); font-weight:700}
.footer__links a:hover{color:#fff}
.footer__bottom{margin-top:10px}

@media (max-width: 920px){
  h1{font-size:38px}
  .hero__grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .card__cta{grid-template-columns:1fr}
  .quick{grid-template-columns:1fr}
  .nav{display:none}
}
