
:root{
  --bg:#0f172a; --bg-2:#111827; --brand:#eab308; --text:#0b1020; --muted:#6b7280;
  --white:#ffffff; --card:#f8fafc;
}
*{box-sizing:border-box}
html,body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Inter,Arial,sans-serif;color:var(--text);background:#fff}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 16px;border-radius:999px;font-weight:600;border:1px solid transparent;cursor:pointer}
.btn-outline{border-color:rgba(255,255,255,.25);color:#fff}
.btn-cta{background:var(--brand);color:#111}
header{position:sticky;top:0;z-index:50;background:linear-gradient(180deg,#0f172a 0%, #111827 100%);color:var(--white);border-bottom:1px solid rgba(255,255,255,.08)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;gap:12px;align-items:center}
.brand .logo{width:36px;height:36px;border-radius:8px;display:grid;place-items:center;overflow:hidden;box-shadow:0 2px 10px rgba(0,0,0,.25)}
.brand h1{font-size:18px;line-height:1.1;margin:0;font-weight:700}
.nav-actions{display:flex;gap:10px;align-items:center}
.hero{background:linear-gradient(135deg,#0f172a 0%, #1f2937 60%, #0f172a 100%);color:#fff}
.hero-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;padding:56px 0}
.hero h2{font-size:38px;line-height:1.15;margin:0 0 12px;font-weight:800}
.hero p{margin:0 0 18px;color:#d1d5db;font-size:18px}
.hero .cta-row{display:flex;gap:12px;flex-wrap:wrap}
.card{background:rgba(255,255,255,.06);backdrop-filter:saturate(140%) blur(6px);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:18px}
section{padding:48px 0}
.section-title{font-size:26px;margin:0 0 12px}
.muted{color:var(--muted)}
.grid{display:grid;gap:16px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.feature{background:var(--card);border:1px solid #e5e7eb;border-radius:14px;padding:18px}
.feature h3{margin:6px 0 8px;font-size:18px}
.cta-strip{background:var(--card);border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb}
.cta-box{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:22px;border-radius:14px}
footer{background:#0b1224;color:#cbd5e1}
.foot-grid{display:grid;grid-template-columns:2fr 1fr;gap:16px}
footer a{color:#e2e8f0}
.badge{display:inline-flex;align-items:center;gap:8px;background:rgba(234,179,8,.12);border:1px solid rgba(234,179,8,.4);color:#fef3c7;padding:8px 12px;border-radius:12px;font-weight:600}
.map-embed{width:100%;height:340px;border:0;border-radius:12px;box-shadow:0 1px 6px rgba(0,0,0,.08)}
@media (max-width: 900px){
  .hero-wrap{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr}
}
