:root{
  --bg:#07131f;
  --bg2:#0b1b2a;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(199,205,214,.18);
  --text:#e6e9ee;
  --muted:rgba(230,233,238,.72);
  --silver:#c7cdd6;
  --accent:#e6e9ee;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:28px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(199,205,214,.10), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(230,233,238,.08), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color:var(--text);
}

a{color:inherit;text-decoration:none}
strong{color:var(--accent)}
img{max-width:100%;display:block}

.container{
  width:min(1120px, calc(100% - 36px));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(7,19,31,.58);
  border-bottom:1px solid var(--stroke);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand__logo{
  width:44px;
  height:44px;
  flex:0 0 auto;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.brand__text{min-width:0}
.brand__name{
  font-weight:720;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:16px;
}
.brand__tag{
  font-size:12px;
  color:var(--muted);
  letter-spacing:1.4px;
  text-transform:uppercase;
  margin-top:2px;
}

.nav{
  display:none;
  gap:18px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.nav a:hover{color:var(--text)}

.menuBtn{
  width:46px;height:44px;
  border-radius:14px;
  background: var(--card);
  border:1px solid var(--stroke);
  display:grid;
  place-items:center;
  gap:4px;
}
.menuBtn span{
  display:block;
  width:18px;
  height:2px;
  background: var(--silver);
  border-radius:999px;
  opacity:.9;
}

.drawer{
  position:fixed;
  inset:0;
  z-index:50;
  pointer-events:none;
}
.drawer__panel{
  position:absolute;
  top:0; right:0;
  width:min(86vw, 360px);
  height:100%;
  background: rgba(7,19,31,.92);
  backdrop-filter: blur(16px);
  border-left:1px solid var(--stroke);
  transform: translateX(110%);
  transition: transform .22s ease;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.drawer__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.40);
  opacity:0;
  transition: opacity .22s ease;
}
.drawer.isOpen{pointer-events:auto}
.drawer.isOpen .drawer__panel{transform: translateX(0)}
.drawer.isOpen .drawer__backdrop{opacity:1}

.drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:6px;
}
.drawer__title{font-weight:750}
.drawer__close{
  width:44px;height:44px;
  border-radius:14px;
  background: var(--card);
  border:1px solid var(--stroke);
  color:var(--text);
  font-size:18px;
}
.drawer a{
  padding:14px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  color:var(--text);
  font-weight:650;
}

.hero{padding:34px 0 10px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.hero__copy{padding:10px 0}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  letter-spacing:1.2px;
  text-transform:uppercase;
  font-weight:650;
}

h1{
  margin:0 0 10px;
  font-size: clamp(34px, 6.6vw, 62px);
  line-height:1.06;
  letter-spacing:-.8px;
}
p{margin:0 0 12px; color:var(--muted); font-size:16px; line-height:1.55}

.hero__ctas{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 14px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  font-weight:750;
  letter-spacing:.2px;
  font-size:15px;
  min-width: 140px;
}
.btn--primary{
  background: linear-gradient(180deg, rgba(230,233,238,.18), rgba(230,233,238,.08));
  color: var(--text);
  box-shadow: var(--shadow);
}
.btn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.btn--full{width:100%}

.trustRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.trustRow__item{
  padding:10px 12px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:14px;
  min-width: 160px;
}
.trustRow__label{display:block; font-size:11px; color:var(--muted); letter-spacing:1.3px; text-transform:uppercase}
.trustRow__value{display:block; font-size:14px; font-weight:750; margin-top:2px}

.hero__card{
  background: linear-gradient(180deg, var(--card2), var(--card));
  border:1px solid var(--stroke);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}

.cardHeader{margin-bottom:10px}
.badge{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(199,205,214,.12);
  border:1px solid var(--stroke);
  color:var(--silver);
  font-size:12px;
  font-weight:750;
  letter-spacing:1.1px;
  text-transform:uppercase;
}
.hero__card h2{margin:10px 0 6px; font-size:22px}
.muted{color:var(--muted)}
.micro{font-size:12px; line-height:1.4}

.checklist{
  list-style:none;
  padding:0;
  margin:12px 0 14px;
}
.checklist li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  color: var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--accent);
  font-weight:900;
}

.section{padding:34px 0}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}

.sectionHead h2{margin:0 0 8px; font-size:26px}
.sectionHead p{margin:0 0 18px}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.priceCard{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:16px;
}
.priceCard--featured{
  background: linear-gradient(180deg, rgba(199,205,214,.10), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.badgeRow{margin-bottom:8px}
.priceCard h3{margin:0 0 6px; font-size:18px}
.price{margin:0 0 8px; font-size:16px}
.priceCard ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.priceCard li{margin:8px 0}

.noteRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}
.note{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:14px;
}
.note h4{margin:0 0 6px}

.pillGrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.ph{
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border:1px dashed rgba(199,205,214,.35);
  display:grid;
  place-items:center;
  color: rgba(230,233,238,.55);
  background: rgba(255,255,255,.02);
}

.quoteBox{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.quoteBtns{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.form{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:14px;
  display:grid;
  gap:10px;
}
label{display:grid; gap:6px; color:var(--muted); font-weight:650; font-size:13px}
input, select{
  width:100%;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(7,19,31,.35);
  color: var(--text);
  padding:12px 12px;
  font-size:15px;
}
input::placeholder{color: rgba(230,233,238,.45)}

.faq details{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:14px;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:750}
.faq p{margin:10px 0 0}

.contactGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.contactCard{
  background: rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:16px;
}

.footer{
  padding:26px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-top:1px solid var(--stroke);
  padding-top:18px;
}
.footer__left{display:flex; align-items:center; gap:12px}
.footer__logo{
  width:40px;
  height:40px;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.footer__brand{font-weight:750}

.stickyCta{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:14px;
  z-index:30;
  display:flex;
  gap:10px;
  padding:10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(7,19,31,.62);
  backdrop-filter: blur(12px);
}
.stickyBtn{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  font-weight:750;
  font-size:14px;
}
.stickyBtn--primary{
  background: rgba(230,233,238,.14);
}
.stickyBtn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
}

@media (min-width: 920px){
  .nav{display:flex}
  .menuBtn{display:none}
}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .quoteBox{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .noteRow{grid-template-columns:1fr}
  .stickyCta{width: calc(100% - 26px)}
  .btn{min-width: unset}
}

@media (max-width: 420px){
  .container{width: calc(100% - 26px)}
  .brand__name{font-size:15px}
  .brand__tag{font-size:11px}
  .gallery{grid-template-columns:1fr}
}