/* ============================================================
   Ashapuri Auto Enterprise — black & yellow auto theme
   ============================================================ */

:root {
  --bg: #0b0b0d;
  --bg-2: #101014;
  --panel: #141419;
  --panel-2: #17171d;
  --line: #26262e;
  --yellow: #ffc400;
  --yellow-2: #ffd94d;
  --text: #f2f2ef;
  --muted: #a8a8b0;
  --font-head: 'Rajdhani', 'Hind Vadodara', 'Mukta', sans-serif;
  --font-body: 'Hind Vadodara', 'Mukta', 'Rajdhani', sans-serif;
  --radius: 14px;
  --header-h: 72px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }

::selection { background: var(--yellow); color: #111; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0e0e11; }
::-webkit-scrollbar-thumb { background: #2c2c34; border-radius: 8px; border: 2px solid #0e0e11; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.container { width: min(1180px, 92vw); margin: 0 auto; }
.mono { font-family: 'Consolas', 'Courier New', monospace; font-size: .92em; letter-spacing: .04em; }

h1, h2, h3, .stat-num, .btn, .kicker, .logo-text {
  font-family: var(--font-head);
}

h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 10px 0 14px;
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 200;
  background: transparent; pointer-events: none;
}
#scroll-bar {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 0 12px rgba(255, 196, 0, .8);
}

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(11, 11, 13, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(11, 11, 13, .92);
  border-bottom-color: var(--line);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 26px; }

.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-gear { width: 34px; height: 34px; color: var(--yellow); animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; line-height: 1.02; }
.logo-text strong { font-size: 1.28rem; font-weight: 700; letter-spacing: .10em; }
.logo-text small { font-size: .72rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--yellow); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 9px 13px; font-family: var(--font-head); font-weight: 600;
  font-size: .98rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); border-radius: 8px; position: relative;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--yellow); }
.nav-link.active::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--yellow); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex; background: var(--panel); border: 1px solid var(--line);
  border-radius: 10px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 5px 11px; border-radius: 7px; font-family: var(--font-head);
  font-weight: 700; font-size: .88rem; color: var(--muted);
  transition: background .2s, color .2s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--yellow); color: #111; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; font-weight: 700; font-size: 1.02rem;
  letter-spacing: .08em; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-solid { background: var(--yellow); color: #111; }
.btn-solid:hover { background: var(--yellow-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 196, 0, .3); }
.btn-ghost {
  background: rgba(255, 255, 255, .04); color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-header { padding: 10px 20px; font-size: .9rem; }

.burger { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 22px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--header-h); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(58% 52% at 74% 40%, rgba(255, 196, 0, .10), transparent 62%),
    radial-gradient(42% 44% at 12% 82%, rgba(255, 196, 0, .05), transparent 60%),
    linear-gradient(180deg, #0b0b0d 0%, #0d0d11 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(75% 75% at 50% 45%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 45%, #000 30%, transparent 100%);
}
#hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* dark scrim between the 3D scene and the copy so text stays readable */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(11, 11, 13, .86) 0%,
    rgba(11, 11, 13, .55) 38%,
    rgba(11, 11, 13, .1) 62%,
    transparent 78%);
}

.hero-inner { position: relative; z-index: 2; padding: 40px 0 30px; }
.hero-copy { max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(20, 20, 25, .7); font-family: var(--font-head);
  font-weight: 600; font-size: .92rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); position: relative; }
.pulse-dot::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid var(--yellow); animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

.hero-title {
  margin: 26px 0 18px; font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.9rem, 8.2vw, 5.6rem); line-height: .98; letter-spacing: .01em;
}
.hero-title span { display: block; text-shadow: 0 3px 28px rgba(0, 0, 0, .85); }
.hero-title .accent {
  color: var(--yellow);
  text-shadow: 0 3px 28px rgba(0, 0, 0, .85), 0 0 44px rgba(255, 196, 0, .3);
}
.hero-sub {
  color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 560px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}
.hero-cta { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2; margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(13, 13, 16, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 22px 10px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat-num { display: block; font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; color: var(--yellow); line-height: 1; font-family: var(--font-head); }
.stat-label { display: block; margin-top: 6px; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.hazard-line {
  position: relative; z-index: 2; height: 10px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 16px, #111 16px 32px);
}

/* ---------- marquee ---------- */
.marquee { overflow: hidden; background: #0e0e11; border-bottom: 1px solid var(--line); padding: 20px 0; }
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.9rem;
  letter-spacing: .12em; color: var(--text); white-space: nowrap;
}
.marquee-track span.stroke {
  color: transparent; -webkit-text-stroke: 1.2px var(--yellow);
}
.marquee-track i { color: var(--yellow); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 104px 0; position: relative; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--yellow); font-weight: 700; font-size: .95rem;
  letter-spacing: .3em; text-transform: uppercase;
}
.kicker::before { content: ''; width: 34px; height: 2.5px; background: var(--yellow); }
.section-sub { color: var(--muted); max-width: 640px; margin-bottom: 8px; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.about-copy p { color: var(--muted); margin-bottom: 14px; }
.about-points { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.tick {
  width: 24px; height: 24px; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(255, 196, 0, .12); color: var(--yellow);
  border: 1px solid rgba(255, 196, 0, .4); border-radius: 7px; font-size: .85rem;
}

.about-board {
  position: relative; background: linear-gradient(160deg, #17171c, #101014);
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 46px 38px 34px; text-align: center;
  transform: rotate(-1.6deg); transition: transform .4s ease;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .02);
}
.about-board:hover { transform: rotate(0deg) scale(1.015); }
.about-board::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 8px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, #111 12px 24px);
}
.board-bolt {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #55555e, #1c1c22 70%);
  box-shadow: inset 0 0 0 1px #000;
}
.board-bolt.tl { top: 18px; left: 16px; } .board-bolt.tr { top: 18px; right: 16px; }
.board-bolt.bl { bottom: 14px; left: 16px; } .board-bolt.br { bottom: 14px; right: 16px; }
.board-est {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: #111; background: var(--yellow); padding: 4px 14px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.board-name-gu {
  margin-top: 18px; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1.1;
  color: var(--yellow); font-family: var(--font-body); font-weight: 700;
  text-shadow: 0 0 34px rgba(255, 196, 0, .3);
}
.board-name-en { font-family: var(--font-head); font-weight: 700; letter-spacing: .34em; text-transform: uppercase; margin-top: 4px; }
.board-line { color: var(--muted); margin-top: 12px; font-size: .98rem; }
.board-brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
.board-brands span {
  font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .12em;
  padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted);
}
.board-gst { margin-top: 20px; color: #6d6d76; font-size: .8rem; }

/* ---------- brands ---------- */
.brand-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px;
}
.brand-card {
  background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 30px 18px 26px; text-align: center; position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.brand-card::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--yellow); transform: scaleX(0); transition: transform .35s;
}
.brand-card:hover { transform: translateY(-6px); border-color: rgba(255, 196, 0, .5); box-shadow: 0 16px 36px rgba(0, 0, 0, .45); }
.brand-card:hover::after { transform: scaleX(1); }
.brand-mark {
  display: inline-grid; place-items: center; width: 58px; height: 58px;
  border-radius: 50%; border: 2px solid var(--yellow); color: var(--yellow);
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; margin-bottom: 14px;
}
.brand-card h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: .1em; }
.brand-card p { color: var(--muted); font-size: .82rem; margin-top: 6px; line-height: 1.4; }
.brands-more { margin-top: 22px; color: var(--muted); font-weight: 600; }

/* ---------- parts ---------- */
.parts-toolbar { display: flex; flex-direction: column; gap: 18px; margin: 34px 0 10px; }
.search-box {
  display: flex; align-items: center; gap: 12px; max-width: 520px;
  background: var(--panel); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 18px; transition: border-color .2s, box-shadow .2s;
}
.search-box:focus-within { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 196, 0, .12); }
.search-box svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; }
.search-box input {
  flex: 1; background: none; border: 0; outline: 0; color: var(--text); font-size: 1.02rem;
}
.search-box input::placeholder { color: #6f6f78; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 8px 17px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--panel); color: var(--muted); font-family: var(--font-head);
  font-weight: 600; font-size: .92rem; letter-spacing: .05em;
  transition: all .2s;
}
.chip:hover { color: var(--text); border-color: #3a3a44; transform: translateY(-1px); }
.chip.active { background: var(--yellow); border-color: var(--yellow); color: #111; }

.parts-count { color: #79797f; font-size: .9rem; margin: 8px 0 18px; letter-spacing: .04em; }

.parts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 16px;
}
.part-card {
  background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px 18px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  animation: cardIn .5s both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.part-card:hover { transform: translateY(-5px); border-color: rgba(255, 196, 0, .55); box-shadow: 0 14px 30px rgba(0, 0, 0, .4); }
.part-icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: rgba(255, 196, 0, .1); border: 1px solid rgba(255, 196, 0, .35);
  border-radius: 11px; color: var(--yellow); margin-bottom: 6px;
}
.part-icon svg { width: 25px; height: 25px; }
.part-card h3 { font-size: 1.12rem; font-weight: 700; line-height: 1.25; }
.part-cat {
  align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  padding: 3px 9px; border: 1px solid var(--line); border-radius: 999px;
}
.part-enquire {
  margin-top: auto; padding-top: 10px; color: var(--yellow); font-family: var(--font-head);
  font-weight: 700; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px;
}
.part-enquire svg { width: 15px; height: 15px; transition: transform .2s; }
.part-enquire:hover svg { transform: translateX(4px); }

.parts-empty { text-align: center; padding: 54px 0 20px; }
.empty-title { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }
.empty-sub { color: var(--muted); margin: 8px 0 22px; }
.parts-empty .btn { display: inline-flex; }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.why-card {
  background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--yellow); transform: scaleY(0); transform-origin: top; transition: transform .35s;
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(255, 196, 0, .45); }
.why-card:hover::before { transform: scaleY(1); }
.why-icon {
  width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(255, 196, 0, .1); border: 1px solid rgba(255, 196, 0, .35);
  border-radius: 13px; color: var(--yellow);
}
.why-icon svg { width: 27px; height: 27px; }
.why-card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 7px; }
.why-card p { color: var(--muted); font-size: .96rem; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 18px; margin-top: 44px; align-items: stretch; }
.review-card {
  position: relative; background: var(--panel); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px 26px;
}
.quote-mark {
  position: absolute; top: 2px; left: 18px; font-size: 4.4rem; line-height: 1;
  color: rgba(255, 196, 0, .25); font-family: Georgia, serif;
}
.review-card blockquote { font-size: 1.12rem; font-weight: 500; line-height: 1.55; }
.review-card figcaption { margin-top: 16px; color: var(--muted); font-size: .9rem; display: flex; align-items: center; gap: 10px; }
.stars { color: var(--yellow); letter-spacing: 2px; }
.rating-badges { display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.rating-badge {
  background: linear-gradient(140deg, rgba(255, 196, 0, .14), rgba(255, 196, 0, .03));
  border: 1.5px solid rgba(255, 196, 0, .4); border-radius: var(--radius);
  padding: 20px 24px; text-align: center;
}
.rating-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; color: var(--yellow); line-height: 1; }
.rating-star { font-size: 1.2rem; vertical-align: super; margin-left: 3px; }
.rating-src { display: block; margin-top: 6px; color: var(--muted); font-size: .88rem; letter-spacing: .05em; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; margin-top: 44px; align-items: start; }
.visit-info { display: grid; gap: 14px; }
.info-card {
  display: flex; gap: 18px; background: var(--panel); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px; transition: border-color .25s;
}
.info-card:hover { border-color: rgba(255, 196, 0, .4); }
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(255, 196, 0, .1); border: 1px solid rgba(255, 196, 0, .35);
  border-radius: 12px; color: var(--yellow);
}
.info-icon svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.04rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: .98rem; }
.info-link {
  display: inline-block; margin-top: 8px; color: var(--yellow); font-family: var(--font-head);
  font-weight: 700; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1.5px solid transparent; transition: border-color .2s;
}
.info-link:hover { border-bottom-color: var(--yellow); }
.plain-link { color: var(--text); font-weight: 600; }
.plain-link:hover { color: var(--yellow); }
.phone-tag {
  display: inline-block; margin-left: 8px; padding: 2px 10px; vertical-align: 1px;
  background: rgba(255, 196, 0, .14); border: 1px solid rgba(255, 196, 0, .45);
  border-radius: 999px; color: var(--yellow); font-family: var(--font-head);
  font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
}

.map-wrap {
  position: sticky; top: calc(var(--header-h) + 20px);
  border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--panel);
}
.map-wrap::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 6px; z-index: 2;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, #111 12px 24px);
}
.map-wrap iframe {
  width: 100%; height: 480px; border: 0; display: block;
  filter: grayscale(35%) invert(90%) hue-rotate(180deg) contrast(.92);
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #0a0a0c; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 48px; padding: 64px 0 44px;
}
.footer-brand p { color: var(--muted); margin-top: 16px; max-width: 320px; }
.footer-gst { font-size: .8rem; color: #63636c !important; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3, .footer-contact h3 {
  font-size: .95rem; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 8px; font-weight: 700;
}
.footer-links a { color: var(--muted); font-weight: 500; transition: color .2s, transform .2s; width: fit-content; }
.footer-links a:hover { color: var(--yellow); transform: translateX(4px); }
.footer-contact p { color: var(--muted); font-size: .96rem; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: #74747c; font-size: .9rem; }
.footer-bottom .mono { color: var(--yellow); }

/* ---------- floating ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1eb955; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
  transition: transform .25s;
}
.wa-float::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(30, 185, 85, .55); animation: pulse 2s ease-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

.to-top {
  position: fixed; right: 26px; bottom: 98px; z-index: 90;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--panel); border: 1.5px solid var(--line); color: var(--yellow);
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: opacity .3s, transform .3s, border-color .2s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { border-color: var(--yellow); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2, .65, .3, 1) var(--d, 0s), transform .7s cubic-bezier(.2, .65, .3, 1) var(--d, 0s);
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; background: rgba(11, 11, 13, .98);
    border-bottom: 1px solid var(--line); padding: 18px 4vw 26px; gap: 2px;
    transform: translateY(-130%); transition: transform .35s ease; z-index: -1;
  }
  .main-nav.open { transform: none; }
  .nav-link { padding: 13px 10px; font-size: 1.1rem; }
  .burger { display: flex; }
  .btn-header span { display: none; }
  .btn-header { padding: 10px 14px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .rating-badges { flex-direction: row; grid-column: 1 / -1; }
  .rating-badge { flex: 1; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap { position: static; }
  .map-wrap iframe { height: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 48px 0 36px; }
  .hero-copy { max-width: 100%; }
  .hero-scrim {
    background: linear-gradient(180deg,
      rgba(11, 11, 13, .72) 0%,
      rgba(11, 11, 13, .5) 42%,
      rgba(11, 11, 13, .12) 62%,
      transparent 78%);
  }
  .marquee-track span { font-size: 1.4rem; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .section { padding: 76px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-badges { flex-direction: column; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 4px 8px; font-size: .8rem; }
  .parts-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .part-card { padding: 16px 14px 14px; }
  .wa-float { right: 16px; bottom: 18px; width: 54px; height: 54px; }
  .to-top { right: 18px; bottom: 86px; }
}

@media (max-width: 400px) {
  .parts-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
