:root{
  --bg:#0e0e10;
  --nav:#050506;
  --panel:#141417;
  --panel2:#101012;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.08);
  --text:#f2f2f2;
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.58);
  --burgundy:#6d141c;
  --burgundy2:#8b1e28;
  --gray:#2d2d31;
  --gray2:#3b3b41;
  --r:18px;
  --shadow:0 18px 55px rgba(0,0,0,.55);
  --shadow2:0 10px 26px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 900px at 40% -5%, rgba(109,20,28,.35), transparent 62%),
              radial-gradient(900px 700px at 85% 0%, rgba(255,255,255,.05), transparent 58%),
              var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.45;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1180px;margin:0 auto;padding:0 18px 90px}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(0,0,0,.80);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.topbar-inner{
  max-width:1180px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  font-weight:900;
  letter-spacing:1.2px;
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
  white-space:nowrap;
}

.nav{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;align-items:center}

/* Mobile menu toggle — hidden on desktop */
.nav-toggle{
  display:none;
  background:none;
  border:1px solid rgba(255,255,255,.16);
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
  color:#fff;
  font-size:20px;
  line-height:1;
}

.pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  font-weight:800;font-size:13px;
}
.pill:hover{border-color:rgba(255,255,255,.26);background:rgba(255,255,255,.06)}
.pill.active{border-color:rgba(255,255,255,.32);background:rgba(255,255,255,.085)}
.pill.call{background:rgba(255,255,255,.07)}

.hero{
  margin-top:18px;
  background: linear-gradient(90deg, rgba(109,20,28,.95) 0%, rgba(109,20,28,.58) 52%, rgba(0,0,0,.25) 100%);
  border-radius:22px;
  padding:56px 52px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.085);
}
.hero .chip{
  display:inline-flex;align-items:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  font-weight:800;font-size:13px;
}
.hero h1{margin:18px 0 10px;font-size:52px;line-height:1.05;letter-spacing:-.4px}
.hero p{margin:0;max-width:72ch;color:rgba(255,255,255,.88);font-size:16px}

.section{margin-top:58px}
.section h2{margin:0 0 10px;font-size:26px;color:#eaeaea}
.section p.lead{margin:0 0 22px;color:var(--muted);max-width:95ch}

.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.card{
  background: var(--panel);
  border:1px solid rgba(255,255,255,.085);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow2);
  min-height: 290px;
  display:flex;flex-direction:column;justify-content:space-between;
}
.card h3{margin:0;font-size:16px}
.badge{
  display:inline-flex;margin-top:12px;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.82);
  font-size:12px;font-weight:800;
}
.card p{margin:12px 0 0;color:var(--muted);font-size:13px}

.btnrow{margin-top:18px;display:grid;gap:10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;
  font-weight:900;font-size:14px;
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
  transition: background .15s, transform .15s;
}
.btn.primary{background:var(--burgundy);border-color:rgba(0,0,0,0)}
.btn.primary:hover{background:var(--burgundy2)}
.btn.gray{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.14)}
.btn.gray:hover{background:rgba(255,255,255,.22)}

.twocol{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.panel{
  background: var(--panel);
  border:1px solid rgba(255,255,255,.085);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow2);
}
.panel h3{margin:0 0 8px;font-size:14px;letter-spacing:.2px}
.panel p{margin:0;color:var(--muted);font-size:13px}

.chips{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 0}
.chip2{
  display:inline-flex;
  padding:8px 12px;border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-weight:800;font-size:12px;
}

.formwrap{
  margin-top:16px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.085);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow2);
}
.formgrid{display:grid;gap:12px}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color:#fff;
  font-size:16px;
  font-family:inherit;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(255,255,255,.28);
}
textarea{min-height:160px;resize:vertical}
.help{margin-top:10px;color:var(--muted2);font-size:13px}

/* Hero CTA area */
.hero .cta{margin-top:32px;display:flex;gap:12px;flex-wrap:wrap}
.hero .btn.primary{
  background: linear-gradient(180deg, #e6e6e8 0%, #cfd0d4 100%);
  color: #0b0b0c;
  border: 1px solid rgba(0,0,0,.25);
  box-shadow:
    0 14px 34px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.hero .btn.primary:hover{
  background: linear-gradient(180deg, #f0f0f2 0%, #d8d9dd 100%);
}

.footer{
  margin-top:70px;
  padding:0;
}
.footerbar{
  width:100%;
  margin-top:70px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 35%, rgba(0,0,0,.68) 100%);
  border-top:1px solid rgba(255,255,255,.08);
}
.footerbar .inner{
  max-width:1180px;
  margin:0 auto;
  padding:22px 18px 26px;
  color: rgba(255,255,255,.60);
  font-size:13px;
  text-align:center;
}

/* Responsive */
@media (max-width:1100px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .twocol{grid-template-columns:1fr}
}
@media (max-width:700px){
  .nav-toggle{display:block}
  .nav{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding-top:10px;
  }
  .nav.open{display:flex}
  .topbar-inner{flex-wrap:wrap}
  .pill{justify-content:center}
  .hero{padding:38px 20px}
  .hero h1{font-size:38px}
  .hero .cta{flex-direction:column}
  .cards{grid-template-columns:1fr}
}
