:root{
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1b1b1b;
  --red: #e02020;
  --red-deep: #b3151a;
  --white: #f7f5f2;
  --grey: #8a8a8a;
  --line: rgba(255,255,255,.08);
  --ease: cubic-bezier(.16,1,.3,1);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--black);
  color:var(--white);
  font-family:'Archivo', sans-serif;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

.display{font-family:'Anton', sans-serif; text-transform:uppercase; letter-spacing:.01em;}
.mono{font-family:'JetBrains Mono', monospace; letter-spacing:.08em; text-transform:uppercase;}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal.delay-1{transition-delay:.08s;}
.reveal.delay-2{transition-delay:.16s;}
.reveal.delay-3{transition-delay:.24s;}
.reveal.delay-4{transition-delay:.32s;}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important;}
  .reveal{opacity:1; transform:none;}
}

.ticker-wrap{
  background:var(--red);
  color:var(--black);
  overflow:hidden;
  white-space:nowrap;
  padding:7px 0;
  border-bottom:1px solid var(--black);
}
.ticker{
  display:inline-flex;
  gap:3rem;
  animation:scrollTicker 28s linear infinite;
}
.ticker span{
  font-family:'JetBrains Mono', monospace;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.25em;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
}
.ticker span::after{content:"";width:6px;height:6px;background:var(--black);border-radius:50%;display:inline-block;}
@keyframes scrollTicker{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

header{
  position:sticky; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem clamp(1.2rem, 4vw, 4rem);
  background:rgba(10,10,10,.7);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:padding .3s var(--ease);
}
.logo{
  display:flex; align-items:center; gap:.6rem;
}
.logo-img{
  height:clamp(44px, 5vw, 56px);
  width:auto;
  display:block;
}
.logo-mark{
  width:34px; height:34px;
  background:var(--red);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Anton',sans-serif;
  font-size:1.1rem;
  flex-shrink:0;
  box-shadow:0 0 0 0 rgba(224,32,32,.6);
  animation:pulseLogo 3.5s ease-in-out infinite;
}
@keyframes pulseLogo{
  0%,100%{box-shadow:0 0 0 0 rgba(224,32,32,.45);}
  50%{box-shadow:0 0 0 8px rgba(224,32,32,0);}
}
nav{display:flex; align-items:center; gap:2.4rem;}
nav ul{display:flex; gap:2.2rem; list-style:none;}
nav ul li a{
  color:var(--grey);
  text-decoration:none;
  font-size:.85rem;
  font-weight:500;
  position:relative;
  transition:color .25s;
}
nav ul li a::after{
  content:"";
  position:absolute; left:0; bottom:-6px;
  width:0; height:2px; background:var(--red);
  transition:width .3s var(--ease);
}
nav ul li a:hover{color:var(--white);}
nav ul li a:hover::after{width:100%;}
nav ul li a.is-active{color:var(--white);}
nav ul li a.is-active::after{width:100%;}
a.logo{text-decoration:none; color:inherit;}

.coming-soon{
  position:relative;
  min-height:calc(100vh - 120px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4rem clamp(1.2rem, 4vw, 4rem);
  overflow:hidden;
  isolation:isolate;
}
.coming-soon-bg{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(circle at 50% 20%, rgba(224,32,32,.16), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
}
.coming-soon-inner{
  max-width:640px;
  text-align:center;
}
.coming-soon-text{margin:1.2rem auto 2rem;}
.coming-soon-actions{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}
.coming-soon-footer{
  padding:1.6rem clamp(1.2rem, 4vw, 4rem) 2rem;
  background:var(--black-2);
  border-top:1px solid var(--line);
}
.coming-soon-footer .footer-bottom{padding-top:0; border-top:none;}

.btn{
  font-family:'Archivo',sans-serif;
  font-weight:700;
  font-size:.82rem;
  letter-spacing:.04em;
  text-decoration:none;
  border-radius:999px;
  padding:.85rem 1.8rem;
  display:inline-flex; align-items:center; gap:.5rem;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  cursor:pointer; border:none;
}
.btn-primary{
  background:var(--red);
  color:var(--white);
  box-shadow:0 6px 24px -8px rgba(224,32,32,.7);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px -8px rgba(224,32,32,.9);
}
.btn-ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  color:var(--white);
}
.btn-ghost:hover{
  border-color:var(--white);
  background:rgba(255,255,255,.06);
  transform:translateY(-2px);
}
.btn svg{transition:transform .3s var(--ease);}
.btn-primary:hover svg{transform:translateX(4px);}

@media (max-width:880px){
  nav ul, .btn-ghost-nav{display:none;}
}

.hero{
  position:relative;
  min-height:92vh;
  display:flex; align-items:center;
  padding:0 clamp(1.2rem, 4vw, 4rem);
  overflow:hidden;
  isolation:isolate;
}
.hero-bg{
  position:absolute; inset:0; z-index:-2;
  overflow:hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(224,32,32,.25), transparent 45%),
    linear-gradient(180deg, #0a0a0a 0%, #141414 60%, #0a0a0a 100%);
}
.hero-bg-grid{
  position:absolute; inset:-40px;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.028) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(25deg, rgba(224,32,32,.04) 0 1px, transparent 1px 96px);
  opacity:.75;
  animation:heroGridDrift 22s linear infinite;
}
.hero-flow{
  position:absolute;
  inset:-8% -5%;
  width:110%;
  height:116%;
  pointer-events:none;
  opacity:.9;
}
.hero-flow__band{
  fill:none;
  stroke-linecap:round;
  animation:heroBandShift 18s ease-in-out infinite alternate;
}
.hero-flow__band--1{
  stroke:rgba(224,32,32,.07);
  stroke-width:110;
}
.hero-flow__band--2{
  stroke:rgba(224,32,32,.05);
  stroke-width:90;
  animation-delay:-4s;
}
.hero-flow__path{
  fill:none;
  stroke-linecap:round;
  stroke-dasharray:18 28;
  animation:heroFlowDash linear infinite;
}
.hero-flow__path--1{
  stroke:rgba(224,32,32,.28);
  stroke-width:2;
  animation-duration:9s;
}
.hero-flow__path--2{
  stroke:rgba(224,32,32,.18);
  stroke-width:3;
  animation-duration:12s;
  animation-delay:-2s;
}
.hero-flow__path--3{
  stroke:rgba(255,255,255,.08);
  stroke-width:1.5;
  animation-duration:14s;
  animation-delay:-5s;
}
.hero-flow__path--4{
  stroke:rgba(224,32,32,.14);
  stroke-width:2.5;
  animation-duration:10s;
  animation-delay:-1s;
}
.hero-flow__path--1,
.hero-flow__path--2{
  filter:drop-shadow(0 0 18px rgba(224,32,32,.12));
}
@keyframes heroGridDrift{
  from{transform:translate3d(0,0,0);}
  to{transform:translate3d(72px, 48px, 0);}
}
@keyframes heroFlowDash{
  from{stroke-dashoffset:0;}
  to{stroke-dashoffset:-220;}
}
@keyframes heroBandShift{
  from{transform:translate3d(0,0,0); opacity:.55;}
  to{transform:translate3d(28px,-18px,0); opacity:.95;}
}
.hero-bg::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 20% 80%, rgba(224,32,32,.08), transparent 42%);
  pointer-events:none;
}
.speed-lines{
  position:absolute; inset:0; z-index:-1; pointer-events:none;
  overflow:hidden;
}
.speed-lines i{
  position:absolute;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(224,32,32,.55), transparent);
  width:40%;
  animation:zoom 5s linear infinite;
  opacity:0;
}
.speed-lines i:nth-child(1){top:14%; left:-40%; animation-delay:.2s;}
.speed-lines i:nth-child(2){top:32%; left:-60%; animation-delay:1.6s; width:55%;}
.speed-lines i:nth-child(3){top:48%; left:-50%; animation-delay:3s;}
.speed-lines i:nth-child(4){top:62%; left:-70%; animation-delay:.9s; width:30%;}
.speed-lines i:nth-child(5){top:76%; left:-45%; animation-delay:2.4s; width:48%;}
.speed-lines i:nth-child(6){top:88%; left:-55%; animation-delay:4.1s; width:36%;}
@keyframes zoom{
  0%{transform:translateX(0) scaleX(.8); opacity:0;}
  8%{opacity:1;}
  60%{opacity:.35;}
  100%{transform:translateX(220vw) scaleX(1); opacity:0;}
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:3rem;
  align-items:center;
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding:5rem 0;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:.6rem;
  color:var(--red);
  font-size:.74rem;
  font-weight:700;
  margin-bottom:1.4rem;
}
.hero-eyebrow::before{
  content:""; width:28px; height:1px; background:var(--red);
}
.hero h1{
  font-size:clamp(3rem, 7.5vw, 5.6rem);
  line-height:.98;
  margin-bottom:.4rem;
}
.hero h1 .accent{
  color:var(--red);
  -webkit-text-stroke: 0;
  display:block;
  position:relative;
}
.hero h1 .accent::after{
  content:"";
  position:absolute; left:0; bottom:.08em;
  width:100%; height:.16em;
  background:var(--red);
  opacity:.18;
  transform:scaleX(0);
  transform-origin:left;
  animation:underlineGrow 1.1s var(--ease) .6s forwards;
}
@keyframes underlineGrow{to{transform:scaleX(1);}}

.hero-sub{
  font-size:1.05rem;
  color:#cfcfcf;
  max-width:46ch;
  margin:1.6rem 0 2.2rem;
  line-height:1.65;
}
.hero-sub b{color:var(--white); font-weight:600;}
.hero-ctas{display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.6rem;}

.hero-meta{
  display:flex; gap:2.2rem;
  padding-top:1.8rem;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.hero-meta div{display:flex; flex-direction:column; gap:.2rem;}
.hero-meta b{font-family:'Anton',sans-serif; font-size:1.6rem;}
.hero-meta span{font-size:.72rem; color:var(--grey); letter-spacing:.05em;}

.hero-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1rem 0;
}
.hero-logo img{
  width:min(100%, 420px);
  height:auto;
  display:block;
  transition:transform 1.4s var(--ease);
}
.hero-logo:hover img{transform:scale(1.03);}

.hero-visual{
  position:relative;
  aspect-ratio:4/5;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  background:linear-gradient(160deg, #1a1a1a, #0c0c0c);
}
.hero-visual img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(.15) contrast(1.08);
  transform:scale(1.04);
  transition:transform 1.4s var(--ease);
}
.hero-visual:hover img{transform:scale(1.0);}
.hero-visual::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(10,10,10,.85) 100%);
}
.visual-tag{
  position:absolute; bottom:1.4rem; left:1.4rem; right:1.4rem;
  z-index:2;
  display:flex; justify-content:space-between; align-items:flex-end;
  color:var(--white);
}
.visual-tag .badge{
  background:var(--red);
  color:var(--white);
  font-size:.7rem;
  font-weight:700;
  padding:.4rem .8rem;
  border-radius:999px;
  letter-spacing:.06em;
}
.visual-tag .loc{font-size:.78rem; color:#d9d9d9;}

.float-card{
  position:absolute; top:1.4rem; right:1.4rem; z-index:2;
  background:rgba(10,10,10,.55);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  border-radius:14px;
  padding:.7rem 1rem;
  font-family:'JetBrains Mono',monospace;
  font-size:.7rem;
  display:flex; align-items:center; gap:.5rem;
  animation:floatY 4.5s ease-in-out infinite;
}
.float-card .dot{width:7px; height:7px; border-radius:50%; background:#4ade80; animation:blink 1.6s infinite;}
@keyframes blink{0%,100%{opacity:1;}50%{opacity:.25;}}
@keyframes floatY{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

section{padding:7rem clamp(1.2rem, 4vw, 4rem);}
.container{max-width:1320px; margin:0 auto;}
.eyebrow{
  color:var(--red);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.18em;
  margin-bottom:.9rem;
  display:flex; align-items:center; gap:.6rem;
}
.eyebrow::before{content:""; width:22px; height:1px; background:var(--red);}
h2.display{
  font-size:clamp(2.2rem, 5vw, 3.6rem);
  line-height:1.05;
}
.lead{color:#bdbdbd; font-size:1rem; line-height:1.7; max-width:60ch;}

.about{
  background:linear-gradient(180deg, var(--black-2), var(--black));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.about ul{margin-top:1.8rem; display:flex; flex-direction:column; gap:.9rem;}
.about ul li{
  display:flex; gap:.8rem; align-items:flex-start;
  font-size:.94rem; color:#d6d6d6;
}
.about ul li svg{flex-shrink:0; margin-top:.2rem; color:var(--red);}

.video-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  aspect-ratio:16/10;
  background:radial-gradient(circle at 30% 30%, #1c1c1c, #0a0a0a);
}
.video-card .grid-overlay{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:40px 40px;
}
.play-btn{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  z-index:3;
}
.play-btn .circle{
  width:74px; height:74px;
  border-radius:50%;
  background:var(--red);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 0 rgba(224,32,32,.5);
  animation:pulseRing 2.4s ease-out infinite;
  cursor:pointer;
  transition:transform .3s var(--ease);
}
.play-btn:hover .circle{transform:scale(1.08);}
@keyframes pulseRing{
  0%{box-shadow:0 0 0 0 rgba(224,32,32,.45);}
  70%{box-shadow:0 0 0 22px rgba(224,32,32,0);}
  100%{box-shadow:0 0 0 0 rgba(224,32,32,0);}
}
.video-meta{
  position:absolute; left:1.2rem; bottom:1.2rem; z-index:3;
  font-size:.8rem; color:#dcdcdc;
}
.video-meta b{display:block; font-size:.95rem; color:var(--white); margin-bottom:.2rem;}

.stats{
  background:var(--black);
  border-bottom:1px solid var(--line);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
  text-align:center;
}
.stat b{
  font-family:'Anton',sans-serif;
  font-size:clamp(2.4rem, 5vw, 3.4rem);
  display:block;
  line-height:1.05;
}
.stat b.is-gradient{
  background:linear-gradient(180deg, var(--white), #9c9c9c);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.stat span{
  font-size:.78rem; color:var(--grey); letter-spacing:.08em; margin-top:.4rem; display:block;
}
@media(max-width:760px){.stats-grid{grid-template-columns:repeat(2,1fr); gap:2.6rem;}}

.brands{
  background:var(--black-2);
  border-bottom:1px solid var(--line);
  padding:4.5rem clamp(1.2rem,4vw,4rem);
}
.brand-track{
  overflow:hidden;
  position:relative;
  margin-top:2.5rem;
}
.brand-row{
  display:flex; gap:1.2rem;
  width:max-content;
  animation:slideBrands 32s linear infinite;
}
.brand-track:hover .brand-row{animation-play-state:paused;}
@keyframes slideBrands{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.brand-card{
  flex:0 0 280px;
  background:var(--black-3);
  border:1px solid var(--line);
  border-radius:16px;
  padding:1.6rem;
  text-align:center;
  transition:border-color .3s, transform .3s var(--ease);
}
.brand-card:hover{border-color:rgba(224,32,32,.4); transform:translateY(-4px);}
.brand-card .brand-logo{
  height:56px;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-card .brand-logo img{
  max-height:100%;
  max-width:180px;
  width:auto;
  object-fit:contain;
  object-position:center;
}
.brand-card p{font-size:.84rem; color:var(--grey); line-height:1.55;}

.why{
  background:linear-gradient(180deg, var(--black), #141414);
  border-bottom:1px solid var(--line);
}
.why-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:4rem;
  align-items:start;
}
.why-list{display:flex; flex-direction:column;}
.why-item{
  display:flex; gap:1.6rem;
  padding:1.6rem 0;
  border-bottom:1px solid var(--line);
  transition:padding-left .35s var(--ease), background .35s;
  cursor:default;
}
.why-item:first-child{border-top:1px solid var(--line);}
.why-item:hover{padding-left:.8rem; background:rgba(224,32,32,.04);}
.why-num{
  font-family:'JetBrains Mono',monospace;
  font-size:.8rem;
  color:var(--red);
  flex-shrink:0;
  padding-top:.2rem;
}
.why-text b{display:block; font-size:1.05rem; margin-bottom:.3rem;}
.why-text span{font-size:.86rem; color:var(--grey); line-height:1.6;}

.branches{background:var(--black-2); border-bottom:1px solid var(--line);}
.branch-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.2rem;
  margin-top:3rem;
}
.branch-card{
  background:var(--black-3);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.6rem;
  position:relative;
  overflow:hidden;
  transition:transform .4s var(--ease), border-color .4s;
}
.branch-card:hover{transform:translateY(-6px); border-color:rgba(224,32,32,.45);}
.branch-card::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--red), transparent);
  transform:scaleX(0); transform-origin:left;
  transition:transform .5s var(--ease);
}
.branch-card:hover::before{transform:scaleX(1);}
.branch-top{display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:1.2rem;}
.branch-top h3{font-family:'Anton',sans-serif; font-size:1.15rem; letter-spacing:.04em;}
.branch-code{
  font-family:'JetBrains Mono',monospace;
  font-size:.65rem;
  background:rgba(224,32,32,.14);
  color:var(--red);
  padding:.25rem .5rem;
  border-radius:6px;
}
.branch-card address{
  font-style:normal; font-size:.8rem; color:#bdbdbd; line-height:1.6; margin-bottom:1rem; min-height:3.4em;
}
.branch-info{font-size:.82rem; color:var(--white); margin-bottom:.2rem; font-weight:600;}
.branch-hours{font-size:.76rem; color:var(--grey); margin-bottom:1.2rem;}
.branch-actions{display:flex; gap:.6rem;}
.branch-actions a{
  flex:1; text-align:center;
  font-size:.74rem; font-weight:700; letter-spacing:.04em;
  padding:.65rem; border-radius:10px; text-decoration:none;
  transition:transform .25s var(--ease), background .25s, color .25s;
}
.branch-actions .wa{background:var(--red); color:var(--white);}
.branch-actions .wa:hover{background:var(--red-deep); transform:translateY(-2px);}
.branch-actions .map{border:1px solid var(--line); color:var(--white);}
.branch-actions .map:hover{border-color:var(--white); transform:translateY(-2px);}

@media(max-width:980px){.branch-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.branch-grid{grid-template-columns:1fr;}}

.testi{background:var(--black); border-bottom:1px solid var(--line);}
.testi-track{
  overflow:hidden;
  position:relative;
  margin-top:2.5rem;
}
.testi-row{
  display:flex;
  gap:1.4rem;
  width:max-content;
  animation:slideTesti 48s linear infinite;
}
.testi-track:hover .testi-row{animation-play-state:paused;}
@keyframes slideTesti{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.testi-card{
  flex:0 0 360px;
  background:var(--black-3);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.8rem;
  transition:transform .4s var(--ease), border-color .4s;
}
.testi-card:hover{transform:translateY(-6px); border-color:rgba(224,32,32,.35);}
.stars{color:var(--red); font-size:.9rem; margin-bottom:1rem; letter-spacing:.15em;}
.testi-card p{font-size:.92rem; color:#dcdcdc; line-height:1.7; margin-bottom:1.4rem;}
.testi-who{display:flex; align-items:center; gap:.8rem;}
.testi-avatar{
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg, var(--red), #5a0d0d);
  display:flex; align-items:center; justify-content:center;
  font-family:'Anton',sans-serif; font-size:1rem; flex-shrink:0;
}
.testi-who b{display:block; font-size:.9rem;}
.testi-who span{font-size:.74rem; color:var(--grey);}

.faq{background:var(--black-2); border-bottom:1px solid var(--line);}
.faq-grid{margin-top:3rem; display:flex; flex-direction:column; gap:.8rem; max-width:900px;}
.faq-item{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:var(--black-3);
  transition:border-color .3s;
}
.faq-item.active{border-color:rgba(224,32,32,.4);}
.faq-q{
  display:flex; justify-content:space-between; align-items:center;
  padding:1.2rem 1.5rem;
  cursor:pointer;
  font-weight:600; font-size:.96rem;
  user-select:none;
}
.faq-q .icon{
  width:28px; height:28px; border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-left:1rem;
  transition:transform .4s var(--ease), background .3s, border-color .3s;
  position:relative;
}
.faq-item.active .icon{transform:rotate(45deg); background:var(--red); border-color:var(--red);}
.icon svg{width:13px; height:13px;}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s var(--ease);
}
.faq-a p{
  padding:0 1.5rem 1.3rem;
  font-size:.88rem; color:var(--grey); line-height:1.7;
}

.cta{
  background:
    radial-gradient(circle at 50% 0%, rgba(224,32,32,.18), transparent 55%),
    var(--black);
  text-align:center;
  padding-top:6rem;
  border-bottom:1px solid var(--line);
}
.cta h2{font-size:clamp(2.2rem, 6vw, 4rem); line-height:1.05; margin-bottom:1.2rem;}
.cta h2 .accent{color:var(--red);}
.cta p{color:#bdbdbd; max-width:50ch; margin:0 auto 2.2rem; font-size:1rem; line-height:1.7;}
.cta .btn-primary{
  font-size:.95rem; padding:1.1rem 2.6rem;
  background:#25D366; color:#0a0a0a;
  box-shadow:0 8px 30px -8px rgba(37,211,102,.6);
}
.cta .btn-primary:hover{box-shadow:0 12px 36px -8px rgba(37,211,102,.8);}

footer{
  background:var(--black-2);
  padding:4.5rem clamp(1.2rem,4vw,4rem) 2rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid var(--line);
}
.footer-grid h4{
  font-size:.78rem; letter-spacing:.14em; color:var(--red);
  margin-bottom:1.2rem; font-weight:700;
}
.footer-grid p, .footer-grid li{font-size:.86rem; color:#bdbdbd; line-height:1.8;}
.footer-grid ul{list-style:none;}
.footer-grid a{color:#bdbdbd; text-decoration:none; transition:color .25s;}
.footer-grid a:hover{color:var(--white);}
.footer-logo{display:flex; align-items:center; gap:.6rem; margin-bottom:1rem;}
.footer-logo-img{
  height:clamp(48px, 5.5vw, 60px);
  width:auto;
  display:block;
}
.footer-logo .display{font-size:1.1rem;}
.social{display:flex; gap:.7rem; margin-top:1.2rem;}
.social a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .3s, transform .3s var(--ease), background .3s;
}
.social a:hover{border-color:var(--red); background:rgba(224,32,32,.1); transform:translateY(-3px);}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:1.6rem; font-size:.78rem; color:var(--grey); flex-wrap:wrap; gap:1rem;
}

/* ---------- Light sections ---------- */
.section-light{
  --line: rgba(0,0,0,.08);
  background:#ffffff;
  color:#0a0a0a;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.section-light h2.display{color:#0a0a0a;}
.section-light .lead{color:#4a4a4a;}
.section-light.about ul li{color:#333;}
.section-light .brand-card{
  background:#f7f7f7;
  border-color:rgba(0,0,0,.08);
}
.section-light .brand-card p{color:#666;}
.section-light .brand-card:hover{
  border-color:rgba(224,32,32,.35);
  box-shadow:0 12px 32px -12px rgba(224,32,32,.18);
}
.section-light .branch-card{
  background:#ffffff;
  border-color:rgba(0,0,0,.1);
  box-shadow:0 10px 36px -16px rgba(0,0,0,.12);
}
.section-light .branch-card address{color:#555;}
.section-light .branch-info{color:#111;}
.section-light .branch-hours{color:#777;}
.section-light .branch-actions .map{
  border-color:rgba(0,0,0,.14);
  color:#111;
}
.section-light .branch-actions .map:hover{
  border-color:#0a0a0a;
  background:rgba(0,0,0,.04);
}
.section-light .faq-item{
  background:#fafafa;
  border-color:rgba(0,0,0,.08);
}
.section-light .faq-q{color:#111;}
.section-light .faq-q .icon{border-color:rgba(0,0,0,.12);}
.section-light .faq-a p{color:#666;}
.section-light .faq-item.active{border-color:rgba(224,32,32,.35);}

@media(max-width:900px){
  .hero-grid, .about-grid, .why-grid{grid-template-columns:1fr;}
  .hero-logo{order:-1; max-width:320px; margin:0 auto;}
  .hero-visual{order:-1; aspect-ratio:16/10;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr; gap:2.4rem;}
}
@media(max-width:560px){
  section{padding:4.5rem 1.2rem;}
  .footer-grid{grid-template-columns:1fr;}
  .hero{min-height:auto; padding-bottom:3rem;}
}

.top-btn{
  position:fixed; bottom:1.6rem; right:1.6rem; z-index:200;
  width:46px; height:46px; border-radius:50%;
  background:var(--red); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  border:none; cursor:pointer;
  opacity:0; pointer-events:none;
  transform:translateY(10px);
  transition:opacity .3s, transform .3s;
  box-shadow:0 8px 24px -6px rgba(224,32,32,.6);
}
.top-btn.show{opacity:1; pointer-events:auto; transform:translateY(0);}

.video-card-link{display:block; width:100%; height:100%; text-decoration:none; color:inherit;}
