:root{
  --bg:#0b0b0f;
  --card:#101018;
  --text:#e9e9ee;
  --muted:#a7a7b3;
  --line:rgba(255,255,255,.08);
  --brand:#b91c1c;     /* brick red */
  --brand2:#ef4444;
  --soft:#0f172a;
  --white:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1140px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(185,28,28,.25), transparent 60%),
              radial-gradient(800px 500px at 90% 10%, rgba(239,68,68,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.muted{color:var(--muted)}
.hidden{display:none}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:var(--white);
  font-weight:700;
  box-shadow: var(--shadow);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn--ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn--sm{padding:10px 14px; font-weight:700}

.link{color:#ffd1d1; font-weight:700}
.link:hover{text-decoration:underline}

.topbar{
  background: rgba(255,255,255,.03);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.topbar__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.topbar__left{display:flex; flex-wrap:wrap; gap:10px; align-items:center}
.toplink{color:var(--muted); font-weight:600}
.toplink:hover{color:var(--text)}
.chip{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(185,28,28,.18);
  border:1px solid rgba(185,28,28,.35);
  color:#ffd1d1;
  font-weight:700;
}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,11,15,.55);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.logo{display:flex; align-items:center; gap:12px}
.logo__mark{
  width:42px; height:42px; border-radius:12px;
  background:
    linear-gradient(135deg, var(--brand), var(--brand2));
  position:relative;
  box-shadow: var(--shadow);
}
.logo__mark::before{
  content:"";
  position:absolute; inset:9px 10px 9px 10px;
  border:2px solid rgba(255,255,255,.7);
  border-radius:8px;
}
.logo__name{font-weight:900; letter-spacing:.3px; font-size:16px}
.logo__tag{display:block; font-size:12px; color:var(--muted); font-weight:600; margin-top:2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); font-weight:700}
.nav a:hover{color:var(--text)}

.menuBtn{
  display:none;
  background:transparent; border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  width:44px; height:44px;
  padding:10px;
}
.menuBtn span{
  display:block; height:2px; background:#fff;
  margin:6px 0; border-radius:2px;
}

/* Hero */
.hero{padding:34px 0 0}
.hero__grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:28px;
  align-items:stretch;
}

.kicker{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: #e9e9ee;
  font-weight:700;
  font-size:12px;
}
.hero h1{
  margin:14px 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  line-height:1.08;
  letter-spacing:-.6px;
}
.accent{color:#ffb4b4}
.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}

.trust{display:grid; gap:12px; margin-top:10px}
.trust__item{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.icon{font-size:18px}
.trust__title{font-weight:900}
.trust__desc{color:var(--muted); font-size:13px}

.hero__media{display:flex; align-items:stretch}
.heroCard{
  width:100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard__img{height: 360px}
.imgPlaceholder{
  height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(300px 140px at 30% 20%, rgba(185,28,28,.28), transparent 60%),
    radial-gradient(240px 120px at 80% 30%, rgba(239,68,68,.18), transparent 55%),
    rgba(0,0,0,.35);
  color: #ffd1d1;
  text-align:center;
  padding: 18px;
}
.imgPlaceholder small{color: rgba(255,255,255,.65); margin-top:6px}

.heroCard__meta{
  display:flex; gap:10px; flex-wrap:wrap;
  padding:14px;
}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight:800;
  font-size:12px;
}

/* stripe */
.hero__stripe{
  margin-top:26px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.stripe__row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  padding:14px 0;
}
.stripe__item{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-weight:800;
  text-align:center;
}

/* Sections */
.section{padding:70px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.sectionHead{max-width: 820px; margin-bottom: 26px}
.eyebrow{color:#ffb4b4; font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:12px; margin:0 0 8px}
.sectionHead h2{margin:0 0 10px; font-size: clamp(22px, 2.5vw, 34px); letter-spacing:-.3px}
.subtext{color:var(--muted); margin:0}

.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.card h3{margin:0 0 10px}
.card p{color:var(--muted); margin:0 0 12px}
.card--dark{
  background: linear-gradient(180deg, rgba(185,28,28,.15), rgba(255,255,255,.02));
}

.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

.aboutGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}

.promise{display:grid; gap:12px}
.promise__title{font-weight:900}
.promise__desc{color:var(--muted); font-size:13px; margin-top:4px}

.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:18px;
}
.stat{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  text-align:center;
}
.stat__num{font-size:30px; font-weight:900}
.stat__label{color:var(--muted); font-weight:700; font-size:12px; margin-top:6px}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.product{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:18px;
  transition: transform .15s ease, border-color .15s ease;
}
.product:hover{transform: translateY(-2px); border-color: rgba(239,68,68,.4)}
.product__icon{font-size:26px}
.product h3{margin:10px 0 8px}
.product p{margin:0; color:var(--muted)}
.tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.tag{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#ffd1d1;
  background: rgba(185,28,28,.14);
  border:1px solid rgba(185,28,28,.35);
}

.ctaBand{
  margin-top:16px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(185,28,28,.22), rgba(255,255,255,.02));
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.ctaBand h3{margin:0 0 4px}
.ctaBand p{margin:0; color:var(--muted)}
.ctaBand__btns{display:flex; gap:10px; flex-wrap:wrap}

.whyGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.whyItem{
  display:flex; gap:12px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.whyItem__icon{font-size:26px}
.whyItem h3{margin:0 0 6px}
.whyItem p{margin:0; color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.g{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  min-height: 160px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  overflow:hidden;
  position:relative;
}
.g span{
  font-size:12px;
  color: rgba(255,255,255,.7);
  padding:10px 12px;
  width:100%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}
.g1{grid-column: span 7; min-height: 220px}
.g2{grid-column: span 5; min-height: 220px}
.g3{grid-column: span 4}
.g4{grid-column: span 4}
.g5{grid-column: span 4}
.g6{grid-column: span 12; min-height: 200px}

.quote{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding:18px;
}
.quote p{margin:0; color: var(--text); font-weight:700}
.quote__by{margin-top:10px; color: var(--muted); font-weight:800; font-size:12px}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:16px;
  align-items:start;
}
.contactLine{display:flex; gap:10px; margin:10px 0}
.contactLine span{opacity:.9}
.mini{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.note{
  margin-top:14px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.18);
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

.card--form{padding:18px}
.field{display:flex; flex-direction:column; gap:6px; margin:10px 0}
.fieldRow{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
label{font-weight:900; font-size:12px; color:#ffd1d1; letter-spacing:.02em}
input, select, textarea{
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(239,68,68,.45)}
.formHint{color:var(--muted); font-size:12px; margin-top:10px}

.footer{
  border-top:1px solid var(--line);
  padding:40px 0 22px;
  background: rgba(0,0,0,.35);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap:16px;
}
.footer__grid a{display:block; color:var(--muted); font-weight:800; margin:8px 0}
.footer__grid a:hover{color:var(--text)}
.footer__brand{display:flex; gap:12px; align-items:center}
.footer__name{font-weight:900}
.footer__tag{color:var(--muted); font-weight:700; font-size:12px}
.footer__text{color:var(--muted); margin-top:12px}
.footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.7);
  font-weight:700;
  font-size:12px;
}

.floatBtn{
  position:fixed;
  right:16px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:900;
  box-shadow: var(--shadow);
  z-index:80;
}
.floatBtn--wa{
  bottom:72px;
  background: rgba(16,185,129,.15);
  border-color: rgba(16,185,129,.35);
}
.floatBtn--call{
  bottom:18px;
  background: rgba(185,28,28,.18);
  border-color: rgba(239,68,68,.35);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .heroCard__img{height:300px}
  .stripe__row{grid-template-columns: repeat(2,1fr)}
  .aboutGrid{grid-template-columns: 1fr}
  .stats{grid-template-columns: repeat(2,1fr)}
  .grid3{grid-template-columns: 1fr}
  .whyGrid{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
}

@media (max-width: 820px){
  .menuBtn{display:inline-block}
  .nav{
    position:absolute;
    left:0; right:0;
    top:100%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:14px;
    background: rgba(11,11,15,.92);
    border-bottom:1px solid var(--line);
  }
  .nav.open{display:flex}
}

@media (max-width: 520px){
  .fieldRow{grid-template-columns: 1fr}
  .hero{padding-top:18px}
}
/* Map box */
.mapBox{
  margin-top:16px;
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.mapHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.mapHead h4{margin:0}
.mapFrame{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.mapFrame iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}
.mapHint{
  margin:10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Small toast */
.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.9);
  font-weight:900;
  z-index:999;
  box-shadow: var(--shadow);
  display:none;
}
.toast.show{display:block}
details{padding:10px 0; border-top:1px solid rgba(255,255,255,.08)}
details:first-child{border-top:0}
summary{cursor:pointer; list-style:none}
summary::-webkit-details-marker{display:none}
details p{margin:8px 0 0; color:var(--muted)}
