:root{
  --bg:#0b0f14;
  --panel:#101723;
  --panel2:#0f1620;
  --text:#e8eef7;
  --muted:#a9b7c7;
  --line:#243244;
  --brand:#7dd3fc;
  --brand2:#38bdf8;
  --good:#34d399;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}

*{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(1200px 700px at 20% -10%, rgba(56,189,248,.18), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(125,211,252,.10), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Header */
.site-header{
  position: sticky; top:0; z-index:50;
  background: rgba(11,15,20,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36,50,68,.55);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  background: linear-gradient(135deg, rgba(125,211,252,.9), rgba(56,189,248,.35));
  box-shadow: 0 10px 30px rgba(56,189,248,.18);
}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted); margin-top:3px}

.nav{display:flex; align-items:center; gap:14px}

/* ✅ FIX: don't apply muted nav link color to buttons */
.nav a:not(.btn){color:var(--muted); font-size:14px}
.nav a:not(.btn):hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px; font-weight:650;
  border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn-solid{
  background: linear-gradient(135deg, rgba(125,211,252,.95), rgba(56,189,248,.55));
  color:#071019;
  box-shadow: 0 12px 30px rgba(56,189,248,.18);
}
.btn-outline{
  border-color: rgba(125,211,252,.35);
  background: rgba(16,23,35,.55);
  color: var(--text);
}

/* ✅ FIX: force solid button text color inside nav */
.nav a.btn.btn-solid{
  color:#071019 !important;
}

.menu-btn{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(36,50,68,.8);
  background: rgba(16,23,35,.55);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin:4px auto;
  border-radius:2px;
}

/* Mobile nav */
.mobile-nav{
  border-top: 1px solid rgba(36,50,68,.55);
  padding:10px 20px 18px;
  display:flex; flex-direction:column; gap:10px;
}
.mobile-nav a{color:var(--muted)}
.mobile-nav a:hover{color:var(--text)}
.mobile-nav .btn{width:fit-content}

/* ✅ CRITICAL FIX: honor the HTML hidden attribute */
.mobile-nav[hidden]{
  display:none !important;
}

/* Hero */
.hero{padding:72px 0 24px}
.hero-grid{
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap:26px; align-items:stretch;
}
.eyebrow{color:var(--muted); margin:0 0 10px; font-size:14px}
h1{font-size:44px; line-height:1.08; margin:0 0 14px}
.subhead{color:var(--muted); font-size:16px; margin:0 0 18px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 18px}
.trust{
  list-style:none; padding:0; margin:18px 0 0;
  display:flex; gap:14px; flex-wrap:wrap;
}
.trust li{
  border:1px solid rgba(36,50,68,.65);
  background: rgba(16,23,35,.35);
  padding:10px 12px; border-radius:14px;
  color:var(--muted); font-size:13px;
}
.trust strong{color:var(--text)}

.hero-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16,23,35,.85), rgba(15,22,32,.55));
  border: 1px solid rgba(36,50,68,.7);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 220px at 20% 20%, rgba(56,189,248,.22), transparent 55%),
              radial-gradient(520px 220px at 80% 60%, rgba(125,211,252,.16), transparent 55%);
  pointer-events:none;
}
.hero-card-inner{position:relative; padding:18px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(125,211,252,.35);
  background: rgba(16,23,35,.55);
  color: var(--text);
  font-size:12px;
}
.card-title{margin:14px 0 8px; font-weight:800}
.card-lines .line{
  height:10px; border-radius:10px;
  background: rgba(169,183,199,.18);
  margin:10px 0;
}
.card-lines .short{width:65%}
.card-photos{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:10px; margin-top:14px;
}
.ph{
  height:54px; border-radius:14px;
  border:1px solid rgba(36,50,68,.65);
  background: rgba(16,23,35,.55);
}

/* Sections */
.section{padding:64px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(16,23,35,.40), rgba(11,15,20,0));
  border-top: 1px solid rgba(36,50,68,.35);
  border-bottom: 1px solid rgba(36,50,68,.35);
}
.section-head{max-width:720px}
h2{font-size:30px; margin:0 0 10px}
.section-head p{color:var(--muted); margin:0}

/* Services grid */
.grid-3{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.grid-3 .card{
  grid-column: span 4;
}

/* Cards */
.card{
  border-radius: var(--radius);
  border:1px solid rgba(36,50,68,.75);
  background: rgba(16,23,35,.45);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 12px; color:var(--muted)}
.bullets{margin:0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

/* Steps */
.steps{
  margin-top:22px;
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.step{
  border-radius: var(--radius);
  border:1px solid rgba(36,50,68,.65);
  background: rgba(16,23,35,.35);
  padding:18px;
}
.step-num{
  width:36px; height:36px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(125,211,252,.18);
  border: 1px solid rgba(125,211,252,.35);
  margin-bottom:10px;
  font-weight:800;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted)}

/* Split sections */
.split{
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap:16px; align-items:start;
  margin-top:16px;
}

/* Make Request section form column bigger */
#request .split{
  grid-template-columns: .9fr 1.1fr;
}

.checks{list-style:none; padding:0; margin:14px 0 0}
.checks li{
  margin:10px 0;
  padding-left:28px;
  position:relative;
  color:var(--muted);
}
.checks li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--good);
  font-weight:900;
}
.panel{
  border-radius: var(--radius);
  border:1px solid rgba(36,50,68,.75);
  background: rgba(16,23,35,.45);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  padding:18px;
}
.panel h3{margin:0 0 6px}
.panel p{margin:0 0 12px; color:var(--muted)}
.divider{height:1px; background: rgba(36,50,68,.7); margin:14px 0}

/* Form wrapper */
.form{
  border-radius: var(--radius);
  border:1px solid rgba(36,50,68,.75);
  background: rgba(16,23,35,.45);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  padding:18px;
}
.fineprint{color:var(--muted); font-size:12px; margin:10px 0 0}
.contact-mini{margin-top:10px}
.muted{color:var(--muted)}
.small{font-size:12px}

/* Footer */
.site-footer{
  padding:26px 0 34px;
  border-top: 1px solid rgba(36,50,68,.45);
}
.footer-inner{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.footer-links{display:flex; gap:12px}
.footer-links a{color:var(--muted); font-size:14px}
.footer-links a:hover{color:var(--text)}
.footer-brand{font-weight:800}

/* Responsive */
@media (max-width: 1100px){
  .grid-3 .card{ grid-column: span 6; }
}
@media (max-width: 920px){
  h1{font-size:36px}
  .hero-grid, .split{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .nav{display:none}
  .menu-btn{display:block}
}
@media (max-width: 720px){
  .grid-3 .card{ grid-column: span 12; }
}

/* ✅ Safety: never let solid buttons look disabled */
.btn.btn-solid{
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto !important;
}

/* ✅ Extra safety: mobile nav never shows on desktop */
@media (min-width: 921px){
  .mobile-nav{ display:none !important; }
}
