/* ========= RESET & BASE ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0a0a0a;
  background: #fafaf7;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.page-home { cursor: none; }
body.page-home button, body.page-home a { cursor: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; color: inherit; cursor: pointer; }
ul { list-style: none; }

:root {
  --red: #E4002B;
  --black: #0a0a0a;
  --white: #fafaf7;
  --gray: #888;
  --light: #f0efea;
  --radius: 8px;
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
}

.container { max-width: 1360px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); }

/* ========= CURSOR ========= */
.cursor {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease);
  mix-blend-mode: difference;
  border-color: #fff;
}
.cursor.hover { width: 70px; height: 70px; }
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
@media (max-width: 900px) {
  body.page-home { cursor: auto; }
  body.page-home button, body.page-home a { cursor: pointer; }
  .cursor, .cursor-dot { display: none; }
}

/* ========= LOADER ========= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 10vw, 120px);
  color: #fff;
  letter-spacing: -0.04em;
  display: flex;
  gap: 2px;
  justify-content: center;
}
.loader-letter { display: inline-block; transform: translateY(100%); opacity: 0; }
.loader-bar {
  margin: 30px auto 0;
  width: min(300px, 60vw);
  height: 2px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
}

/* ========= NAV ========= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em;
}
.lang-btn { opacity: 0.4; transition: opacity 0.3s; }
.lang-btn.active { opacity: 1; }
.lang-btn:hover { opacity: 1; }
.lang-sep { opacity: 0.4; }
.nav-cta {
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--red); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
  .nav-cta { padding: 9px 16px; font-size: 12px; }
  .nav-logo span { display: none; }
}
@media (max-width: 380px) {
  .nav-cta { display: none; }
}

/* ========= BIKE SCENE ========= */
.bike-scene {
  height: 400vh;
  background: linear-gradient(180deg, #fafaf7 0%, #f0efea 50%, #fafaf7 100%);
  position: relative;
}
.bike-scene-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bike-scene-sun {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,0,43,0.18), rgba(228,0,43,0) 60%);
  pointer-events: none;
  will-change: transform;
}
.bike-scene-road {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0a0a0a 15%, #0a0a0a 85%, transparent);
  opacity: 0;
}
.bike-scene-road::before,
.bike-scene-road::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, #0a0a0a 0 24px, transparent 24px 48px);
  opacity: 0.3;
}
.bike-scene-road::before { top: 14px; }
.bike-scene-road::after { top: 28px; }

.bike-scene-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 max(20px, 4vw);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(10,10,10,0.09);
  pointer-events: none;
  text-align: center;
  overflow: hidden;
}
.scene-text {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  white-space: nowrap;
  max-width: calc(100% - 40px);
}

.bike-scene-bike {
  position: relative;
  width: clamp(260px, 38vw, 520px);
  z-index: 5;
  will-change: transform;
  transform: translateX(-150%);
}
.bike-svg { width: 100%; height: auto; display: block; }

.wheel {
  transform-origin: center;
  transform-box: fill-box;
  will-change: transform;
}

@media (max-width: 1024px) {
  .bike-scene { height: 320vh; }
}
@media (max-width: 700px) {
  .bike-scene { height: 240vh; }
  .bike-scene-sun { width: 280px; height: 280px; top: 18%; }
  .bike-scene-text { font-size: clamp(28px, 10vw, 64px); padding: 0 16px; }
  .bike-scene-road { bottom: 32%; }
  .bike-scene-bike { width: clamp(200px, 55vw, 340px); }
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--black);
  transform: translateX(4px);
}
.btn-ghost {
  border: 1px solid var(--black);
  color: var(--black);
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light:hover { background: var(--red); color: #fff; }
.btn-full { width: 100%; justify-content: center; padding: 18px; }

/* ========= HERO ========= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(20px, 3vw, 40px) 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-kicker .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 10vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(120%);
}
.hero-title .word.accent { color: var(--red); font-style: italic; }
.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 1.3vw, 20px);
  color: #444;
  margin-bottom: 40px;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--black));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-stats {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  gap: 40px;
  z-index: 2;
  opacity: 0;
}
.stat { text-align: right; }
.stat b {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.stat span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}
@media (max-width: 900px) {
  .hero { padding: 110px 20px 40px; min-height: auto; padding-bottom: 80px; }
  .hero-kicker { font-size: 11px; padding: 7px 14px; }
  .hero-stats { position: relative; right: 0; bottom: 0; margin-top: 40px; gap: 28px; flex-wrap: wrap; }
  .stat { text-align: left; }
  .stat b { font-size: 24px; }
  .hero-scroll { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-kicker { white-space: normal; text-align: left; line-height: 1.3; }
  .stat b { font-size: 22px; }
}

/* ========= MARQUEE ========= */
.marquee-section {
  background: var(--black);
  color: var(--white);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: marquee 30s linear infinite;
}
.marquee-track span:nth-child(even) { color: var(--red); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========= ABOUT ========= */
.about {
  background: var(--black);
  color: var(--white);
  height: 300vh;
  position: relative;
}
@media (max-width: 900px) { .about { height: 220vh; } }
.about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px, 3vw, 40px);
}
.about-text {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 40px;
}
.section-label.light { color: #888; }
.section-label span:first-child {
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-weight: 600;
}
.reveal-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 1100px;
}
.reveal-word {
  display: inline;
  color: rgba(255,255,255,0.15);
  transition: color 0.1s;
}
.reveal-word.active { color: #fff; }
.reveal-word.accent.active { color: var(--red); font-style: italic; }

/* ========= NUMBERS ========= */
.numbers {
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.num-card {
  padding: 40px 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.num-card:first-child { border-left: none; }
.num-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-block;
}
.num-suffix {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.num-label {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-card:nth-child(3) { border-left: none; }
}
@media (max-width: 500px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .num-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding: 30px 0; }
  .num-card:first-child { border-top: none; }
}

/* ========= SERVICES ========= */
.services {
  background: var(--white);
  padding: clamp(80px, 14vw, 140px) 0;
}
.section-head { margin-bottom: clamp(48px, 8vw, 80px); max-width: 900px; }
.section-head.center { text-align: center; margin: 0 auto clamp(48px, 8vw, 80px); }
.section-head.center .section-label { justify-content: center; display: inline-flex; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-lead {
  font-size: clamp(16px, 1.3vw, 20px);
  color: #555;
  margin-top: 24px;
  max-width: 700px;
}
.services-list { border-top: 1px solid rgba(0,0,0,0.1); }
.service-item {
  display: grid;
  grid-template-columns: 80px 280px 1fr 40px;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  transition: padding 0.4s var(--ease);
}
.service-item::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.service-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.service-item:hover { color: #fff; padding: 48px 32px; }
.service-item:hover .service-num,
.service-item:hover .service-title { color: #fff; }
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 15px;
  color: #555;
  max-width: 600px;
}
.service-item:hover .service-desc { color: rgba(255,255,255,0.9); }
.service-arrow {
  font-size: 24px;
  transition: transform 0.4s var(--ease);
}
.service-item:hover .service-arrow { transform: translateX(8px); }
@media (max-width: 900px) {
  .service-item { grid-template-columns: 60px 1fr; gap: 16px 20px; padding: 32px 0; }
  .service-item .service-title { grid-column: 2; }
  .service-item .service-desc { grid-column: 1 / -1; }
  .service-arrow { display: none; }
  .service-item:hover { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .service-item { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .service-item .service-title { grid-column: 1; }
  .service-item:hover { padding: 28px 16px; }
}

/* ========= BIKES HORIZONTAL ========= */
.bikes {
  background: var(--white);
  padding: clamp(60px, 10vw, 100px) 0 0;
  overflow: hidden;
}
.bikes-intro { padding-bottom: clamp(48px, 8vw, 80px); }
.bikes-scroll {
  height: 80vh;
  min-height: 560px;
  position: relative;
}
.bikes-track {
  display: flex;
  gap: 30px;
  height: 100%;
  padding: 0 clamp(20px, 3vw, 40px) 80px;
  will-change: transform;
}
.bike-card {
  flex: 0 0 440px;
  height: 100%;
  background: var(--light);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.bike-card:hover { transform: translateY(-8px); }
.bike-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.2em;
}
.bike-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.bike-card-svg { width: 100%; height: auto; }
.bike-card-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bike-card-info p {
  font-size: 14px;
  color: #666;
}
.bike-card-cta {
  background: var(--black);
  color: #fff;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
}
.bike-card-cta h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.bike-card-cta p {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 30px;
  max-width: 300px;
}
@media (max-width: 900px) {
  /* Switch to native horizontal swipe on touch — disables pin in JS */
  .bikes-scroll {
    height: auto;
    min-height: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .bikes-scroll::-webkit-scrollbar { display: none; }
  .bikes-track { padding: 0 20px 40px; gap: 20px; height: auto; }
  .bike-card {
    flex: 0 0 min(85vw, 360px);
    height: 520px;
    scroll-snap-align: start;
  }
  .bike-card-info h3 { font-size: 26px; }
  .bike-card-cta h3 { font-size: 28px; }
  .bike-card-cta { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .bike-card { height: 460px; padding: 24px; }
  .bike-card-img { padding: 20px; }
}

/* ========= EUROPE ========= */
.europe {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 14vw, 140px) 0;
}
.europe-head { max-width: 800px; margin-bottom: clamp(48px, 8vw, 80px); }
.europe-map-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}
.europe-map { width: 100%; height: auto; }
.map-outline { stroke-dasharray: 3000; stroke-dashoffset: 3000; }
.map-dots .dot { fill: #fff; opacity: 0; }
.map-line { stroke-dasharray: 500; stroke-dashoffset: 500; }
.dot-origin {
  filter: drop-shadow(0 0 10px var(--red));
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { r: 6; opacity: 1; }
  50% { r: 10; opacity: 0.7; }
}
.europe-facts { display: flex; flex-direction: column; gap: 30px; }
.fact {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
}
.fact-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.fact-label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}
@media (max-width: 900px) {
  .europe-map-wrap { grid-template-columns: 1fr; gap: 40px; }
  .europe-facts { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .fact { flex: 1; min-width: 140px; padding: 20px; }
}
@media (max-width: 480px) {
  .fact { min-width: calc(50% - 8px); padding: 16px; }
  .fact-num { font-size: 30px; }
  .fact-label { font-size: 11px; }
}

/* ========= PROCESS ========= */
.process {
  background: var(--white);
  padding: clamp(80px, 14vw, 140px) 0;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: left;
  padding: 30px 20px;
  border-top: 2px solid var(--black);
  position: relative;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.step-arrow {
  font-size: 24px;
  color: #ccc;
  padding-top: 40px;
}
@media (max-width: 900px) {
  .step-arrow { display: none; }
  .process-steps { gap: 16px; }
  .step { min-width: calc(50% - 8px); max-width: none; padding: 24px 0 0; }
}
@media (max-width: 480px) {
  .step { min-width: 100%; }
}

/* ========= CONTACT ========= */
.contact {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 14vw, 140px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 30px 0;
}
.contact-title .accent { color: var(--red); font-style: italic; }
.contact-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #aaa;
  max-width: 500px;
  margin-bottom: clamp(32px, 5vw, 60px);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  font-size: 15px;
}
.info-label {
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}
.info-row a:hover { color: var(--red); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 500;
}
.form-row input,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 8px 0;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--red); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form { padding: 30px 20px; gap: 20px; }
  .info-row { grid-template-columns: 90px 1fr; gap: 16px; font-size: 14px; }
}
@media (max-width: 480px) {
  .info-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ========= FOOTER ========= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.footer-brand p {
  color: #888;
  font-size: 14px;
  max-width: 300px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .footer { padding: 60px 0 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ========= UTILITIES ========= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* ========= SIMPLE PAGES (privacy / terms / 404) ========= */
.page-simple { background: var(--white); }
.page-simple .nav { background: rgba(250,250,247,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); }

.legal { padding-top: 100px; }
.legal-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 24px 0 16px;
}
.legal-meta {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.05em;
}
.legal-content { padding: 60px 0 100px; }
.legal-body { max-width: 800px; }
.legal-intro {
  font-size: clamp(17px, 1.4vw, 20px);
  color: #333;
  line-height: 1.6;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  color: var(--black);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 16px; }
.legal-body ul, .legal-body ol {
  margin: 16px 0 16px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.legal-body li { margin-bottom: 10px; padding-left: 4px; }
.legal-body ul li { list-style-type: disc; }
.legal-body ol li { list-style-type: decimal; }
.legal-body ol ul li { list-style-type: circle; }
.legal-body a { color: var(--red); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.legal-body a:hover { border-bottom-color: var(--red); }
.legal-body strong { color: var(--black); font-weight: 600; }
.legal-contact {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
  color: #666;
}

@media (max-width: 700px) {
  .legal { padding-top: 80px; }
  .legal-hero { padding: 48px 0 32px; }
  .legal-content { padding: 40px 0 60px; }
  .legal-body h2 { margin-top: 36px; }
}

/* ========= 404 PAGE ========= */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 60% 40%, rgba(228,0,43,0.06) 0%, transparent 60%), var(--white);
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
  pointer-events: none;
}
.error-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.error-code {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--black);
}
.error-digit { display: inline-block; }
.error-zero {
  width: clamp(110px, 20vw, 260px);
  height: clamp(110px, 20vw, 260px);
  position: relative;
}
.error-bike-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: wobble 3s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.error-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
}
.error-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #555;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}
.error-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
}
.error-links span { color: #888; margin-right: 8px; }
.error-links a {
  color: var(--black);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.error-links a:hover { border-bottom-color: var(--red); color: var(--red); }

@media (max-width: 900px) {
  .error-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .error-code { justify-content: flex-start; gap: 6px; }
}

.footer-compact { padding: 30px 0 !important; }
.footer-compact .footer-bottom { padding-top: 0; border: none; gap: 12px; }
.footer-compact a { color: #888; transition: color 0.3s; }
.footer-compact a:hover { color: var(--red); }

/* ========= COOKIE BANNER ========= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 500;
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.08);
  max-width: 1040px;
  margin: 0 auto;
  animation: cookieSlideUp 0.5s var(--ease);
}
@keyframes cookieSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
}
.cookie-banner-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cookie-banner-text p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.5;
  max-width: 620px;
}
.cookie-banner-text a { color: var(--red); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-cookie {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-cookie-reject {
  background: transparent;
  color: #ccc;
  border-color: rgba(255,255,255,0.2);
}
.btn-cookie-reject:hover { border-color: #fff; color: #fff; }
.btn-cookie-custom {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-cookie-custom:hover { background: rgba(255,255,255,0.15); }
.btn-cookie-save {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}
.btn-cookie-accept {
  background: var(--red);
  color: #fff;
}
.btn-cookie-accept:hover { background: #c0001f; }

@media (max-width: 900px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; border-radius: 16px; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .cookie-banner-actions { flex-wrap: wrap; }
  .btn-cookie { flex: 1; min-width: 100px; padding: 12px; }
}

/* ========= COOKIE MODAL ========= */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-inner {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  animation: modalUp 0.4s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
@keyframes modalUp {
  from { transform: translateY(30px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: pointer;
}
.cookie-modal-close:hover { background: rgba(0,0,0,0.1); }
.cookie-modal-head { margin-bottom: 32px; }
.cookie-modal-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 20px 0 12px;
}
.cookie-modal-head .section-label { color: var(--red); margin-bottom: 0; }
.cookie-modal-head .section-label span:first-child { border-color: var(--red); }
.cookie-modal-head p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cookie-category {
  padding: 20px;
  background: var(--light);
  border-radius: 12px;
  transition: background 0.3s;
}
.cookie-category-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.cookie-category-head h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cookie-category-head p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  max-width: 400px;
}
.cookie-always-on {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 100px;
  flex-shrink: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 100px;
  transition: background 0.3s;
}
.cookie-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.cookie-switch input:checked + .cookie-slider { background: var(--red); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
}
.cookie-modal-actions .btn-cookie { flex: 1; min-width: 120px; text-align: center; justify-content: center; display: inline-flex; align-items: center; }

@media (max-width: 700px) {
  .cookie-modal-inner { padding: 28px 20px; border-radius: 20px; max-height: 95vh; }
  .cookie-category { padding: 16px; }
  .cookie-category-head { flex-direction: column; gap: 12px; }
  .cookie-category-head p { max-width: none; }
  .cookie-modal-actions { flex-direction: column; }
  .cookie-modal-actions .btn-cookie { width: 100%; }
}
