:root{
  --bg:#0b0b0c;
  --text:#f2f2f3;
  --muted:#b8b8be;
  --brand:#d10b0b;
  --brand2:#ff4d4d;
  --max:1100px;
  --radius:18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}
html,body{margin:0;padding:0;background:radial-gradient(1200px 600px at 50% -50%, rgba(209,11,11,.35), rgba(11,11,12,0) 60%), var(--bg); color:var(--text); font-family:var(--font); line-height:1.45;}
a{color:inherit}
.container {
  width: min(100% - 24px, 1100px);
  margin: 0 auto;
}
header{
  position:sticky; top:0; z-index:20;
  background:rgba(11,11,12,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.navbar{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0;}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none;}
.brand img{width:56px; height:56px; border-radius:50%; box-shadow: 0 8px 20px rgba(0,0,0,.35);}
.brand .name{font-weight:800; letter-spacing:.3px; font-size:18px;}
.brand .sub{color:var(--muted); font-weight:600; font-size:12px; margin-top:2px;}
.navlinks{display:flex; align-items:center; gap:18px; flex-wrap:wrap;}

@media (max-width: 768px){
  .navbar{
    flex-direction: column;
    align-items: flex-start;
  }

  .navlinks{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .navlinks a{
    width: 100%;
  }

  .cta{
    width: 100%;
  }
}
.navlinks a{color:var(--muted); text-decoration:none; font-weight:650; font-size:14px;}
.navlinks a:hover{color:var(--text)}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:white; text-decoration:none; font-weight:800; letter-spacing:.2px; font-size:14px;
  box-shadow: 0 12px 26px rgba(209,11,11,.25);
  white-space:nowrap;
}
.cta:focus{outline:3px solid rgba(255,77,77,.35); outline-offset:2px;}
.hero{padding:56px 0 26px;}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:stretch;}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr;} .hero{padding:42px 0 18px;} }
.kicker{color:var(--brand2); font-weight:900; letter-spacing:.12em; font-size:12px; text-transform:uppercase;}
h1{font-size:44px; line-height:1.06; margin:10px 0 10px;}
@media (max-width: 520px){
  h1{
    font-size:30px;
    line-height:1.15;
  }
}
.lede{color:var(--muted); font-size:18px; max-width:60ch;}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{padding:18px;}
.hero-card h3{margin:0 0 6px; font-size:16px;}
.hero-card p{margin:0; color:var(--muted); font-size:14px;}
.pill{display:inline-flex; gap:10px; align-items:center; padding:10px 12px; border:1px solid rgba(255,255,255,.10); border-radius:999px; color:var(--muted); font-weight:700; font-size:13px;}
.section{padding:34px 0;}
.section h2{font-size:26px; margin:0 0 12px;}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
@media (max-width: 900px){ .grid-3{grid-template-columns:1fr;} }
.service{padding:18px;}
.service h3{margin:0 0 8px; font-size:16px;}
.service p{margin:0; color:var(--muted); font-size:14px;}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted);}
.list li{margin:6px 0;}
.banner{
  padding:18px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px;
}
.banner .text{max-width:70ch;}
.banner h3{margin:0 0 6px;}
.banner p{margin:0; color:var(--muted);}
.page-title{padding:34px 0 10px;}
.page-title h1{font-size:34px; margin:0 0 8px;}
.page-title p{margin:0; color:var(--muted); max-width:80ch;}
hr.sep{border:none; border-top:1px solid rgba(255,255,255,.08); margin:22px 0;}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
@media (max-width: 900px){ .two-col{grid-template-columns:1fr;} }
.form{padding:18px;}
label{
  display:block;
  font-weight:800;
  margin:16px 0 6px;
}
input, select, textarea{
  width:100%;
  padding:14px 12px;
  margin-bottom:8px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  color:var(--text);
  font-size:16px;
}
textarea{min-height:120px; resize:vertical;}
small.helper{color:var(--muted); display:block; margin-top:6px;}
button.submit{
  width:100%;
  margin-top:14px;
  padding:12px 14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:white;
  font-weight:900;
  cursor:pointer;
}
button.submit:hover{filter:brightness(1.03)}
.footer{
  margin-top:36px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}
.footer-inner{padding:18px 0; display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;}
.tagline{font-weight:900; letter-spacing:.2px;}
.tagline span{color:var(--brand2);}
.footer small{color:var(--muted); font-weight:650;}
img {
  max-width: 100%;
  height: auto !important;
  object-fit: contain !important;
}