:root{
  --bg:#0b0c10;
  --panel:#11131a;
  --panel2:#0f1117;
  --text:#eef1f6;
  --muted:#b7c0cf;
  --line:rgba(255,255,255,.12);
  --accent:#ffffff;
  --max:1120px;
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:linear-gradient(180deg, var(--bg), #07080b);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
img{max-width:100%; display:block}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.narrow{width:min(820px, calc(100% - 40px))}
.section{padding:72px 0}
.section-alt{background:rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.muted{color:var(--muted)}
.lead{font-size:1.1rem; line-height:1.6}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:12px; top:12px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,12,16,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}

.brand{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.3px}
.brand-mark{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
}
.brand-text{white-space:nowrap}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}

.header-cta{display:flex; align-items:center; gap:10px}
.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}

.nav-mobile{
  border-top:1px solid var(--line);
  background:rgba(11,12,16,.92);
  padding:14px 0;
}
.nav-mobile a{display:block; padding:10px 20px; color:var(--muted)}
.nav-mobile a:hover{color:var(--text)}
.nav-mobile-divider{height:1px; background:var(--line); margin:10px 0}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff;
  color:#000;
  font-weight:700;
}
.btn-ghost{
  background:rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--line);
}

.hero{position:relative; min-height:72vh; display:grid; place-items:center; overflow:hidden}
.hero-media{position:absolute; inset:0}
.hero-media img{width:100%; height:100%; object-fit:cover; filter:contrast(1.05) saturate(1.05)}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.hero-content{position:relative; padding:72px 0}

.badge-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
.badge{
  font-size:.85rem;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--muted);
}
h1{font-size:clamp(2.1rem, 4.2vw, 3.6rem); line-height:1.05; margin:10px 0 12px}
h2{font-size:clamp(1.6rem, 2.2vw, 2.1rem); margin:0 0 8px}
h3{margin:0 0 8px}
.cta-row{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.trust-strip{
  margin-top:22px;
  display:flex; flex-wrap:wrap; gap:14px;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--muted);
}

.section-head{margin-bottom:22px}
.grid{display:grid; gap:18px}
.cards{grid-template-columns:repeat(3, 1fr)}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.card img{height:190px; object-fit:cover; width:100%}
.card-body{padding:16px}

.note{
  margin-top:18px;
  padding:14px 16px;
  border:1px dashed rgba(255,255,255,.22);
  border-radius:var(--radius);
  color:var(--muted);
  background:rgba(255,255,255,.03);
}

.steps{
  list-style:none; padding:0; margin:0;
  display:grid; gap:12px;
}
.steps li{
  display:flex; gap:14px;
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}
.step-num{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:#fff; color:#000; font-weight:800;
}

.gallery{grid-template-columns:repeat(3, 1fr)}
.shot{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.shot img{height:220px; object-fit:cover; width:100%}
.shot figcaption{padding:10px 12px; color:var(--muted); font-size:.9rem}

.cta-slab{
  margin-top:22px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
}

.coverage{
  display:grid; gap:24px;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
}
.coverage-media img{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  height:340px;
  width:100%;
  object-fit:cover;
}

.bullets{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.page{padding-top:10px}
.callout{
  margin:18px 0;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.form{margin-top:18px}
.form label{display:block; margin:12px 0; color:var(--muted)}
input, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color:rgba(255,255,255,.28)}
.form-grid{grid-template-columns:repeat(2, 1fr)}

.contact-card{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.site-footer{
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.footer-inner{
  display:grid; gap:18px;
  grid-template-columns:1.5fr 1fr 1fr;
  padding:36px 0;
}
.footer-title{font-weight:700; margin-bottom:8px}
.footer-brand{font-weight:800; font-size:1.1rem; margin-bottom:8px}
.footer-bottom{padding:14px 0; border-top:1px solid var(--line)}

@media (max-width: 900px){
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .coverage{grid-template-columns:1fr}
  .cta-slab{flex-direction:column; align-items:flex-start}
  .form-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
}