:root{
  --black:#050505;
  --black2:#0b0c0f;
  --panel:#121318;
  --panel2:#191b21;
  --red:#e50914;
  --red2:#69070c;
  --white:#fff;
  --silver:#d7d9dc;
  --muted:#aeb0b5;
  --line:rgba(255,255,255,.14);
  --glow:rgba(237,28,36,.36);
  --max:1240px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Oswald",sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
}
body.catalog-open{overflow:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--max),92%);margin:auto}

.navbar{
  position:fixed;
  inset:0 0 auto 0;
  height:86px;
  z-index:50;
  background:rgba(5,5,5,.82);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.navbar.scrolled{background:rgba(5,5,5,.94)}
.navbar-container{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:max-content;
}
.logo-image{
  width:176px;
  height:64px;
  object-fit:contain;
  filter:drop-shadow(0 0 16px rgba(237,28,36,.34));
}
.logo-mark{
  width:58px;
  height:50px;
  display:grid;
  place-items:center;
  font-family:"Bebas Neue",sans-serif;
  font-size:1.8rem;
  line-height:1;
  color:var(--white);
  background:linear-gradient(135deg,var(--red),var(--red2));
  border:3px solid var(--white);
  box-shadow:0 0 26px var(--glow), inset 0 0 0 2px rgba(0,0,0,.75);
  clip-path:polygon(15% 0,100% 0,85% 100%,0 100%);
  text-shadow:2px 2px 0 #000;
}
.logo-copy{
  display:flex;
  flex-direction:column;
  line-height:1;
  text-transform:uppercase;
}
.logo-copy strong{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.95rem;
  letter-spacing:.04em;
  text-shadow:2px 2px 0 #000,0 0 16px rgba(255,255,255,.18);
}
.logo-copy small{
  margin-top:2px;
  color:var(--silver);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
}
.nav-menu{
  display:flex;
  gap:28px;
}
.nav-menu a{
  text-transform:uppercase;
  font-size:.86rem;
  letter-spacing:.08em;
  color:#d7d8dc;
  position:relative;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:3px;
  background:var(--red);
  transition:.3s;
  box-shadow:0 0 14px var(--glow);
}
.nav-menu a:hover::after{width:100%}

.btn-whatsapp,
.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  border-radius:4px;
  transition:.3s ease;
}
.btn-whatsapp,
.btn-primary{
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:white;
  padding:14px 22px;
  box-shadow:0 0 25px var(--glow),0 8px 20px rgba(0,0,0,.35);
}
.btn-whatsapp:hover,
.btn-primary:hover{
  transform:translateY(-4px);
  filter:brightness(1.08);
  box-shadow:0 0 35px rgba(237,28,36,.52),0 12px 30px rgba(0,0,0,.42);
}
.btn-secondary{
  border:1px solid rgba(255,255,255,.28);
  padding:14px 22px;
}
.btn-secondary:hover{
  border-color:var(--red);
  background:rgba(237,28,36,.12);
}

.hamburger{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
}
.hamburger::before{
  content:none;
}

.hero{
  min-height:88svh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:86px;
  background:
    linear-gradient(90deg,rgba(5,5,5,.97) 0%,rgba(5,5,5,.9) 42%,rgba(5,5,5,.34) 100%),
    url("https://images.unsplash.com/photo-1558981359-219d6364c9c8?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center right;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 74% 50%,rgba(237,28,36,.5),transparent 28%),
    linear-gradient(135deg,transparent 0 58%,rgba(237,28,36,.34) 58% 60%,transparent 60%),
    repeating-linear-gradient(115deg,rgba(255,255,255,.06) 0 1px,transparent 1px 28px);
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:180px;
  background:linear-gradient(transparent,var(--black));
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:30px;
}
.hero-content{padding:38px 0}
.eyebrow{
  width:max-content;
  max-width:100%;
  margin-bottom:18px;
  padding:8px 12px;
  color:var(--silver);
  border-left:4px solid var(--red);
  background:rgba(255,255,255,.06);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.86rem;
  font-weight:700;
}
.hero-content h1{
  font-family:"Bebas Neue",sans-serif;
  font-size:clamp(4rem,7.45vw,7.1rem);
  line-height:.82;
  letter-spacing:.015em;
  margin-bottom:24px;
  font-weight:700;
  text-transform:uppercase;
  text-shadow:4px 4px 0 #000;
}
.hero-content h1 span{display:block}
.red{
  color:var(--red);
  -webkit-text-stroke:1px rgba(255,255,255,.82);
  text-shadow:4px 4px 0 #000,0 0 45px var(--glow);
}
.hero-content p:not(.eyebrow){
  max-width:540px;
  color:#d9dadd;
  font-size:1.25rem;
  line-height:1.65;
  margin-bottom:26px;
}
.hero-features{
  display:flex;
  gap:18px;
  margin-bottom:28px;
  flex-wrap:wrap;
}
.hero-features div{
  min-width:145px;
  padding:16px 18px;
  background:rgba(237,28,36,.08);
  border:1px solid rgba(237,28,36,.35);
  border-left:3px solid var(--red);
  backdrop-filter:blur(8px);
  transition:.3s ease;
}
.hero-features div:hover{
  background:rgba(237,28,36,.15);
  transform:translateX(6px);
}
.hero-features strong{
  display:block;
  font-size:.92rem;
  color:white;
  letter-spacing:.08em;
}
.hero-features span{
  display:block;
  color:var(--muted);
  font-size:.9rem;
  margin-top:3px;
}
.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.hero-image{
  min-height:450px;
  position:relative;
}
.hero-image img{
  position:absolute;
  inset:-40px -110px -40px -60px;
  width:calc(100% + 170px);
  height:calc(100% + 80px);
  object-fit:cover;
  object-position:center;
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);
  filter:brightness(.72) contrast(1.16) saturate(1.05);
}
.hero-image::after{
  content:"";
  position:absolute;
  inset:-40px -110px -40px -60px;
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);
  background:linear-gradient(120deg,rgba(229,9,20,.3),rgba(0,0,0,.1) 42%,rgba(0,0,0,.58));
  pointer-events:none;
}

.stats{
  position:relative;
  z-index:4;
  background:#090909;
  border-block:1px solid var(--line);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat{
  padding:34px 28px;
  border-right:1px solid var(--line);
  border-left:4px solid rgba(237,28,36,.36);
  transition:.3s ease;
  position:relative;
}
.stat:hover{
  background:rgba(237,28,36,.06);
  border-left-color:var(--red);
}
.stat:last-child{border-right:0}
.stat h3{
  font-family:"Bebas Neue",sans-serif;
  color:var(--red);
  font-size:3.4rem;
  line-height:1;
  text-shadow:2px 2px 0 #000;
}
.stat p{
  color:#c7c8cc;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.9rem;
}

.products,
.services,
.reviews,
.why-us,
.brands,
.contact{
  padding:110px 0;
  position:relative;
}
.products{
  background:
    linear-gradient(rgba(5,5,5,.94),rgba(5,5,5,.96)),
    url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-attachment:fixed;
}
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  margin-bottom:45px;
}
.section-title h2,
.why-text h2,
.reviews h2,
.brands h2,
.contact h2{
  font-family:"Bebas Neue",sans-serif;
  font-size:clamp(3.1rem,6vw,6rem);
  line-height:.9;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.section-title h2::before,
.why-text h2::before,
.reviews h2::before,
.brands h2::before,
.contact h2::before{
  content:"";
  display:block;
  width:78px;
  height:6px;
  background:linear-gradient(90deg,var(--red),rgba(237,28,36,.32));
  margin-bottom:22px;
  transform:skew(-18deg);
  box-shadow:0 0 20px var(--glow);
}
.section-title p{
  color:var(--muted);
  font-size:1.2rem;
  max-width:390px;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.product-card{
  min-height:390px;
  position:relative;
  overflow:hidden;
  background:#111;
  border:2px solid rgba(237,28,36,.18);
  isolation:isolate;
  transition:.3s ease;
  cursor:pointer;
}
.product-card:focus-visible{
  outline:3px solid var(--red);
  outline-offset:5px;
}
.product-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:.55s ease;
  z-index:-2;
}
.product-card:nth-child(1)::before{background-image:url("https://images.unsplash.com/photo-1611004061856-ccc3cbe944b2?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")}
.product-card:nth-child(2)::before{background-image:url("https://images.unsplash.com/photo-1642850470069-769d2dcc85f8?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")}
.product-card:nth-child(3)::before{background-image:url("https://images.unsplash.com/photo-1591260035149-2829f11fdefe?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")}
.product-card:nth-child(4)::before{background-image:url("https://images.unsplash.com/photo-1622926491422-f5a3b10f87d4?q=80&w=735&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")}
.product-card:nth-child(5)::before{background-image:url("https://images.unsplash.com/photo-1657873961503-89a65459de2b?q=80&w=1331&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")}
.product-card:nth-child(6)::before{background-image:url("https://images.unsplash.com/photo-1746014995485-e8a698f39804?q=80&w=1331&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")}
.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(237,28,36,.18),transparent),
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.92));
  z-index:-1;
}
.product-card h3,
.product-card p{
  position:absolute;
  left:26px;
  right:26px;
}
.product-card h3{
  bottom:78px;
  font-family:"Bebas Neue",sans-serif;
  font-size:2.6rem;
  text-transform:uppercase;
}
.product-card p{
  bottom:34px;
  color:#d5d6da;
  font-size:1.05rem;
}
.product-card:hover::before{transform:scale(1.12)}
.product-card:hover{
  border-color:rgba(237,28,36,.86);
  box-shadow:0 0 35px var(--glow),0 28px 70px rgba(0,0,0,.52);
  background:#0f1014;
}

.catalog-panel{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
  padding:96px 4vw 36px;
}
.catalog-panel.is-open{
  display:block;
}
.catalog-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(10px);
}
.catalog-dialog{
  position:relative;
  z-index:1;
  width:min(1180px,100%);
  max-height:calc(100svh - 132px);
  margin:auto;
  overflow:auto;
  background:linear-gradient(145deg,rgba(18,20,26,.98),rgba(5,5,5,.98));
  border:1px solid rgba(237,28,36,.34);
  border-top:4px solid var(--red);
  box-shadow:0 28px 90px rgba(0,0,0,.72),0 0 36px rgba(229,9,20,.16);
}
.catalog-header{
  position:sticky;
  top:0;
  z-index:2;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  padding:32px;
  background:linear-gradient(180deg,rgba(12,13,16,.98),rgba(12,13,16,.92));
  border-bottom:1px solid rgba(255,255,255,.1);
}
.catalog-header .eyebrow{
  margin-bottom:14px;
}
.catalog-header h2{
  font-family:"Bebas Neue",sans-serif;
  font-size:clamp(2.8rem,5vw,5.5rem);
  line-height:.9;
  text-transform:uppercase;
}
.catalog-header p:last-child{
  margin-top:12px;
  color:var(--muted);
  font-size:1.05rem;
}
.catalog-close{
  flex:0 0 auto;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.06);
  color:var(--white);
  cursor:pointer;
  font-family:"Bebas Neue",sans-serif;
  font-size:2rem;
  line-height:1;
  transition:.25s ease;
}
.catalog-close:hover{
  border-color:var(--red);
  background:rgba(229,9,20,.22);
}
.catalog-items{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  padding:32px;
}
.catalog-item{
  min-height:100%;
  display:flex;
  flex-direction:column;
  background:linear-gradient(145deg,rgba(24,26,32,.92),rgba(7,7,9,.96));
  border:1px solid rgba(237,28,36,.24);
  overflow:hidden;
}
.catalog-thumb{
  min-height:190px;
  display:grid;
  place-items:center;
  position:relative;
  background:
    linear-gradient(135deg,rgba(229,9,20,.16),rgba(255,255,255,.05)),
    repeating-linear-gradient(115deg,rgba(255,255,255,.08) 0 1px,transparent 1px 18px),
    #111318;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.catalog-thumb::before{
  content:"";
  width:86px;
  height:86px;
  border:2px solid rgba(255,255,255,.26);
  transform:skew(-12deg);
}
.catalog-thumb span{
  position:absolute;
  bottom:18px;
  left:20px;
  right:20px;
  color:#f3f4f6;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}
.catalog-info{
  display:flex;
  flex:1;
  flex-direction:column;
  gap:14px;
  padding:24px;
}
.catalog-info h3{
  font-family:"Bebas Neue",sans-serif;
  font-size:2rem;
  line-height:1;
  text-transform:uppercase;
}
.catalog-info p{
  color:var(--muted);
  line-height:1.45;
}
.catalog-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:auto;
}
.catalog-price{
  color:var(--white);
  font-weight:700;
  letter-spacing:.04em;
}
.catalog-size{
  display:grid;
  gap:6px;
}
.catalog-size label{
  color:#d8d9dd;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.76rem;
}
.catalog-size select{
  min-height:42px;
  padding:0 12px;
  color:var(--white);
  background:#08090b;
  border:1px solid rgba(255,255,255,.2);
  font-family:"Oswald",sans-serif;
}
.catalog-action{
  min-height:46px;
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:white;
  padding:12px 16px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  transition:.25s ease;
}
.catalog-action:hover{
  filter:brightness(1.1);
  transform:translateY(-2px);
}

.services{
  background:#0b0b0d;
  border-block:1px solid var(--line);
  background-image:url("https://images.unsplash.com/photo-1558981852-426c6c22a060?auto=format&fit=crop&w=1800&q=80");
  background-attachment:fixed;
  background-size:cover;
  background-position:center;
  background-blend-mode:multiply;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.service-card{
  padding:34px;
  background:linear-gradient(145deg,rgba(25,27,33,.86),rgba(8,8,10,.92));
  border:2px solid rgba(237,28,36,.26);
  border-top:3px solid rgba(237,28,36,.7);
  text-align:center;
  position:relative;
  overflow:hidden;
  transition:.3s ease;
  min-height:280px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.service-card:hover{
  border-color:rgba(237,28,36,.85);
  background:linear-gradient(145deg,rgba(27,29,36,.95),rgba(8,8,10,.98));
  box-shadow:0 0 30px rgba(237,28,36,.24),0 15px 40px rgba(0,0,0,.4);
  transform:translateY(-8px);
}
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 0,rgba(237,28,36,.1),transparent 60%);
  pointer-events:none;
}
.service-icon{
  width:72px;
  height:72px;
  margin-bottom:22px;
  display:grid;
  place-items:center;
  position:relative;
  border:1px solid rgba(237,28,36,.75);
  background:linear-gradient(145deg,rgba(237,28,36,.16),rgba(255,255,255,.04));
  box-shadow:inset 0 0 22px rgba(237,28,36,.18),0 0 28px rgba(237,28,36,.16);
  clip-path:polygon(14% 0,100% 0,86% 100%,0 100%);
  z-index:1;
}
.service-icon::before,
.service-icon::after{
  content:"";
  position:absolute;
}
.service-icon-repair::before{
  width:34px;
  height:6px;
  background:var(--white);
  transform:rotate(-38deg);
  box-shadow:0 0 12px rgba(255,255,255,.25);
}
.service-icon-repair::after{
  width:13px;
  height:13px;
  border:4px solid var(--red);
  border-right-color:transparent;
  border-bottom-color:transparent;
  transform:translate(12px,-12px) rotate(-38deg);
}
.service-icon-maintenance::before{
  width:34px;
  height:34px;
  border:5px solid var(--white);
  border-radius:50%;
  box-shadow:0 0 0 8px rgba(237,28,36,.22);
}
.service-icon-maintenance::after{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--red);
}
.service-icon-inspection::before{
  width:28px;
  height:28px;
  border:5px solid var(--white);
  border-radius:50%;
  transform:translate(-5px,-5px);
}
.service-icon-inspection::after{
  width:26px;
  height:6px;
  background:var(--red);
  transform:translate(15px,17px) rotate(45deg);
}
.service-icon-custom::before{
  width:34px;
  height:34px;
  border:4px solid var(--white);
  border-radius:50%;
  border-right-color:var(--red);
  border-bottom-color:var(--red);
}
.service-icon-custom::after{
  width:24px;
  height:6px;
  background:var(--red);
  transform:translate(11px,-15px) rotate(-35deg);
}
.service-card h3{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.8rem;
  margin-bottom:12px;
  color:var(--white);
  position:relative;
  z-index:1;
  text-transform:uppercase;
}
.service-card p{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
  position:relative;
  z-index:1;
}

.reviews{
  background:#050505;
  border-bottom:1px solid var(--line);
}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.review-card{
  min-height:235px;
  padding:34px;
  background:
    linear-gradient(145deg,rgba(25,27,33,.88),rgba(8,8,10,.94)),
    radial-gradient(circle at 100% 0,rgba(229,9,20,.16),transparent 46%);
  border:1px solid rgba(237,28,36,.26);
  border-top:3px solid rgba(237,28,36,.68);
  position:relative;
  overflow:hidden;
}
.review-card::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.06);
  clip-path:polygon(8% 0,100% 0,92% 100%,0 100%);
  pointer-events:none;
}
.review-card p{
  color:#f3f4f6;
  font-size:1.25rem;
  line-height:1.45;
  margin-bottom:26px;
  position:relative;
  z-index:1;
}
.review-card h3{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.8rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  position:relative;
  z-index:1;
}
.review-card span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
  position:relative;
  z-index:1;
}

.why-us{background:#070707}
.why-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.why-text p{
  margin-top:25px;
  color:var(--muted);
  font-size:1.2rem;
  line-height:1.7;
  max-width:500px;
}
.why-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  counter-reset:card;
}
.why-card{
  padding:34px;
  background:linear-gradient(145deg,rgba(25,27,33,.86),rgba(8,8,10,.92));
  border:1px solid rgba(237,28,36,.25);
  border-top:2px solid rgba(237,28,36,.55);
  min-height:210px;
  position:relative;
  overflow:hidden;
  transition:.3s ease;
}
.why-card:hover{
  border-top-color:var(--red);
  background:linear-gradient(145deg,rgba(27,29,36,.92),rgba(8,8,10,.96));
  box-shadow:0 0 25px rgba(237,28,36,.2);
}
.why-card::before{
  content:"0" counter(card);
  counter-increment:card;
  position:absolute;
  right:24px;
  top:12px;
  font-family:"Bebas Neue",sans-serif;
  font-size:5rem;
  color:rgba(237,28,36,.18);
}
.why-card h3{
  font-family:"Bebas Neue",sans-serif;
  font-size:2.2rem;
  margin-bottom:14px;
  text-transform:uppercase;
}
.why-card p{
  color:var(--muted);
  line-height:1.6;
}

.brands{
  background:#0b0c0f;
  text-align:center;
}
.brands h2::before{margin-inline:auto}
.brands-grid{
  margin-top:45px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  font-family:"Bebas Neue",sans-serif;
  font-size:2.1rem;
  letter-spacing:.08em;
  color:#d7d8dc;
}
.brand-logo{
  min-height:105px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#121318;
  border:2px solid rgba(237,28,36,.16);
  transition:.3s ease;
  position:relative;
  overflow:hidden;
  color:#f3f4f6;
  text-transform:uppercase;
  text-shadow:0 0 18px rgba(237,28,36,.25);
}
.brand-logo::before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.08);
  clip-path:polygon(10% 0,100% 0,90% 100%,0 100%);
}
.brand-logo::after{
  content:"";
  position:absolute;
  bottom:0;
  left:22%;
  width:56%;
  height:3px;
  background:var(--red);
  box-shadow:0 0 14px rgba(237,28,36,.78);
}
.brand-logo:hover{
  border-color:rgba(237,28,36,.65);
  background:#17191f;
  box-shadow:0 0 20px rgba(237,28,36,.25);
}

.contact{
  background:
    linear-gradient(90deg,rgba(5,5,5,.98),rgba(5,5,5,.75)),
    url("https://images.unsplash.com/photo-1558981001-792f6a1a8273?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
}
.contact-grid{
  display:grid;
  grid-template-columns:1.15fr .9fr .7fr;
  gap:35px;
  align-items:stretch;
}
.contact-left,
.contact-center,
.contact-right,
.contact-map{
  padding:38px;
  background:rgba(12,13,16,.88);
  border:1px solid rgba(237,28,36,.28);
  border-top:3px solid rgba(237,28,36,.65);
  position:relative;
  overflow:hidden;
}
.contact-left::before,
.contact-center::before,
.contact-right::before,
.contact-map::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 100% 0,rgba(237,28,36,.09),transparent 50%);
  pointer-events:none;
}
.contact-map{
  grid-column:1 / -1;
  min-height:360px;
  padding:0;
}
.contact-map iframe{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  min-height:360px;
  display:block;
  border:0;
  filter:grayscale(1) invert(.9) contrast(1.05);
}
.contact-left p,
.contact-center p{
  color:var(--muted);
  margin:12px 0;
  font-size:1.1rem;
  line-height:1.45;
  position:relative;
  z-index:1;
}
.contact-center a{color:#f2f2f2}
.contact-center a:hover{color:var(--red)}
.contact h3{
  font-family:"Bebas Neue",sans-serif;
  font-size:2.2rem;
  margin-bottom:18px;
  position:relative;
  z-index:1;
  text-transform:uppercase;
}
.socials{
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
  z-index:1;
}
.socials a{
  color:#d8d9dd;
  border-bottom:1px solid rgba(237,28,36,.32);
  padding-bottom:10px;
  transition:.3s ease;
}
.socials a:hover{
  color:var(--red);
  border-bottom-color:var(--red);
  transform:translateX(4px);
}

.footer{
  background:#030303;
  border-top:1px solid var(--line);
  padding:28px 0;
}
.footer-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  color:#96989d;
  font-size:.95rem;
}
.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.footer-links a{
  color:#f2f2f2;
  border-bottom:1px solid rgba(237,28,36,.45);
  padding-bottom:3px;
  transition:.25s ease;
}
.footer-links a:hover{
  color:var(--red);
  border-bottom-color:var(--red);
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .55s ease,transform .55s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media(max-width:1080px){
  .nav-menu{gap:18px}
  .btn-whatsapp{padding-inline:16px}
}

@media(max-width:1200px){
  .navbar-container{position:relative}
  .logo{padding-right:56px}
  .logo-image{width:142px;height:58px}
  .nav-menu{
    position:fixed;
    inset:74px 0 auto 0;
    display:grid;
    gap:0;
    background:rgba(5,5,5,.97);
    border-bottom:1px solid var(--line);
    transform:translateY(-120%);
    transition:.3s ease;
    padding:12px 4%;
  }
  .nav-menu.active{transform:translateY(0)}
  .nav-menu a{padding:14px 0}
  .btn-whatsapp{display:none}
  .hamburger{
    display:flex !important;
    position:fixed;
    right:18px;
    top:18px;
    z-index:1000;
    width:44px;
    height:40px;
    flex-direction:column;
    gap:5px;
    align-items:center;
    justify-content:center;
    background:rgba(237,28,36,.92);
    box-shadow:0 8px 20px rgba(0,0,0,.35);
  }
  .hamburger span{
    display:block !important;
    width:24px;
    height:3px;
    background:#fff;
    border-radius:999px;
  }
  .hero-grid,.why-grid,.contact-grid{grid-template-columns:1fr}
  .hero-image{
    min-height:360px;
    margin-bottom:40px;
  }
  .hero-image img,
  .hero-image::after{
    inset:0;
    width:100%;
    height:100%;
    clip-path:polygon(8% 0,100% 0,92% 100%,0 100%);
  }
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .catalog-items{grid-template-columns:repeat(2,1fr)}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .brands-grid{grid-template-columns:repeat(3,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:640px){
  .navbar{height:74px}
  .navbar-container{gap:14px;position:relative}
  .logo-image{width:118px;height:48px}
  .logo-mark{width:48px;height:42px;font-size:1.45rem}
  .logo-copy strong{font-size:1.42rem}
  .logo-copy small{font-size:.52rem}
  .hero{
    padding-top:74px;
    min-height:auto;
  }
  .hero-grid{overflow:hidden}
  .hero-content{
    width:100%;
    max-width:100%;
    padding:34px 0 28px;
    overflow:hidden;
  }
  .hero-image{display:none}
  .hero-content h1{font-size:3.45rem}
  .hero-content p:not(.eyebrow){
    width:100%;
    max-width:340px;
    font-size:1rem;
    line-height:1.55;
    overflow-wrap:break-word;
    word-break:normal;
  }
  .hero-features div{padding:12px 16px}
  .hero-features{gap:12px;margin-bottom:20px}
  .btn-primary,.btn-secondary{min-height:46px}
  .hero-features{display:grid;grid-template-columns:1fr}
  .hero-buttons{flex-direction:column}
  .btn-primary,.btn-secondary{width:100%}
  .catalog-panel{padding:82px 12px 18px}
  .catalog-dialog{max-height:calc(100svh - 100px)}
  .catalog-header{padding:22px}
  .catalog-items{grid-template-columns:1fr;padding:22px}
  .catalog-thumb{min-height:170px}
  .catalog-meta{align-items:flex-start;flex-direction:column}
  .stats-grid,.products-grid,.services-grid,.reviews-grid,.why-cards,.brands-grid{grid-template-columns:1fr}
  .section-title{display:block}
  .products,.services,.reviews,.why-us,.brands,.contact{padding:75px 0}
  .product-card{min-height:320px}
  .contact-left,.contact-center,.contact-right{padding:28px}
  .contact-map,
  .contact-map iframe{min-height:310px}
  .footer-container{flex-direction:column;gap:8px;text-align:center}
}
