:root{
  --bg:#0b0b0d;
  --bg2:#121217;
  --text:#f4f4f6;
  --muted:#b8b8c2;
  --card:#15151c;
  --stroke:#262633;
  --accent:#9f1414;  /* replace with exact logo red */
  --accent2:#7f0f0f; /* replace with exact logo red shadow */
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:var(--text); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1100px;margin:0 auto;padding:0 18px}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,11,13,.88);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--stroke);
}
.header-inner{display:flex;align-items:center;gap:18px; padding:12px 0}
.brand-logo{height:44px; width:auto; display:block}
.nav{margin-left:auto; display:flex; gap:16px; align-items:center}
.nav a{color:var(--muted)}
.nav a.btn{color:var(--text)}
.nav-toggle{display:none; margin-left:auto; background:transparent; border:1px solid var(--stroke); color:var(--text); padding:8px 10px; border-radius:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid transparent;
  font-weight:600;
}
.btn-primary{background:linear-gradient(180deg,var(--accent),var(--accent2));}
.btn-outline{border-color:var(--stroke); background:transparent}
.btn-ghost{border-color:transparent; background:rgba(255,255,255,.06)}

.hero{
  position:relative;
  min-height:74vh;
  background: url("../assets/hero.jpg") center/cover no-repeat;
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(159,20,20,.35), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.92));
}
.hero-inner{position:relative; padding:86px 0 54px}
.hero-content{max-width:760px}
.hero h1{font-size:44px; margin:0 0 12px}
.hero p{color:var(--muted); font-size:18px; margin:0 0 18px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.hero-meta{margin-top:18px; display:flex; gap:18px; flex-wrap:wrap; color:var(--muted)}
.hero-meta a{color:var(--text)}

.trustbar{
  background:var(--bg2);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.trustbar-inner{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; padding:14px 0}
.trust-item{
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  text-align:center;
}

.section{padding:56px 0}
.section-alt{background:var(--bg2); border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke)}
h2{font-size:30px; margin:0 0 10px}
.subhead{color:var(--muted); margin:0 0 22px}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:16px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.card.highlight{border-color:rgba(159,20,20,.55); box-shadow: 0 0 0 1px rgba(159,20,20,.2) inset}

.two-col{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

.quote-form{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:16px;
}
.grid{display:grid; grid-template-columns:repeat(2,1fr); gap:12px}
label{display:flex; flex-direction:column; gap:6px; color:var(--muted); font-size:13px}
input, select, textarea{
  border-radius:12px;
  border:1px solid var(--stroke);
  background:#0f0f14;
  color:var(--text);
  padding:10px 12px;
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color:rgba(159,20,20,.7)}
.full{grid-column:1 / -1}
.form-actions{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:12px}
.fineprint{color:var(--muted); font-size:12px; margin:0}

.contact-panel{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  margin-top:16px;
}
.contact-panel > div{
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px;
}
.contact-panel p{margin:8px 0; color:var(--muted)}
.contact-panel a{color:var(--text)}

.site-footer{padding:22px 0; border-top:1px solid var(--stroke)}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer-logo{height:34px; width:auto}
.footer-left p{margin:6px 0 0; color:var(--muted)}
.footer-right{color:var(--muted)}
.sep{margin:0 10px; color:var(--stroke)}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(15,15,20,.92);
  border:1px solid rgba(159,20,20,.45);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.wa-icon{
  width:34px; height:34px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(180deg,var(--accent),var(--accent2));
  font-weight:800;
}
.wa-text{color:var(--text); font-weight:700}

@media (max-width: 920px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .trustbar-inner{grid-template-columns:repeat(2,1fr)}
  .hero h1{font-size:38px}
}
@media (max-width: 720px){
  .nav{display:none}
  .nav-toggle{display:block}
  .grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .contact-panel{grid-template-columns:1fr}
  .hero-inner{padding:72px 0 44px}
  .hero h1{font-size:32px}
}
