/* ═══════════════════════════════════════════════
   KAYO eC2i — Dark Cinematic Design
   Inspired by Rivian / Cybertruck / Cake
   ═══════════════════════════════════════════════ */

:root {
  --bg: #000;
  --bg2: #0a0a0a;
  --bg3: #111;
  --text: #fff;
  --text2: #999;
  --text3: #555;
  --gold: #c8a84e;
  --gold2: #e0c878;
  --border: #1a1a1a;
  --border2: #2a2a2a;
  --radius: 6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold2); }
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--bg); }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }

/* ═══ NAV — Mobile First ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(200,168,78,0.15);
}

.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 20px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

/* Brand */
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo {
  height: 36px; width: auto;
  object-fit: contain;
}
.nav-brand-kayo {
  font-size: 0.95rem; font-weight: 800; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
}
.nav-brand-sep {
  font-size: 0.65rem; color: var(--text3); margin: 0 2px;
}
.nav-brand-tla {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 2px;
  color: var(--text3); text-transform: uppercase;
}

/* Links — hidden on mobile, shown on desktop */
.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text2);
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-link-cta {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.nav-right {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}

/* Language switcher — fixed bottom-right pill */
.lang-switch {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: flex; gap: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: 50px; padding: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.lang-btn {
  font-size: 0.7rem; font-weight: 600;
  padding: 6px 14px;
  background: none; border: none;
  color: var(--text3); cursor: pointer;
  border-radius: 50px; transition: all 0.25s;
  font-family: inherit; white-space: nowrap;
}

.lang-btn:hover { color: var(--text2); }
.lang-btn.active {
  color: var(--bg); background: var(--gold);
  box-shadow: 0 2px 8px rgba(200,168,78,0.3);
}

.nav-cta {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--bg);
  background: var(--gold); padding: 8px 18px;
  border-radius: var(--radius); transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold2); color: var(--bg); transform: translateY(-1px); }

/* Hamburger toggle */
.nav-toggle {
  background: none; border: 1px solid var(--border2);
  border-radius: 6px; cursor: pointer;
  padding: 8px 10px; display: flex;
  flex-direction: column; gap: 5px; align-items: center;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); transition: all 0.3s;
}
/* Open state */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══ S1: HERO ═══ */
.s-hero {
  height: 100vh; height: 100dvh;
  position: relative; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg);
}

.hero-bike {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.hero-bike img {
  width: 75vw; max-width: 900px;
  height: auto; opacity: 0.35;
  filter: drop-shadow(0 30px 60px rgba(200,168,78,0.08));
  transition: opacity 1.5s ease;
}

.s-hero.loaded .hero-bike img { opacity: 0.35; }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}

.hero-tag {
  font-size: 1rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800; line-height: 0.9;
  letter-spacing: -2px;
}

.hero-title-line {
  display: block;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.7s;
}

.hero-sub {
  font-size: 1.1rem; font-weight: 300;
  color: var(--text2); margin-top: 20px;
  letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.8s 1s forwards;
}

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); text-align: center;
  opacity: 0; animation: fadeUp 0.8s 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text3);
}

.scroll-arrow {
  width: 1px; height: 40px; margin: 12px auto 0;
  background: linear-gradient(to bottom, var(--text3), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══ S2: STATS ═══ */
.s-stats {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text3); margin-top: 12px;
}

/* ═══ S3: POWER ═══ */
.s-power {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 120px 40px;
}

.power-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.power-bg img {
  width: 80%; max-width: 1000px; height: auto;
  opacity: 0.08;
  filter: drop-shadow(0 0 80px rgba(200,168,78,0.05));
}

.power-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.power-text { max-width: 560px; }
.power-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}

.power-text p {
  font-size: 1.05rem; color: var(--text2);
  line-height: 1.7; max-width: 480px;
}

.power-features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 80px;
  border-top: 1px solid var(--border);
}

.power-feat {
  padding: 32px 0; padding-right: 24px;
  border-right: 1px solid var(--border);
}

.power-feat:last-child { border-right: none; }

.feat-num {
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); margin-bottom: 4px;
}

.feat-desc {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text3);
}

/* ═══ S1.5: VIDEO — Full-width Cinema ═══ */
.s-video {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.video-header { margin-bottom: 40px; }

.video-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
}

.video-cinema {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200,168,78,0.15);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.5),
    0 0 80px rgba(200,168,78,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.video-cinema iframe {
  width: calc(100% + 2px); height: calc(100% + 2px);
  margin: -1px;
  border: none; display: block;
  pointer-events: auto;
}

/* Hide YouTube logo watermark that appears on hover */
.video-cinema::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .s-video { padding: 80px 16px; }
  .video-cinema {
    max-width: 100%;
    border-radius: 16px;
  }
}

/* ═══ S4: DETAILS — Engineering Grid ═══ */
.s-details {
  padding: 100px 20px;
  overflow: hidden;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 60px;
  text-align: center;
}

.section-heading span { color: var(--gold); }

.details-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.eng-card {
  display: flex; flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.eng-card:hover {
  border-color: rgba(200,168,78,0.3);
  transform: translateY(-4px);
}

.eng-img-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 16px;
  min-height: 300px;
  background: radial-gradient(ellipse at center, rgba(200,168,78,0.06) 0%, transparent 65%);
  flex: 1;
}

.eng-part-img {
  width: 90%; max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(200,168,78,0.18));
  transition: transform 0.5s;
}

.eng-card:hover .eng-part-img { transform: scale(1.08); }

.eng-body { padding: 20px 24px 28px; }

.eng-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}

.eng-body h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 8px;
}

.eng-body p {
  font-size: 0.85rem; color: var(--text2);
  line-height: 1.65; margin-bottom: 16px;
}

.eng-specs {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.eng-specs span {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(200,168,78,0.08);
  border: 1px solid rgba(200,168,78,0.2);
  border-radius: 20px;
  color: var(--gold);
}

/* ═══ S5: MODES ═══ */
.s-modes {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.modes-strip {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}

.mode {
  display: grid; grid-template-columns: 100px 1fr 100px;
  align-items: center; gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.mode-name {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; color: var(--gold);
}

.mode-bar {
  height: 3px; background: var(--border);
  border-radius: 2px; overflow: hidden;
}

.mode-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mode.animated .mode-fill { width: var(--fill); }

.mode-speed {
  text-align: right; font-size: 1.1rem;
  font-weight: 700; font-variant-numeric: tabular-nums;
}

/* ═══ S6: COLORS ═══ */
.s-colors {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.colors-showcase {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 60px;
}

.colors-bike {
  position: relative; width: 100%;
  display: flex; justify-content: center;
}

.colors-bike img {
  width: 80%; max-width: 600px; height: auto;
  filter: drop-shadow(0 30px 60px rgba(200,168,78,0.1));
  transition: opacity 0.4s ease;
}

.colors-picker {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}

.color-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 20px 10px 12px;
  cursor: pointer; transition: all 0.2s;
  color: var(--text2); font-size: 0.8rem;
  font-family: inherit;
}

.color-btn:hover { border-color: var(--border2); color: var(--text); }
.color-btn.active { border-color: var(--gold); color: var(--text); }

.color-swatch {
  width: 20px; height: 20px;
  border-radius: 50%; flex-shrink: 0;
}

.color-name { font-weight: 500; }

/* ═══ S7: SPECS ═══ */
.s-specs {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.specs-columns {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.spec-col h3 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}

.spec-col dl { display: flex; flex-direction: column; gap: 0; }

.spec-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.spec-row dt { color: var(--text3); }
.spec-row dd { font-weight: 600; text-align: right; }

/* ═══ S8: RESERVE ═══ */
.s-reserve {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.reserve-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.reserve-left h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1;
  margin-bottom: 16px;
}

.reserve-left h2 span { color: var(--gold); }

.reserve-price {
  font-size: 3rem; font-weight: 800;
  color: var(--gold); margin-bottom: 4px;
}

.reserve-price-old {
  font-size: 1.4rem; font-weight: 500;
  color: var(--text3); text-decoration: line-through;
  margin-left: 12px;
}

.reserve-note {
  font-size: 0.85rem; color: var(--text3);
  margin-bottom: 20px;
}

/* ═══ STOCK COUNTER ═══ */
.stock-counter {
  margin-bottom: 40px;
  padding: 20px 24px;
  background: rgba(200,168,78,0.04);
  border: 1px solid rgba(200,168,78,0.15);
  border-radius: 12px;
}

.stock-bar-track {
  height: 6px;
  background: var(--border2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}

.stock-bar-fill {
  height: 100%;
  width: calc(var(--sold) / var(--total) * 100%);
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 3px;
  animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.stock-info {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; margin-bottom: 12px;
}

.stock-left {
  display: flex; align-items: baseline; gap: 8px;
}

.stock-num {
  font-size: 2rem; font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stock-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text3);
}

.stock-dots {
  display: flex; gap: 4px; flex-wrap: wrap;
  justify-content: flex-end;
}

.stock-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(200,168,78,0.15);
  border: 1px solid rgba(200,168,78,0.25);
  transition: all 0.3s;
}

.stock-dots .dot.sold {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 6px rgba(200,168,78,0.4);
}

.stock-urgency {
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold2);
  letter-spacing: 0.3px;
}

.reserve-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 1px;
}

.step-text {
  font-size: 0.9rem; color: var(--text2);
  line-height: 1.5; padding-top: 6px;
}

/* ═══ FORM ═══ */
.reserve-form {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text3); margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--gold);
}

.form-field select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field textarea { resize: vertical; min-height: 60px; }

.checkbox-label {
  display: flex !important; align-items: center; gap: 10px;
  cursor: pointer; text-transform: none !important;
  letter-spacing: 0 !important; font-size: 0.85rem !important;
  color: var(--text2) !important;
}

.checkbox-label input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }

.form-btn {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--bg);
  border: none; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}

.form-btn:hover { background: var(--gold2); transform: translateY(-1px); }
.form-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.form-msg {
  margin-top: 16px; padding: 12px 16px;
  border-radius: var(--radius); font-size: 0.85rem;
  display: none;
}

.form-msg.success { display: block; background: rgba(76,175,80,0.1); border: 1px solid #4caf50; color: #4caf50; }
.form-msg.error { display: block; background: rgba(244,67,54,0.1); border: 1px solid #f44336; color: #f44336; }

/* ═══ FOOTER ═══ */
.footer {
  padding: 60px 40px 30px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: start; margin-bottom: 40px;
}

.footer-brand strong {
  font-size: 0.8rem; letter-spacing: 3px;
  display: block; margin-bottom: 8px;
}

.footer-brand p { font-size: 0.8rem; color: var(--text3); margin-bottom: 4px; }
.footer-brand a { font-size: 0.8rem; color: var(--text3); }

.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text3);
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.7rem; color: var(--text3);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].visible {
  opacity: 1; transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .power-features { grid-template-columns: repeat(2, 1fr); }
  .power-feat { border-bottom: 1px solid var(--border); }
  .specs-columns { grid-template-columns: 1fr; gap: 40px; }
  .reserve-layout { grid-template-columns: 1fr; gap: 60px; }
}

/* ═══ DEALER BANNER ═══ */
.dealer-banner {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 99;
}
.dealer-badge { font-weight: 800; }
.dealer-sep { opacity: 0.4; }

/* ═══ HERO DEALER PILL ═══ */
.hero-dealer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: rgba(200,168,78,0.12);
  border: 1px solid rgba(200,168,78,0.35);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ═══ RESERVE — HOW IT WORKS ═══ */
.how-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}
.reserve-disclaimer {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(200,168,78,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.82rem;
  color: var(--gold2);
  line-height: 1.5;
}

/* ═══ OFFICIAL DEALER CARD ═══ */
.official-dealer-card {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
}
.odc-logo {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.odc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.odc-text strong {
  font-size: 0.95rem;
  color: var(--text);
}
.odc-text span {
  font-size: 0.75rem;
  color: var(--text2);
}
.odc-badge {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 3px;
}

/* ═══ DESKTOP (≥769px) ═══ */
@media (min-width: 769px) {
  .nav-inner { padding: 0 40px; height: 60px; }
  .nav-links { display: flex !important; }
  .nav-toggle { display: none !important; }

  /* Mobile dropdown never shows on desktop */
  .nav-links.open { position: static; flex-direction: row; background: none; padding: 0; }

  .s-video { padding: 120px 40px; }
  .s-details { padding: 120px 40px; }
  .details-grid { grid-template-columns: 1fr 1fr; }
  .eng-img-wrap { min-height: 340px; padding: 24px; }
  .eng-part-img { width: 95%; max-width: 480px; }
}

/* ═══ MOBILE (≤768px) ═══ */
@media (max-width: 768px) {
  /* Nav mobile dropdown */
  .nav-links.open {
    display: flex !important; flex-direction: column;
    position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(200,168,78,0.15);
    animation: navSlideDown 0.25s ease;
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .s-hero { height: 100vh; }
  .hero-bike img { width: 90vw; }
  .hero-title { letter-spacing: -1px; }
  .s-stats { padding: 60px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .s-power { padding: 80px 20px; }
  .power-features { grid-template-columns: 1fr 1fr; }
  .power-feat { border-right: none; }
  .power-feat:nth-child(odd) { border-right: 1px solid var(--border); }
  .s-modes { padding: 80px 20px; }
  .mode { grid-template-columns: 70px 1fr 70px; gap: 16px; }
  .s-colors { padding: 80px 20px; }
  .s-specs { padding: 80px 20px; }
  .s-reserve { padding: 80px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .reserve-form { padding: 24px; }
  .footer { padding: 40px 20px 20px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { gap: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .power-features { grid-template-columns: 1fr; }
  .power-feat { border-right: none !important; }
  .colors-picker { flex-direction: column; align-items: stretch; }
  .eng-img-wrap { padding: 16px 12px; min-height: 220px; }
  .eng-part-img { width: 90%; max-width: 320px; }
}
