:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --alt:#0d1730;
  --text:#e8eefc;
  --muted:#b6c4e6;
  --brand:#66b3ff;
  --accent:#7ef0c7;
  --border:rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 0%, #122b59 0%, var(--bg) 55%);
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:12px; align-items:center}
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color:#061022; font-weight:800;
  box-shadow: var(--shadow);
}
.brand-name{display:block; font-weight:800; letter-spacing:.2px}
.brand-tag{display:block; font-size:12px; color:var(--muted)}

.nav{display:flex; gap:18px; align-items:center}
.nav a{opacity:.9}
.nav a:hover{opacity:1}

.hamburger{
  display:none;
  font-size:22px;
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
}

.mobile-nav{
  border-top: 1px solid var(--border);
  padding: 10px 0 14px;
}
.mobile-nav a{
  display:block;
  padding:10px 4%;
  opacity:.95;
}

.hero{padding:72px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:28px;
  align-items:start;
}
.hero-copy h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.lead{font-size:18px; color:var(--muted); max-width: 55ch}
.hero-cta{display:flex; gap:12px; margin:18px 0 14px; flex-wrap:wrap}

.trust{
  list-style:none;
  padding:0; margin:14px 0 0;
  display:flex; gap:14px; flex-wrap:wrap;
  color: var(--muted);
}
.tiny-note{font-size:12px; color: var(--muted); opacity:.9}

.section{padding:56px 0}
.section.alt{background: rgba(255,255,255,.03); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
h2{margin:0 0 10px; font-size:28px}
.muted{color:var(--muted)}
.small{font-size:14px}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card .card{position:sticky; top:92px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color:#061022;
  font-weight:800;
  border:0;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.05)}
.btn-ghost{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
  font-weight:700;
}
.btn-small{padding:10px 12px; border-radius:12px}
.btn-full{width:100%}

.divider{height:1px; background:var(--border); margin:14px 0}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.photo{
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  min-height:140px;
  display:grid;
  place-items:center;
  color: var(--muted);
}

.pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.faq{
  margin-top:12px;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  background: rgba(255,255,255,.03);
}
.faq summary{cursor:pointer; font-weight:700}
.faq p{color:var(--muted); margin:10px 0 0}

.form{
  max-width:720px;
  margin-top:18px;
  display:grid;
  gap:14px;
}
label{display:grid; gap:8px; color:var(--muted); font-weight:600}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(126,240,199,.55)}

.footer{
  padding:26px 0 18px;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.25);
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links{display:grid; gap:8px}
.footer-brand{font-weight:900; font-size:18px}
.footer-bottom{margin-top:14px}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-card .card{position:relative; top:auto}
  .grid-3{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .nav{display:none}
  .hamburger{display:inline-flex}
}
@media (max-width: 520px){
  .gallery{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
}