:root{
  --bg: #050505;
  --bg-2: #0b0b0d;
  --ink: #f4f4f6;
  --ink-dim: #a8a8b2;
  --ink-faint: #76767f;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);

  --accent: #ff1f3d;            /* neon red */
  --accent-2: #ff4d63;
  --accent-glow: 255, 31, 61;
  --accent-deep: #8a0a1c;
  --ticker-h: 44px;

  --gold: #d4a24a;
  --blue: #2bd0ff;

  --font-display: "Geist", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  --font-body: "Geist", "Inter", system-ui, sans-serif;

  --container: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
button { font-family: inherit; }

body.light{
  --bg: #f5f4f1;
  --bg-2: #ffffff;
  --ink: #0a0a0c;
  --ink-dim: #4a4a52;
  --ink-faint: #6f6f78;
  --line: rgba(0,0,0,.10);
  --line-2: rgba(0,0,0,.18);
}


.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.eyebrow::before{
  content:""; width:18px; height:1px; background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-glow),.8);
}
.eyebrow.no-dot::before{ display:none; }

h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; }
h1{ font-size: clamp(48px, 8vw, 128px); line-height: .94; }
h2{ font-size: clamp(36px, 4.6vw, 76px); line-height: .98; }
h3{ font-size: clamp(22px, 2vw, 32px); line-height: 1.1; }
p { line-height: 1.55; color: var(--ink-dim); margin: 0; }
.lead{ font-size: 18px; color: var(--ink-dim); max-width: 62ch; }


.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  transition: backdrop-filter .3s, background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(5,5,5,.65);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line);
}


.hp-ticker{
  position: fixed; top: 0; left: 0; right: 0; height: var(--ticker-h);
  z-index: 60; display: flex; align-items: stretch; overflow: hidden;
  background: rgba(8,8,10,.86);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px;
}
.hp-ticker-label{
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  padding: 0 30px 0 20px; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  color: #fff; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}
.hp-ticker-label svg{ width: 15px; height: 15px; }
.hp-ticker-viewport{
  flex: 1; overflow: hidden; display: flex; align-items: center; height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 46px, #000 calc(100% - 46px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 46px, #000 calc(100% - 46px), transparent);
}
.hp-ticker-track{
  display: flex; align-items: center; white-space: nowrap;
  animation: hp-ticker-scroll 44s linear infinite; will-change: transform; padding-left: 20px;
}
.hp-ticker:hover .hp-ticker-track{ animation-play-state: paused; }
.hp-ticker-item{ color: var(--ink-dim); padding: 0 2px; transition: color .2s; }
a.hp-ticker-item:hover{ color: var(--accent); }
.hp-ticker-sep{ color: var(--accent); padding: 0 22px; opacity: .55; }
@keyframes hp-ticker-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.has-ticker .nav{ top: var(--ticker-h); }

.has-ticker .hero-top{ top: calc(84px + var(--ticker-h)); }


html{ scrollbar-width: thin; scrollbar-color: var(--accent) #0b0b0d; }
html::-webkit-scrollbar{ width: 12px; }
html::-webkit-scrollbar-track{ background: #0b0b0d; }
html::-webkit-scrollbar-thumb{ background: var(--accent); border-radius: 6px; border: 3px solid #0b0b0d; }
html::-webkit-scrollbar-thumb:hover{ background: var(--accent-2); }
@media (max-width: 640px){
  :root{ --ticker-h: 40px; }
  .hp-ticker-label span{ display: none; }
  .hp-ticker-label{ padding: 0 18px 0 15px; }
  .hp-ticker{ font-size: 11px; }
}
.nav .logo{
  display:flex; align-items:center; gap:10px;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.nav .logo-img{ height: 34px; width: auto; display: block; }
.nav ul{
  display:flex; gap: 26px; list-style: none; margin:0; padding:0;
  color: var(--ink-dim);
}
.nav ul a{ transition: color .2s; }
.nav ul a:hover{ color: var(--ink); }
.nav .cta{
  display:inline-flex; align-items:center; gap:8px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--accent); color:#fff;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 8px 24px rgba(var(--accent-glow),.35);
  transition: transform .15s, box-shadow .2s;
}
.nav .cta:hover{ transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 12px 30px rgba(var(--accent-glow),.5); }
.nav .lang{
  display:inline-flex; border:1px solid var(--line-2); border-radius: 999px;
  overflow:hidden;
}
.nav .lang button{
  background: transparent; border:0; color: var(--ink-dim);
  padding: 6px 12px; font: inherit; cursor: default;
  letter-spacing: .08em;
}
.nav .lang button.on{ background: var(--ink); color: var(--bg); }

.nav-mobile-toggle{
  display: none;
  align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 0;
  background: transparent; border: 1px solid var(--line-2); border-radius: 6px;
  color: var(--ink); cursor: default;
}
.nav-mobile-toggle svg{ width: 18px; height: 18px; }
.nav-mobile-only{ display: none; }


.hero{
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}
#hero-canvas{
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
.hero-grid{
  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: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(0,0,0,.6) 75%, rgba(0,0,0,.95) 100%);
  pointer-events: none;
}
.hero-content{
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 8vh;
}
.hero-top{
  position: absolute; top: 84px; left: 32px; right: 32px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 4;
}
.hero-spec{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex; gap: 22px;
}
.hero-spec span b{ color: var(--ink); font-weight: 500; }
.hero-headline{
  font-size: clamp(60px, 10.5vw, 188px);
  line-height: .88;
  letter-spacing: -.035em;
  font-weight: 600;
}
.hero-headline .gleam{
  background: linear-gradient(180deg, #fff 0%, #bdbdc4 60%, #6a6a72 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-headline .accent{
  color: var(--accent);
  text-shadow: 0 0 40px rgba(var(--accent-glow),.55);
  font-style: italic;
}
.hero-sub{
  margin-top: 22px;
  display:flex; align-items:flex-end; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.hero-sub p{ max-width: 440px; font-size: 15px; }
.hero-cta-row{ display:flex; gap: 12px; align-items: center; }
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 4px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: default; border: 0;
  transition: transform .15s, background .2s, color .2s, box-shadow .2s;
}
.btn-primary{
  background: var(--accent); color:#fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 10px 40px rgba(var(--accent-glow),.4);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover{ border-color: var(--ink); }
.btn .arrow{ width:14px; height:1px; background: currentColor; position:relative; transition: width .2s; }
.btn .arrow::after{
  content:""; position:absolute; right:0; top:50%;
  width:6px; height:6px; border-right:1px solid currentColor; border-top:1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow{ width: 22px; }

.hero-scroll{
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint);
  letter-spacing: .2em; text-transform: uppercase;
  display:flex; flex-direction:column; align-items:center; gap: 8px;
}
.hero-scroll .line{
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--ink-dim));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  51%{ transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}


section.s{
  position: relative;
  padding: 140px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 84px; 
}
.section-head{
  display:flex; flex-direction: column; gap: 16px;
  margin-bottom: 56px;
}
.section-head .row{ display:flex; align-items:flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }


.about-prose{ max-width: 780px; }
.about-prose p{ font-size: 15.5px; line-height: 1.9; color: var(--ink-dim); margin: 0 0 20px; }
.about-prose p:first-child{ font-size: 17px; line-height: 1.8; color: var(--ink); }
.about-prose p:last-child{ margin-bottom: 0; }


.rail{
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(var(--accent-glow),.06), transparent 70%),
    var(--bg);
}
.rail-track{
  display:flex; gap: 64px;
  white-space: nowrap;
  animation: rail 60s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 84px);
  font-weight: 600;
  letter-spacing: -.03em;
}
.rail-track span{ color: var(--ink); }
.rail-track em{ color: var(--accent); font-style: italic; font-weight: 500; }
.rail-track i{ color: var(--ink-faint); font-style: normal; font-family: var(--font-mono); font-size: .55em; vertical-align: middle; }
@keyframes rail{ to { transform: translateX(-50%); } }


.stats{
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stats .cell{
  padding: 28px 28px;
  border-right: 1px solid var(--line);
  display:flex; flex-direction: column; gap: 6px;
}
.stats .cell:last-child{ border-right: 0; }
.stats .num{ font-family: var(--font-display); font-size: 44px; font-weight: 600; letter-spacing: -.02em; }
.stats .num em{ color: var(--accent); font-style: normal; }
.stats .lab{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }


.pinned{
  position: relative;
  height: 220vh; 
}
.pinned-sticky{
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display:flex; align-items:center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(var(--accent-glow),.10), transparent 60%),
    var(--bg);
}
.pinned .video-frame{
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 32vw; aspect-ratio: 16/9;
  border-radius: 8px; overflow: hidden;
  background:
    linear-gradient(180deg, #0d0d10, #06060a),
    url("bayi-girisi/assets/gallery/image1.jpeg") center/cover;
  background-blend-mode: overlay;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 40px 100px rgba(0,0,0,.6),
    0 0 80px rgba(var(--accent-glow),.18);
  transition: none;
  will-change: transform, width;
}
.pinned .video-frame::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}
.pinned .video-frame video{
  width: 100%; height: 100%; object-fit: cover;
  display:block;
}
.pinned .play-pulse{
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(var(--accent-glow),.9);
  display:grid; place-items:center;
  cursor: default;
  z-index: 2;
}
.pinned .play-pulse::before{
  content:""; position:absolute; inset:-12px; border-radius:50%;
  border: 2px solid rgba(var(--accent-glow),.6);
  animation: pulse 1.6s ease-out infinite;
}
.pinned .play-pulse svg{ fill:#fff; width:24px; height:24px; margin-left:3px; }
@keyframes pulse{ 0%{ transform: scale(.85); opacity:.9 } 100%{ transform: scale(1.6); opacity:0 } }

.pinned-overlay{
  position: absolute; inset: 0;
  display:flex; flex-direction: column; justify-content: space-between;
  padding: 80px 48px 64px;
  pointer-events: none;
}
.pinned-overlay h2{
  font-size: clamp(40px, 6vw, 96px);
  max-width: 14ch;
}
.pinned-overlay .right{ text-align: right; max-width: 360px; align-self: flex-end; }


.svc-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.svc-tabs{
  display:flex; gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.svc-tabs button{
  background: transparent; border: 0; color: var(--ink-faint);
  padding: 14px 18px;
  position: relative;
  cursor: default;
  transition: color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.tab-ico{ display:inline-flex; }
.tab-ico svg{ width: 15px; height: 15px; }
.svc-tabs button.on{ color: var(--ink); }
.svc-tabs button.on::after{
  content:""; position:absolute; left: 14px; right: 14px; bottom:-1px;
  height: 2px; background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-glow),.7);
}
.svc-card{
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.svc-card h3{ margin-bottom: 18px; }
.svc-card .qa{ margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.svc-card .qa h4{ font-size: 14px; font-family: var(--font-mono); letter-spacing: .04em; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; }
.svc-card .qa h4::before{ content:"// "; color: var(--accent); }
.svc-card .qa p{ font-size: 14px; }

/* Terminal */
.terminal{
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.55;
  background: #07070a;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 460px;
  position: relative;
}
.terminal .bar{
  display:flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #0a0a0e;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.terminal .bar .dots{ display:flex; gap:6px; margin-right: 12px; }
.terminal .bar .dots span{ width:10px; height:10px; border-radius:50%; background:#333; }
.terminal .bar .dots span:nth-child(1){ background:#ff5f57; }
.terminal .bar .dots span:nth-child(2){ background:#febc2e; }
.terminal .bar .dots span:nth-child(3){ background:#28c840; }
.terminal .body{
  flex: 1;
  padding: 20px 18px;
  overflow: hidden;
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal .ln{ display:block; }
.terminal .c-com{ color: #5f6173; }
.terminal .c-key{ color: var(--accent); }
.terminal .c-str{ color: #d4a24a; }
.terminal .c-num{ color: #2bd0ff; }
.terminal .c-fn{ color: #fff; }
.terminal .c-dim{ color: var(--ink-faint); }
.terminal .cursor{
  display: inline-block; width: 8px; height: 14px;
  background: var(--accent);
  margin-left: 2px; vertical-align: -2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink{ 50% { opacity: 0; } }


.tri-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tri-card{
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), border-color .25s;
  min-height: 360px;
  display:flex; flex-direction: column; justify-content: space-between;
  cursor: default;
}
.tri-card:hover{
  border-color: var(--accent);
  transform: translateY(-4px);
}
.tri-card .glyph{
  position: absolute; right: -20px; top: -20px;
  font-family: var(--font-display); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,.025);
  line-height: 1;
  letter-spacing: -.05em;
  user-select: none;
  pointer-events: none;
  transition: color .3s;
}
.tri-card:hover .glyph{ color: rgba(var(--accent-glow),.08); }
.tri-card h3{ position: relative; }
.tri-card .lead{ font-size: 14px; position: relative; }
.tri-card .more{ position: relative; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); display:flex; align-items:center; gap: 8px; }
.tri-card .more::after{ content: "→"; transition: transform .2s; }
.tri-card:hover .more::after{ transform: translateX(4px); }
.tri-card .shards{ position:absolute; inset:0; pointer-events: none; opacity: 0; transition: opacity .3s; }
.tri-card:hover .shards{ opacity: 1; }
.tri-card .shards i{
  position: absolute;
  background: rgba(var(--accent-glow),.5);
  width: 2px; height: 2px;
  border-radius: 50%;
  animation: shard 1.4s ease-out infinite;
}

/* ───────── Gallery ───────── */
.gallery{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: min(16vw, 150px);
  grid-auto-flow: dense;
  gap: 10px;
}
.gallery .g{
  border-radius: 4px; overflow: hidden;
  background: var(--bg-2); position: relative;
  border: 1px solid var(--line);
}
.gallery .g::before{
  content: attr(data-i);
  position: absolute; left: 14px; top: 12px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink); letter-spacing: .14em;
  z-index: 2;
  mix-blend-mode: difference;
}
.gallery img{ width:100%; height:100%; object-fit: cover; transition: transform .8s ease; }
.gallery .g:hover img{ transform: scale(1.06); }


.map-wrap{
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.map-stage{
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 30%;
  min-height: 540px;
}
.map-tilt{
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(14deg) rotateZ(0deg);
  transition: transform .25s;
}
.map-svg-holder{ width: 100%; height: 100%; }
.map-svg{
  width: 100%; height: 100%;
}
.map-svg path{
  fill: rgba(255,255,255,.06);
  stroke: rgba(255,255,255,.18);
  stroke-width: .5;
  transition: fill .25s, stroke .25s;
}

.map-svg path:hover{ fill: rgba(255,255,255,.12); }

.map-svg g.has-dealer path{
  fill: rgba(var(--accent-glow),.28);
  stroke: rgba(var(--accent-glow),.6);
  cursor: pointer;
}
.map-svg g.has-dealer:hover path{ fill: rgba(var(--accent-glow),.5); }

.map-svg g.active-province path{
  fill: rgba(var(--accent-glow),.75);
  stroke: var(--accent);
  filter: drop-shadow(0 0 10px rgba(var(--accent-glow),.8));
}

.map-compass{
  position: absolute; top: 18px; left: 22px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none; font-family: var(--font-mono);
}
.map-compass-n{ font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.7); }
.map-compass-cross{
  width: 22px; height: 22px; position: relative;
  border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
}
.map-compass-cross::before, .map-compass-cross::after{ content: ""; position: absolute; background: rgba(255,255,255,.4); }
.map-compass-cross::before{ left: 50%; top: 2px; bottom: 2px; width: 1px; transform: translateX(-50%); }
.map-compass-cross::after{ top: 50%; left: 2px; right: 2px; height: 1px; transform: translateY(-50%); }
.map-scale{
  position: absolute; bottom: 16px; left: 22px;
  display: flex; flex-direction: column; gap: 3px;
  pointer-events: none; font-family: var(--font-mono);
}
.map-scale-bar{ width: 80px; height: 1px; background: rgba(255,255,255,.3); position: relative; }
.map-scale-bar::before, .map-scale-bar::after{ content: ""; position: absolute; top: -3px; width: 1px; height: 7px; background: rgba(255,255,255,.3); }
.map-scale-bar::before{ left: 0; }
.map-scale-bar::after{ right: 0; }
.map-scale-label{ font-size: 9px; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.dealers-list{
  display:flex; flex-direction: column; gap: 8px;
  max-height: 540px; overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #0b0b0d;
}
.dealers-list::-webkit-scrollbar{ width: 8px; }
.dealers-list::-webkit-scrollbar-track{ background: #0b0b0d; border-radius: 6px; }
.dealers-list::-webkit-scrollbar-thumb{ background: var(--accent); border-radius: 6px; border: 2px solid #0b0b0d; }
.dealers-list::-webkit-scrollbar-thumb:hover{ background: #ff4d63; }
.dealer-row{
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
  display: grid; grid-template-columns: 1fr auto; gap: 4px 18px;
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.dealer-row.active, .dealer-row:hover{ border-color: var(--accent); background: rgba(var(--accent-glow),.04); }
.dealer-row .name{ font-weight: 600; color: var(--ink); }
.dealer-row .city{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.dealer-row .addr{ color: var(--ink-dim); font-size: 14px; grid-column: 1/-1; }
.dealer-row .tel{ font-family: var(--font-mono); color: var(--ink); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.dealers-col{ display: flex; flex-direction: column; gap: 12px; }
.dealers-selected{ display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; border: 1px solid var(--accent); border-radius: 4px; background: rgba(var(--accent-glow),.06); }
.dealers-selected[hidden]{ display: none; }
.dealers-selected-city{ font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.dealers-selected-reset{ background: none; border: 0; color: var(--ink-faint); cursor: pointer; font-size: 15px; line-height: 1; padding: 2px 6px; }
.dealers-selected-reset:hover{ color: var(--accent); }
.dealers-empty{ padding: 16px 18px; color: var(--ink-dim); font-size: 14px; font-family: var(--font-mono); }
.dealers-empty[hidden]{ display: none; }
.tel-ico svg{ width: 13px; height: 13px; color: var(--accent); }


.faq{ max-width: 920px; margin: 0 auto; }
.faq details{
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary{
  list-style: none;
  display:flex; align-items:center; justify-content: space-between; gap: 24px;
  cursor: default;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary .ix{ font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); letter-spacing: .14em; }
.faq summary .pl{ width: 18px; height: 18px; position: relative; flex: 0 0 18px; }
.faq summary .pl::before, .faq summary .pl::after{
  content:""; position:absolute; left:0; top:50%; width:18px; height:1px;
  background: var(--ink); transform: translateY(-50%);
  transition: transform .25s;
}
.faq summary .pl::after{ transform: translateY(-50%) rotate(90deg); }
.faq details[open] summary .pl::after{ transform: translateY(-50%) rotate(0); }
.faq details[open] summary .pl::before{ background: var(--accent); }
.faq details p{ margin-top: 16px; max-width: 70ch; font-size: 15px; }


.sponsors{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.sponsors .sp{
  aspect-ratio: 2/1;
  display:grid; place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.sponsors .sp:nth-child(4n){ border-right: 0; }
.sponsors .sp:nth-last-child(-n+4){ border-bottom: 0; }
.sponsors .sp img{
  max-width: 60%; max-height: 60%; object-fit: contain;
  filter: grayscale(1) brightness(1.4) contrast(.6);
  opacity: .55;
  transition: filter .3s, opacity .3s, transform .3s;
}
.sponsors .sp:hover img{ filter: none; opacity: 1; transform: scale(1.05); }


.contact-wrap{
  display:grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
}
.contact-info-list{ display:flex; flex-direction: column; gap: 22px; }
.contact-info-list .row{
  display:grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.contact-info-list .row:last-child{ border-bottom: 1px solid var(--line); }
.contact-info-list .ico{
  width: 32px; height: 32px; border-radius: 4px;
  display:grid; place-items:center;
  border: 1px solid var(--line-2);
  color: var(--accent);
}
.contact-info-list .lab{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.contact-info-list .val{ font-size: 16px; color: var(--ink); }
.contact-info-list .val a{ color: var(--ink); }
.contact-info-list .val a:hover{ color: var(--accent); }
.contact-info-list .ico svg{ width: 17px; height: 17px; }
.contact-form{
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
}
.contact-form .field{ margin-bottom: 14px; }
.contact-form label{
  display:block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea{
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink); padding: 10px 0;
  font: inherit; font-size: 15px;
  outline: none;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus{ border-bottom-color: var(--accent); }
.contact-form textarea{ resize: vertical; min-height: 100px; }
.contact-form .row2{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form .submit{
  margin-top: 18px;
  display:flex; justify-content: space-between; align-items: center;
}


footer.foot{
  border-top: 1px solid var(--line);
  padding: 80px 0 28px;
  background: linear-gradient(180deg, transparent, rgba(var(--accent-glow),.04));
}
footer .grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
footer .col h3{
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
  margin: 0 0 16px;
}
footer .col ul{ list-style:none; margin: 0; padding: 0; display:flex; flex-direction: column; gap: 10px; }
footer .col li{ font-size: 15px; color: var(--ink-dim); }
footer .col li:hover{ color: var(--ink); }
footer .col li a{ color: inherit; text-decoration: none; transition: color .2s; }
footer .col li a:hover{ color: var(--accent); }
.foot-contact a{ color: inherit; text-decoration: none; transition: color .2s; }
.foot-contact a:hover{ color: var(--accent); }
footer .bottom{
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display:flex; align-items:center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  color: var(--ink-faint);
  flex-wrap: wrap; gap: 16px;
}
.foot-link{ display:inline-flex; align-items:center; gap: 6px; color: var(--ink-faint); transition: color .2s; }
.foot-link:hover{ color: var(--accent); }
.foot-link svg{ width: 13px; height: 13px; }
footer .bigword{
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -.04em;
  line-height: .85;
  color: transparent;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.02));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.42);
  white-space: nowrap;
  overflow: hidden;
  margin-top: 80px;
  text-align: center;
}


.fade-up{ opacity: 1; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in{ opacity: 1; transform: none; }
.js-reveal .fade-up:not(.in){ opacity: 0; }

@media (max-width: 1000px){
  .svc-grid{ grid-template-columns: 1fr; }
  .tri-grid{ grid-template-columns: 1fr; }
  .map-wrap{ grid-template-columns: 1fr; }
  .contact-wrap{ grid-template-columns: 1fr; gap: 24px; }
  .stats{ grid-template-columns: 1fr 1fr; }
  .stats .cell:nth-child(2){ border-right: 0; }
  .stats .cell{ border-bottom: 1px solid var(--line); }
  footer .grid{ grid-template-columns: 1fr 1fr; }
  footer .bigword{ font-size: min(13.5vw, 220px); margin-top: 48px; }
  .nav-mobile-toggle{ display: flex; }
  .nav ul{
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(5,5,5,.97);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav.mobile-open ul{ display: flex; }
  .nav ul li{ width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav ul li.nav-mobile-only{
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border-bottom: 0; padding-top: 18px;
  }
  .nav-actions .lang, .nav-actions .cta{ display: none; }
  .gallery{ height: auto; }
  .container{ padding: 0 20px; }
}
