/* ============================================================
   WALDWICK BP AUTO CENTER — Cinematic v2
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #060608;
  color: #e8e8e8;
  overflow-x: hidden;
  cursor: none;
}
:root {
  --red:    #DC2626;
  --red-dk: #991b1b;
  --red-lt: #ef4444;
  --white:  #ffffff;
  --gray:   #a1a1aa;
  --dark:   #060608;
  --card:   #0d0d10;
  --border: rgba(255,255,255,0.07);
  --nav-h:  72px;
  --ease:   cubic-bezier(.16,1,.3,1);
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #080809; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #020204;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid transparent;
  animation: lspin 2s linear infinite;
}
.loader-ring:nth-child(1) {
  width:120px; height:120px;
  border-top-color: var(--red); border-right-color: rgba(220,38,38,.25);
}
.loader-ring--2 {
  width:86px; height:86px;
  border-bottom-color: var(--red); border-left-color: rgba(220,38,38,.15);
  animation-direction: reverse; animation-duration: 1.3s;
}
@keyframes lspin { to { transform: rotate(360deg); } }

.loader-content { display:flex; flex-direction:column; align-items:center; gap:18px; z-index:1; }
.loader-wrench { width:44px; height:44px; animation: wrock .75s ease-in-out infinite alternate; }
@keyframes wrock { from { transform: rotate(-18deg); } to { transform: rotate(18deg); } }
.loader-content span {
  font-family:'Barlow Condensed',sans-serif; font-size:.62rem;
  letter-spacing:.28em; color:var(--gray); text-transform:uppercase;
}
.loader-bar { width:150px; height:2px; background:rgba(255,255,255,.07); border-radius:2px; overflow:hidden; }
.loader-fill {
  height:100%; width:0; background:linear-gradient(90deg,var(--red-dk),var(--red));
  border-radius:2px; animation:lfill 1.6s var(--ease) forwards;
}
@keyframes lfill { to { width:100%; } }

/* ── Cursor ── */
#cursor-dot {
  position:fixed; pointer-events:none; z-index:10000;
  width:8px; height:8px; border-radius:50%; background:var(--red);
  transform:translate(-50%,-50%);
  transition: transform .12s, width .2s, height .2s;
  mix-blend-mode: normal;
}
#cursor-ring {
  position:fixed; pointer-events:none; z-index:9999;
  width:38px; height:38px; border-radius:50%;
  border:1.5px solid rgba(220,38,38,.45);
  transform:translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
body.cursor-hover #cursor-dot  { transform:translate(-50%,-50%) scale(2.8); background:var(--red-lt); }
body.cursor-hover #cursor-ring { width:60px; height:60px; border-color:var(--red); }
@media (pointer:coarse) { #cursor-dot,#cursor-ring { display:none; } body { cursor:auto; } }

/* ── Scroll progress ── */
#scroll-progress {
  position:fixed; top:0; left:0; right:0; height:2px; z-index:8000;
  background:rgba(255,255,255,.04);
}
#scroll-fill {
  height:100%; width:0;
  background:linear-gradient(90deg,var(--red-dk),var(--red),var(--red-lt));
  transition:width .06s linear;
  box-shadow: 0 0 8px rgba(220,38,38,.4);
}

/* ── Navbar ── */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:7000;
  height:var(--nav-h);
  transition:background .4s, backdrop-filter .4s, box-shadow .4s;
}
#navbar.scrolled {
  background:rgba(5,5,7,.95);
  backdrop-filter:blur(22px) saturate(1.6);
  box-shadow:0 1px 0 rgba(255,255,255,.05), 0 4px 30px rgba(0,0,0,.4);
}
.nav-container {
  max-width:1280px; margin:0 auto; padding:0 24px;
  height:100%; display:flex; align-items:center; gap:28px;
}
.nav-logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-logo-icon { width:34px; height:34px; }
.nav-logo-main {
  font-family:'Barlow Condensed',sans-serif; font-size:1.1rem;
  font-weight:800; letter-spacing:.06em; line-height:1;
}
.nav-logo-sub { font-size:.58rem; letter-spacing:.18em; color:var(--gray); margin-top:2px; }

.nav-menu { display:flex; gap:2px; margin-left:auto; }
.nav-link {
  padding:8px 14px; border-radius:8px; font-size:.88rem; font-weight:500;
  color:var(--gray); transition:color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color:var(--white); background:rgba(255,255,255,.06); }

.nav-cta {
  display:flex; align-items:center; gap:8px;
  padding:10px 20px; border-radius:10px;
  background:var(--red); color:var(--white);
  font-weight:600; font-size:.88rem;
  transition:background .2s, transform .2s var(--ease), box-shadow .2s;
  flex-shrink:0;
}
.nav-cta svg { width:16px; height:16px; }
.nav-cta:hover { background:var(--red-lt); transform:translateY(-1px); box-shadow:0 6px 20px rgba(220,38,38,.4); }

.nav-hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:6px; border-radius:6px; transition:background .2s; margin-left:auto;
}
.nav-hamburger span {
  display:block; width:22px; height:2px; background:var(--white);
  border-radius:2px; transition:transform .35s var(--ease), opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position:fixed; inset:0; top:var(--nav-h);
  background:rgba(5,5,7,.98); backdrop-filter:blur(24px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; padding:32px;
  transform:translateX(100%); transition:transform .45s var(--ease);
  z-index:6900;
}
.nav-mobile.open { transform:translateX(0); }
.nav-mobile a {
  font-family:'Barlow Condensed',sans-serif; font-size:2.8rem;
  font-weight:800; letter-spacing:.04em; color:var(--white);
  padding:6px 0; transition:color .2s, letter-spacing .3s;
}
.nav-mobile a:hover { color:var(--red); letter-spacing:.08em; }
.nav-mobile-cta {
  display:flex !important; align-items:center; gap:10px;
  margin-top:20px; padding:14px 36px !important; border-radius:14px;
  background:var(--red); color:var(--white) !important;
  font-size:1rem !important; font-family:'DM Sans',sans-serif !important;
  font-weight:700 !important; letter-spacing:0 !important;
  box-shadow:0 8px 32px rgba(220,38,38,.35);
}
.nav-mobile-cta svg { width:18px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden; padding-top:var(--nav-h);
}

#ambientCanvas { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; z-index:0; }

.hero-grid-bg {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size:80px 80px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Red vignette */
#hero::before {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(ellipse 55% 60% at 72% 50%, rgba(220,38,38,.07) 0%, transparent 70%);
}

.hero-text {
  position:relative; z-index:2;
  flex:0 0 50%; padding:60px 48px 60px 80px;
  display:flex; flex-direction:column; gap:28px;
  max-width:680px;
}

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.78rem; font-weight:600; letter-spacing:.22em;
  text-transform:uppercase; color:var(--gray);
}
.eyebrow-pulse {
  width:8px; height:8px; border-radius:50%; background:var(--red); flex-shrink:0;
  animation:epulse 2s ease-in-out infinite;
}
@keyframes epulse {
  0%,100% { box-shadow:0 0 0 0 rgba(220,38,38,.5); }
  50%      { box-shadow:0 0 0 9px rgba(220,38,38,0); }
}

.hero-heading {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(3.2rem,6.5vw,6rem);
  font-weight:900; line-height:.9; letter-spacing:-.015em; text-transform:uppercase;
}
/* 3-D extrude */
.hero-heading {
  text-shadow:
    1px 1px 0 rgba(0,0,0,1),
    2px 2px 0 rgba(0,0,0,.9),
    3px 3px 0 rgba(0,0,0,.7),
    4px 4px 0 rgba(0,0,0,.5),
    5px 5px 0 rgba(0,0,0,.3),
    6px 6px 12px rgba(0,0,0,.3);
}
.hero-word { display:block; }
.hero-word--red {
  color:var(--red);
  text-shadow:
    1px 1px 0 rgba(0,0,0,.8),
    2px 2px 0 rgba(0,0,0,.6),
    3px 3px 0 rgba(0,0,0,.4),
    0 0 40px rgba(220,38,38,.4),
    0 0 80px rgba(220,38,38,.15);
}

.hero-body { font-size:1.05rem; line-height:1.72; color:var(--gray); max-width:470px; }

.hero-actions { display:flex; flex-wrap:wrap; gap:14px; }

/* Buttons */
.btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  padding:14px 30px; border-radius:12px;
  background:var(--red); color:var(--white);
  font-weight:700; font-size:.95rem;
  box-shadow:0 4px 24px rgba(220,38,38,.35), 0 1px 0 rgba(255,255,255,.1) inset;
  transition:all .35s var(--ease); position:relative; overflow:hidden;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15) 0%,transparent 60%);
  opacity:0; transition:opacity .3s;
}
.btn-primary:hover::before { opacity:1; }
.btn-primary:hover {
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 12px 40px rgba(220,38,38,.55);
}
.btn-primary svg { width:18px; height:18px; flex-shrink:0; }

.btn-ghost {
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 26px; border-radius:12px;
  border:1.5px solid rgba(255,255,255,.13);
  color:var(--white); font-weight:600; font-size:.95rem;
  transition:all .35s var(--ease); backdrop-filter:blur(6px);
  position:relative; overflow:hidden;
}
.btn-ghost:hover {
  border-color:rgba(220,38,38,.45); background:rgba(220,38,38,.07);
  transform:translateY(-2px);
}
.btn-ghost svg { width:18px; height:18px; transition:transform .3s var(--ease); }
.btn-ghost:hover svg { transform:translateX(5px); }

.btn-outline {
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 26px; border-radius:12px;
  border:1.5px solid rgba(220,38,38,.35); color:var(--white);
  font-weight:600; font-size:.95rem;
  transition:all .35s var(--ease); position:relative; overflow:hidden;
}
.btn-outline:hover { background:rgba(220,38,38,.1); border-color:var(--red); transform:translateY(-2px); }
.btn-outline svg { width:18px; }

/* Hero stats */
.hero-stats { display:flex; align-items:center; gap:28px; padding-top:8px; }
.hstat { display:flex; align-items:baseline; gap:3px; }
.hstat-n {
  font-family:'Barlow Condensed',sans-serif; font-size:2.6rem;
  font-weight:900; line-height:1; color:var(--white);
}
.hstat sup { font-size:.95rem; color:var(--red); font-weight:700; }
.hstat small { font-size:.7rem; letter-spacing:.12em; color:var(--gray); text-transform:uppercase; margin-left:5px; }
.hstat-bar { width:1px; height:40px; background:rgba(255,255,255,.1); }

/* ── Car Scene ── */
.car-scene {
  position:absolute; right:0; top:50%;
  transform:translateY(-50%); width:58%;
  pointer-events:none; z-index:1;
}
.car-perspective-wrap { perspective:1400px; perspective-origin:50% 50%; }
.car-3d {
  transform-style:preserve-3d;
  will-change:transform;
  position:relative;
}
#heroCarSvg { width:100%; height:auto; display:block; }
#exhaustCanvas {
  position:absolute; inset:0;
  pointer-events:none; width:100%; height:100%;
}

/* Wheel spin */
#frontRimSpokes { transform-origin:258px 370px; animation:wspin 1.1s linear infinite; }
#rearRimSpokes  { transform-origin:672px 370px; animation:wspin 1.1s linear infinite; }
@keyframes wspin { to { transform:rotate(360deg); } }

/* Headlight beam pulse */
#headlightBeam { animation:beamPulse 2.5s ease-in-out infinite; }
@keyframes beamPulse { 0%,100%{opacity:.04} 50%{opacity:.09} }

/* Scroll hint */
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  z-index:3; display:flex; flex-direction:column; align-items:center; gap:10px;
}
.hero-scroll span { font-size:.68rem; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.35); }
.scroll-mouse {
  width:22px; height:34px; border-radius:11px;
  border:1.5px solid rgba(255,255,255,.18);
  display:flex; justify-content:center; padding-top:6px;
}
.scroll-dot {
  width:4px; height:4px; border-radius:50%; background:var(--red);
  animation:sdot 1.7s ease-in-out infinite;
}
@keyframes sdot { 0%,100%{transform:translateY(0);opacity:1} 80%{transform:translateY(13px);opacity:0} 81%{opacity:0;transform:translateY(0)} }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee {
  overflow:hidden; position:relative; z-index:2;
  background:linear-gradient(90deg, var(--red-dk), var(--red), var(--red-lt), var(--red), var(--red-dk));
  padding:12px 0;
}
.marquee-inner { width:100%; }
.marquee-track {
  display:flex; width:max-content; align-items:center;
  animation:mscroll 24s linear infinite;
}
.marquee-track:hover { animation-play-state:paused; }
.marquee-track span {
  padding:0 22px; white-space:nowrap;
  font-family:'Barlow Condensed',sans-serif; font-size:.88rem;
  font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.9);
}
.marquee-track svg { width:5px; height:5px; color:rgba(255,255,255,.45); flex-shrink:0; }
@keyframes mscroll { to { transform:translateX(-50%); } }

/* ══════════════════════════════════════════
   SHARED SECTION
══════════════════════════════════════════ */
.section-tag {
  display:inline-block; font-size:.7rem; font-weight:700;
  letter-spacing:.28em; text-transform:uppercase; color:var(--red); margin-bottom:14px;
}
.section-header { margin-bottom:60px; }
.section-header h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(2.4rem,5vw,4.2rem);
  font-weight:900; line-height:.95; letter-spacing:-.01em; text-transform:uppercase;
}
.section-header h2 em { color:var(--red); font-style:normal; }
.section-header p { font-size:1rem; color:var(--gray); line-height:1.7; max-width:520px; margin-top:16px; }

section { padding:110px 0 100px; }

/* ══════════════════════════════════════════
   STORY
══════════════════════════════════════════ */
#story { background:#060608; }

.story-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start;
}
.story-left .section-tag { margin-bottom:16px; }
.story-left h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(2.2rem,4vw,3.4rem);
  font-weight:900; line-height:.95; text-transform:uppercase;
  margin-bottom:20px;
}
.story-left h2 em { color:var(--red); font-style:normal; }
.story-left p { font-size:.95rem; color:var(--gray); line-height:1.72; margin-bottom:14px; }

.story-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.pill {
  display:inline-flex; align-items:center; gap:7px;
  padding:8px 16px; border-radius:100px;
  background:rgba(220,38,38,.07); border:1px solid rgba(220,38,38,.2);
  font-size:.8rem; font-weight:600; color:rgba(255,255,255,.8);
  transition:background .2s, transform .2s var(--ease);
}
.pill:hover { background:rgba(220,38,38,.14); transform:scale(1.03); }
.pill svg { width:14px; height:14px; color:var(--red); }

.story-right { display:flex; flex-direction:column; gap:20px; }

.glass-stat {
  position:relative; border-radius:22px; padding:40px 36px;
  background:rgba(220,38,38,.05); border:1px solid rgba(220,38,38,.18);
  backdrop-filter:blur(14px) saturate(1.4);
  overflow:hidden; text-align:center;
  box-shadow:0 0 60px rgba(220,38,38,.08), 0 20px 60px rgba(0,0,0,.4);
  transition:transform .5s var(--ease), box-shadow .5s;
  cursor:default;
}
.glass-stat:hover { box-shadow:0 0 80px rgba(220,38,38,.16), 0 30px 80px rgba(0,0,0,.5); }
.gs-number {
  font-family:'Barlow Condensed',sans-serif; font-size:5.5rem;
  font-weight:900; line-height:1; color:var(--white);
}
.gs-number span { color:var(--red); }
.gs-label { font-size:.85rem; color:var(--gray); letter-spacing:.08em; margin-top:8px; }
.gs-ring {
  position:absolute; width:260px; height:260px; border-radius:50%;
  border:1px solid rgba(220,38,38,.1);
  top:50%; left:50%; transform:translate(-50%,-50%);
  animation:gring 5s ease-in-out infinite;
}
.gs-ring::before {
  content:''; position:absolute; inset:24px; border-radius:50%;
  border:1px solid rgba(220,38,38,.06);
}
@keyframes gring { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.07) rotate(15deg)} }

.story-cards { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.sinfo-card {
  display:flex; align-items:center; gap:14px;
  padding:18px 16px; border-radius:14px;
  background:var(--card); border:1px solid var(--border);
  transition:border-color .3s, transform .35s var(--ease), box-shadow .3s;
  cursor:default;
}
.sinfo-card:hover {
  border-color:rgba(220,38,38,.3); transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}
.sinfo-card--red { border-color:rgba(220,38,38,.18); background:rgba(220,38,38,.04); }
.sinfo-icon {
  width:40px; height:40px; border-radius:10px; flex-shrink:0;
  background:rgba(220,38,38,.12); border:1px solid rgba(220,38,38,.2);
  display:flex; align-items:center; justify-content:center;
  transition:transform .3s var(--ease);
}
.sinfo-card:hover .sinfo-icon { transform:rotate(-8deg) scale(1.1); }
.sinfo-icon svg { width:20px; height:20px; color:var(--red); }
.sinfo-card > div:last-child { display:flex; flex-direction:column; gap:2px; }
.sinfo-card strong { font-size:.88rem; font-weight:700; }
.sinfo-card span { font-size:.76rem; color:var(--gray); line-height:1.4; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services { background:#040406; position:relative; overflow:hidden; }
.services-watermark {
  position:absolute; font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(8rem,22vw,20rem); font-weight:900; letter-spacing:-.03em;
  color:rgba(255,255,255,.012); top:50%; left:50%;
  transform:translate(-50%,-50%); white-space:nowrap;
  user-select:none; pointer-events:none;
}
.services-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(265px,1fr));
  gap:1px; border-radius:20px; overflow:hidden; border:1px solid var(--border);
}
.svc { position:relative; overflow:hidden; background:var(--card); transition:background .3s; }
.svc::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:2px; background:linear-gradient(90deg,transparent,var(--red),transparent);
  transform:scaleX(0); transition:transform .4s var(--ease);
  transform-origin:center;
}
.svc:hover { background:#111118; }
.svc:hover::after { transform:scaleX(1); }

.svc-front {
  padding:30px 26px 46px; display:flex; flex-direction:column; gap:12px;
  min-height:210px; transition:transform .4s var(--ease);
}
.svc:hover .svc-front { transform:translateY(-5px); }
.svc-num {
  font-family:'Barlow Condensed',sans-serif; font-size:2.2rem;
  font-weight:900; color:rgba(220,38,38,.07); line-height:1;
  transition:color .3s;
}
.svc:hover .svc-num { color:rgba(220,38,38,.15); }
.svc-icon {
  width:48px; height:48px; border-radius:12px;
  background:rgba(220,38,38,.09); border:1px solid rgba(220,38,38,.18);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s, transform .45s var(--ease), box-shadow .3s;
}
.svc:hover .svc-icon {
  background:rgba(220,38,38,.2); transform:scale(1.1) rotate(-5deg);
  box-shadow:0 4px 20px rgba(220,38,38,.25);
}
.svc-icon svg { width:24px; height:24px; color:var(--red); }
.svc-front h3 { font-size:1.05rem; font-weight:700; }
.svc-front p { font-size:.83rem; color:var(--gray); line-height:1.58; }

.svc-hover {
  position:absolute; bottom:0; left:0; right:0;
  padding:12px 22px;
  background:linear-gradient(to top, rgba(220,38,38,.1) 0%, transparent 100%);
  border-top:1px solid rgba(220,38,38,.1);
  opacity:0; transform:translateY(10px);
  transition:opacity .35s, transform .35s var(--ease);
}
.svc:hover .svc-hover { opacity:1; transform:translateY(0); }
.svc-hover ul { list-style:none; display:flex; flex-direction:column; gap:4px; }
.svc-hover ul li {
  font-size:.77rem; color:rgba(220,80,80,.9); font-weight:600;
  padding-left:14px; position:relative;
}
.svc-hover ul li::before { content:'›'; position:absolute; left:0; color:var(--red); font-size:1rem; line-height:1; }

.svc-glow {
  position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 50% 40%, rgba(220,38,38,.05), transparent 65%);
  opacity:0; transition:opacity .4s;
}
.svc:hover .svc-glow { opacity:1; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
#why { background:#060608; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.why-card {
  border-radius:20px; padding:36px 30px;
  background:var(--card); border:1px solid var(--border);
  position:relative; overflow:hidden;
  transition:border-color .3s, box-shadow .4s;
  will-change:transform; cursor:default;
}
/* Spotlight effect */
.why-card::before {
  content:''; position:absolute; inset:0; border-radius:inherit;
  background:radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(220,38,38,.09) 0%, transparent 70%
  );
  opacity:0; transition:opacity .4s;
}
.why-card:hover::before { opacity:1; }
.why-card:hover {
  border-color:rgba(220,38,38,.28);
  box-shadow:0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(220,38,38,.1);
}
/* Top accent line */
.why-card::after {
  content:''; position:absolute; top:0; left:0; right:0;
  height:2px; background:linear-gradient(90deg,transparent,var(--red),transparent);
  transform:scaleX(0); transition:transform .5s var(--ease);
}
.why-card:hover::after { transform:scaleX(1); }

.wc-num {
  font-family:'Barlow Condensed',sans-serif; font-size:5.5rem;
  font-weight:900; line-height:1; color:rgba(220,38,38,.055);
  position:absolute; top:12px; right:18px; user-select:none;
  transition:color .3s;
}
.why-card:hover .wc-num { color:rgba(220,38,38,.1); }
.wc-icon {
  width:58px; height:58px; border-radius:15px;
  background:rgba(220,38,38,.1); border:1px solid rgba(220,38,38,.2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; transition:transform .45s var(--ease), box-shadow .3s;
}
.why-card:hover .wc-icon {
  transform:scale(1.12) rotate(-6deg);
  box-shadow:0 6px 24px rgba(220,38,38,.25);
}
.wc-icon svg { width:28px; height:28px; color:var(--red); }
.why-card h4 { font-size:1.1rem; font-weight:700; margin-bottom:10px; }
.why-card p { font-size:.87rem; color:var(--gray); line-height:1.68; }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
#cta { padding:90px 0; position:relative; overflow:hidden; background:#040406; }
#cta::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 80% 90% at 50% 50%, rgba(220,38,38,.07), transparent 70%);
}
#ctaCanvas { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }

.cta-box {
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between; gap:48px;
  border-radius:26px; padding:60px;
  background:rgba(255,255,255,.025); border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(16px) saturate(1.3);
  box-shadow:0 0 100px rgba(220,38,38,.06), 0 30px 80px rgba(0,0,0,.5);
  flex-wrap:wrap;
}
.cta-left h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(2rem,4vw,3.2rem); font-weight:900; line-height:.95;
  text-transform:uppercase; margin-bottom:14px;
}
.cta-left p { font-size:.95rem; color:var(--gray); line-height:1.65; max-width:380px; }
.cta-right { display:flex; gap:16px; flex-wrap:wrap; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact { background:#040406; }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:start; }
.contact-cards { display:flex; flex-direction:column; gap:14px; }

.ccard {
  display:flex; align-items:center; gap:18px;
  padding:22px 24px; border-radius:16px;
  background:var(--card); border:1px solid var(--border);
  transition:border-color .3s, transform .35s var(--ease), box-shadow .3s;
}
.ccard:hover {
  border-color:rgba(220,38,38,.3); transform:translateX(6px);
  box-shadow:0 8px 30px rgba(0,0,0,.4);
}
.ccard-icon {
  width:46px; height:46px; border-radius:12px; flex-shrink:0;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s, transform .35s var(--ease);
}
.ccard-icon--red { background:rgba(220,38,38,.1) !important; border-color:rgba(220,38,38,.2) !important; }
.ccard:hover .ccard-icon { transform:scale(1.1); background:rgba(220,38,38,.08); }
.ccard-icon svg { width:22px; height:22px; color:rgba(255,255,255,.45); }
.ccard-icon--red svg { color:var(--red); }
.ccard > div:not(.ccard-icon) { display:flex; flex-direction:column; gap:3px; flex:1; }
.ccard strong { font-size:.88rem; font-weight:700; }
.ccard span { font-size:.84rem; color:var(--gray); line-height:1.55; }
.ccard-arrow { width:16px; height:16px; color:rgba(255,255,255,.18); flex-shrink:0; transition:color .2s, transform .25s var(--ease); }
.ccard:hover .ccard-arrow { color:var(--red); transform:translateX(4px); }

.map-frame {
  border-radius:22px; overflow:hidden; border:1px solid var(--border);
  height:100%; min-height:430px;
  box-shadow:0 24px 70px rgba(0,0,0,.5);
}
.map-frame iframe { display:block; width:100%; height:100%; border:none; min-height:430px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { padding:60px 0 44px; border-top:1px solid var(--border); }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr;
  gap:48px; margin-bottom:44px;
}
.footer-brand p { font-size:.88rem; color:var(--gray); line-height:1.72; margin-top:18px; max-width:300px; }
.footer-brand .nav-logo { margin-bottom:6px; }
.footer-col { display:flex; flex-direction:column; gap:10px; }
.footer-col strong { font-weight:700; font-size:.88rem; margin-bottom:6px; color:var(--white); }
.footer-col a, .footer-col span { font-size:.84rem; color:var(--gray); transition:color .2s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid var(--border); padding-top:26px; }
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.22); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width:1100px) {
  .hero-text { padding:60px 40px 60px 48px; flex:0 0 52%; }
  .car-scene { width:56%; }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}
@media (max-width:900px) {
  #hero { flex-direction:column; min-height:auto; padding-bottom:0; }
  .hero-text {
    flex:none; width:100%; max-width:100%;
    padding:80px 32px 40px; text-align:center; align-items:center;
  }
  .car-scene {
    position:relative; right:auto; top:auto; transform:none;
    width:100%; padding:0 16px;
  }
  .story-grid { grid-template-columns:1fr; gap:44px; }
  .story-cards { grid-template-columns:1fr 1fr; }
  .contact-layout { grid-template-columns:1fr; }
  .map-frame { min-height:320px; }
  .cta-box { flex-direction:column; text-align:center; padding:44px 32px; }
  .cta-right { justify-content:center; }
  .nav-menu, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
}
@media (max-width:700px) {
  .why-grid { grid-template-columns:1fr; }
  .story-cards { grid-template-columns:1fr; }
  .hero-heading { font-size:3rem; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  section { padding:80px 0 70px; }
}
@media (max-width:440px) {
  .services-grid { grid-template-columns:1fr; }
  .hero-text { padding:72px 20px 32px; }
  section { padding:64px 0 56px; }
}
