/* ============================================================
   Jurre's Garage — Stylesheet
   Dark, modern garage aesthetic with electric orange + cyan
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg: #07070d;
  --bg-alt: #0e0e18;
  --card: #12121e;
  --card-hover: #1a1a2e;
  --border: #1e1e32;
  --text: #f0f0f5;
  --text-muted: #6b6b80;
  --primary: #ff5e00;
  --primary-glow: rgba(255, 94, 0, 0.25);
  --secondary: #00c2ff;
  --secondary-glow: rgba(0, 194, 255, 0.25);
  --danger: #e63946;
  --success: #2ec4b6;
  --whatsapp: #25d366;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 70px;
  --radius: 16px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-width: thin; scrollbar-color: var(--primary) var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease-smooth); }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ff7a2e; }

/* ── Noise Overlay ─────────────────────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.03;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, rgba(255,255,255,0.12) 0, transparent 1px),
    repeating-radial-gradient(circle at 62% 78%, rgba(255,255,255,0.08) 0, transparent 1px),
    repeating-radial-gradient(circle at 89% 14%, rgba(255,255,255,0.15) 0, transparent 1px);
  background-size: 3px 3px, 4px 4px, 5px 5px;
}

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor { display: none; }

@media (hover: hover) {
  .cursor { display: block; }

  body:not(.no-cursor) { cursor: none; }
  body:not(.no-cursor) a,
  body:not(.no-cursor) button,
  body:not(.no-cursor) [role="button"] { cursor: none; }
  body:not(.no-cursor) input,
  body:not(.no-cursor) textarea { cursor: text; }
  body:not(.no-cursor) select { cursor: pointer; }

  .cursor__dot {
    width: 0; height: 0;
    position: fixed; top: 0; left: 0; z-index: 10001;
    pointer-events: none; will-change: transform;
  }

  .cursor__dot::before {
    content: '';
    position: absolute; top: -4px; left: -4px;
    width: 8px; height: 8px;
    background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 10px 2px var(--primary-glow);
    transition: top 0.25s var(--ease-out-expo), left 0.25s var(--ease-out-expo),
                width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo),
                background 0.25s, box-shadow 0.25s, opacity 0.25s;
  }

  .cursor__ring {
    width: 0; height: 0;
    position: fixed; top: 0; left: 0; z-index: 10000;
    pointer-events: none; will-change: transform;
  }

  .cursor__ring::before {
    content: '';
    position: absolute; top: -18px; left: -18px;
    width: 36px; height: 36px;
    background-color: var(--primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill-rule='evenodd' d='M41 16L43 3L57 3L59 16L68 20L78 12L88 22L80 32L84 41L97 43L97 57L84 59L80 68L88 78L78 88L68 80L59 84L57 97L43 97L41 84L32 80L22 88L12 78L20 68L16 59L3 57L3 43L16 41L20 32L12 22L22 12L32 20ZM50 34A16 16 0 0 1 50 66A16 16 0 0 1 50 34Z' fill='white'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill-rule='evenodd' d='M41 16L43 3L57 3L59 16L68 20L78 12L88 22L80 32L84 41L97 43L97 57L84 59L80 68L88 78L78 88L68 80L59 84L57 97L43 97L41 84L32 80L22 88L12 78L20 68L16 59L3 57L3 43L16 41L20 32L12 22L22 12L32 20ZM50 34A16 16 0 0 1 50 66A16 16 0 0 1 50 34Z' fill='white'/%3E%3C/svg%3E") no-repeat center / contain;
    opacity: 0.4;
    animation: cursorSpin 8s linear infinite;
    transition: top 0.35s var(--ease-out-expo), left 0.35s var(--ease-out-expo),
                width 0.35s var(--ease-out-expo), height 0.35s var(--ease-out-expo),
                background-color 0.3s, opacity 0.3s;
  }

  body.cursor--link .cursor__dot::before {
    top: -3px; left: -3px;
    width: 6px; height: 6px;
    background: var(--secondary);
    box-shadow: 0 0 18px 4px var(--secondary-glow);
  }

  body.cursor--link .cursor__ring::before {
    top: -26px; left: -26px;
    width: 52px; height: 52px;
    background-color: var(--secondary);
    opacity: 0.2;
    animation-duration: 3s;
  }

  body.cursor--click .cursor__dot::before {
    top: -7px; left: -7px;
    width: 14px; height: 14px;
    opacity: 0.5;
    box-shadow: 0 0 24px 8px var(--primary-glow);
  }

  body.cursor--click .cursor__ring::before {
    opacity: 0;
  }

  @keyframes cursorSpin {
    to { transform: rotate(360deg); }
  }
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 7, 13, 0.7);
  border-bottom: 1px solid rgba(30, 30, 50, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: rgba(7, 7, 13, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav__logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.15rem; letter-spacing: -0.02em;
  z-index: 1001;
}

.nav__logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg), var(--bg)), var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform 0.4s var(--ease-out-expo);
  font-size: 1.1rem;
}

.nav__logo:hover .nav__logo-icon {
  animation: spin-once 0.6s var(--ease-out-expo);
}

@keyframes spin-once {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.8rem;
  line-height: 1.1; letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav__links {
  display: flex; align-items: center; gap: 2rem;
}

.nav__link {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
  position: relative; padding: 0.25rem 0;
  transition: color 0.3s var(--ease-smooth);
}

.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__link.is-active { color: var(--primary); }
.nav__link.is-active::after { width: 100%; background: var(--primary); }

.nav__arrow { font-size: 0.6em; margin-left: 0.25rem; transition: transform 0.3s; }

.nav__dropdown { position: relative; }

.nav__dropdown-menu {
  position: absolute; top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 200px; background: var(--card);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 0.5rem; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute; top: -14px; left: 0; right: 0;
  height: 14px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block; padding: 0.75rem 1rem;
  border-radius: 8px; font-size: 0.8rem; font-weight: 500;
  transition: background 0.2s ease; color: var(--text-muted);
}

.nav__dropdown-link:hover { background: var(--card-hover); color: var(--text); }
.nav__dropdown-link.is-active { color: var(--primary); }

/* Hamburger */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; z-index: 1001;
}

.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed; inset: 0;
    background: rgba(7, 7, 13, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2.5rem; opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 1rem; letter-spacing: 0.15em; }

  .nav__dropdown-menu {
    position: static; transform: none;
    max-height: 0; overflow: hidden; opacity: 1; pointer-events: auto;
    padding: 0; border: none; box-shadow: none; background: transparent;
    transition: max-height 0.4s ease;
  }

  .nav__dropdown.is-open .nav__dropdown-menu { max-height: 300px; padding: 0.5rem 0; }
  .nav__dropdown.is-open .nav__arrow { transform: rotate(180deg); }
}

/* ── Transition Overlay ────────────────────────────────────── */
.transition-overlay {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; overflow: hidden;
}

/* Garage door container */
.garage-door {
  position: absolute; left: 0; right: 0;
  bottom: 0;
  height: 100%;
  display: flex; flex-direction: column;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  will-change: transform;
}

/* Roller at the top */
.garage-door__roll {
  flex-shrink: 0; height: 24px;
  background: #1a1a2e;
  border-bottom: 2px solid #2a2a40;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  position: relative;
}

.garage-door__roll::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 12px;
  border-radius: 6px;
  background: #2a2a40;
  border: 1px solid #3a3a50;
}

/* Individual door panels */
.garage-door__panel {
  flex: 1;
  background: linear-gradient(180deg, #161626 0%, #111120 50%, #0e0e1c 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-top: 1px solid rgba(0,0,0,0.3);
  position: relative;
}

.garage-door__panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.02) 0%,
    rgba(255,255,255,0.04) 20%,
    rgba(255,255,255,0.04) 80%,
    rgba(255,255,255,0.02) 100%
  );
}

.garage-door__panel:nth-child(even)::before {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.01) 0%,
    rgba(255,255,255,0.03) 20%,
    rgba(255,255,255,0.03) 80%,
    rgba(255,255,255,0.01) 100%
  );
}

/* Handle bar at the bottom */
.garage-door__handle {
  flex-shrink: 0; height: 28px;
  background: linear-gradient(180deg, #1e1e32 0%, #161628 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
}

.garage-door__handle span {
  display: block;
  width: 60px; height: 4px;
  border-radius: 2px;
  background: var(--primary);
  opacity: 0.7;
  box-shadow: 0 0 12px var(--primary-glow);
}

/* Door rolls UP to reveal */
.transition-overlay.is-leaving .garage-door {
  transform: translateY(-110%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Particles ─────────────────────────────────────────────── */
.particles {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 900px; text-align: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}

.hero__title-line { display: block; }

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted); line-height: 1.7;
  max-width: 550px; margin: 0 auto 2.5rem;
}

.hero__cta {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__scroll {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; color: var(--text-muted);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0 0 1rem;
  margin-top: -3rem;
  animation: scrollBounce 2s ease-in-out infinite;
  pointer-events: none;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Page hero (products/contact) */
.page-hero {
  min-height: 50vh; min-height: 50svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 3rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700; line-height: 0.95;
}

.page-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted); line-height: 1.7;
  max-width: 550px; margin-top: 1rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden; white-space: nowrap;
  gap: 0.5rem;
}

.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.6s ease;
}

.btn:hover::after { transform: translateX(100%); }

.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 24px var(--primary-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.btn--outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.btn--lg { padding: 1.1rem 2.8rem; font-size: 0.85rem; }
.btn--block { display: flex; width: 100%; margin-bottom: 0.75rem; }

/* ── Sections ──────────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
  max-width: none;
  padding-left: 2rem; padding-right: 2rem;
}

.section--alt > .section__label,
.section--alt > .section__title,
.section--alt > .section__desc,
.section--alt > .services-detail-grid,
.section--alt > .products-grid,
.section--alt > span,
.section--alt > h2,
.section--alt > div {
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

.section__label {
  display: block; text-align: center;
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--primary); margin-bottom: 1rem;
}

.section__title {
  display: block; text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 3rem;
}

.section__desc {
  display: block; text-align: center;
  color: var(--text-muted); margin-top: -2rem; margin-bottom: 3rem;
  line-height: 1.7; font-size: 1rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

.section__action {
  text-align: center; margin-top: 2.5rem;
}

@media (min-width: 1025px) {
  .section { padding: 7rem 2rem; }
}

/* ── Grids ─────────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vehicles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.products-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

.services-detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .products-grid--full { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid,
  .vehicles-grid,
  .products-grid,
  .products-grid--full,
  .services-detail-grid { grid-template-columns: 1fr; }
}

/* ── Vehicle Cards ─────────────────────────────────────────── */
.vehicle-card {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  padding: 2rem; cursor: pointer;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  min-height: 320px;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent, var(--primary));
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(255, 94, 0, 0.1);
}

.vehicle-card__svg {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 1rem; margin-bottom: 1rem;
}

.vehicle-card__svg svg {
  width: 100%; max-width: 280px; height: auto;
  color: var(--text);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-card__svg svg {
  transform: scale(1.05) rotate(-1deg);
}

.vehicle-card__accent {
  height: 3px; width: 40px;
  background: var(--accent, var(--primary));
  border-radius: 2px; margin-bottom: 1rem;
  transition: width 0.4s ease;
}

.vehicle-card:hover .vehicle-card__accent { width: 80px; }

.vehicle-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 700;
}

.vehicle-card__tagline {
  font-size: 0.82rem; color: var(--text-muted);
  margin-top: 0.25rem; line-height: 1.5;
}

.vehicle-card__arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.2rem; color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.vehicle-card:hover .vehicle-card__arrow {
  transform: translateX(4px); color: var(--accent, var(--primary));
}

.tilt__shine {
  position: absolute; inset: 0; z-index: 1;
  border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity 0.3s ease;
}

/* ── Service Cards ─────────────────────────────────────────── */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--svc-color, var(--primary));
  opacity: 0.5;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--svc-color, var(--primary)) 40%, transparent);
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.25),
    0 0 30px color-mix(in srgb, var(--svc-color, var(--primary)) 10%, transparent);
}

.service-card:hover::before {
  opacity: 1;
  height: 3px;
}

.service-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: color-mix(in srgb, var(--svc-color, var(--primary)) 10%, transparent);
  color: var(--svc-color, var(--primary));
  transition: all 0.4s ease;
}

.service-card:hover .service-card__icon-wrap {
  background: color-mix(in srgb, var(--svc-color, var(--primary)) 18%, transparent);
  transform: scale(1.08);
}

.service-card__icon {
  display: block; width: 22px; height: 22px;
}

.service-card__icon svg {
  width: 100%; height: 100%;
}

.service-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 0.35rem;
}

.service-card__desc {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.6;
}

/* Service detail cards (vehicle pages) */
.service-detail-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all 0.35s ease;
}

.service-detail-card:hover {
  border-color: var(--accent, var(--primary));
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.service-detail-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 600;
}

.service-detail-card__desc {
  font-size: 0.82rem; color: var(--text-muted);
  margin-top: 0.4rem; line-height: 1.6;
}

.service-detail-card__price {
  display: inline-block; margin-top: 1rem;
  font-weight: 600; color: var(--primary); font-size: 0.9rem;
}

.service-detail-card__book {
  display: block; margin-top: 0.75rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.service-detail-card:hover .service-detail-card__book {
  color: var(--accent, var(--primary));
}

/* ── Product Cards ─────────────────────────────────────────── */
.product-card {
  background: var(--card); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 20px var(--primary-glow);
  border-color: var(--primary);
}

.product-card__svg {
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.product-card__svg svg {
  width: 100%; height: 100%; color: var(--text);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__svg svg { transform: scale(1.1); }

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
}

.product-card__tagline {
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 0.25rem;
}

.product-card__tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 1rem; justify-content: center;
}

.product-card--full {
  align-items: center;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 0.2rem 0.65rem; border-radius: 50px;
  background: var(--bg); font-size: 0.65rem;
  color: var(--text-muted); border: 1px solid var(--border);
  font-weight: 500;
}

.tag--link {
  transition: border-color 0.3s, color 0.3s;
}

.tag--link:hover {
  border-color: var(--accent, var(--primary));
  color: var(--accent, var(--primary));
}

/* ── Vehicle Hero ──────────────────────────────────────────── */
.vehicle-hero {
  min-height: 70vh; min-height: 70svh;
  display: flex; align-items: center; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  max-width: 1200px; margin: 0 auto;
}

.vehicle-hero__content { flex: 1; min-width: 280px; }

.vehicle-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 0.95;
  margin-bottom: 1rem;
}

.vehicle-hero__tagline {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.6; max-width: 450px;
}

.vehicle-hero__svg {
  flex: 0 0 auto; max-width: 400px; width: 100%;
  animation: float 5s ease-in-out infinite;
}

.vehicle-hero__svg svg {
  width: 100%; height: auto; color: var(--text);
}

@media (max-width: 768px) {
  .vehicle-hero {
    flex-direction: column-reverse; text-align: center;
    min-height: auto; gap: 2rem;
  }
  .vehicle-hero__svg { max-width: 280px; }
  .vehicle-hero__tagline { margin: 0 auto; }
}

/* ── Vehicle Story ─────────────────────────────────────────── */
.vehicle-story {
  max-width: 800px; margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.vehicle-story__content p {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 1.5rem;
}

.vehicle-story__first::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.5em; font-weight: 700; line-height: 0.8;
  margin-right: 0.15em; margin-top: 0.05em;
  color: var(--primary);
}

/* ── Product Hero ──────────────────────────────────────────── */
.product-hero {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 3rem;
}

.product-hero__svg {
  width: 160px; height: 160px;
  margin-bottom: 2rem;
  animation: float 5s ease-in-out infinite;
}

.product-hero__svg svg {
  width: 100%; height: 100%; color: var(--text);
}

.product-hero__content { max-width: 600px; }

.product-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

.product-hero__tagline {
  font-size: 1.1rem; color: var(--text-muted); margin-top: 0.5rem;
}

/* ── Product Detail ────────────────────────────────────────── */
.product-detail {
  max-width: 1000px; margin: 0 auto; padding: 0 2rem 4rem;
}

.product-detail__grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 4rem;
}

@media (max-width: 768px) {
  .product-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.product-detail__info {}

.product-detail__desc {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-muted);
}

.product-detail__features-title {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600;
  margin-top: 2rem; margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-list { margin-top: 0.5rem; }

.feature-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text-muted);
}

.feature-check {
  color: var(--primary); font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}

.product-detail__sidebar {
  position: sticky; top: calc(var(--nav-h) + 2rem);
  align-self: start;
}

.product-detail__box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}

.product-detail__box-title {
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 0.75rem;
}

.product-detail__vehicles {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-detail__price {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 700;
  color: var(--primary); margin-bottom: 1.5rem;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1000px; margin: 0 auto;
}

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

.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.contact-item:hover { border-color: var(--primary); }

.contact-item__icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border-radius: 10px;
  border: 1px solid var(--border);
}

.contact-item__label {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-muted); margin-bottom: 0.25rem;
}

.contact-item__value {
  font-weight: 500; font-size: 0.95rem;
}

.contact-item__value a { transition: color 0.3s; }
.contact-item__value a:hover { color: var(--primary); }

.contact-hours { margin-top: 1.5rem; }

.contact-hours__title {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem;
}

.contact-hours__table {
  width: 100%;
}

.contact-hours__table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.contact-hours__table td:first-child { color: var(--text-muted); }
.contact-hours__table td:last-child { text-align: right; font-weight: 500; }

.contact-map {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}

.contact-map__placeholder {
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; padding: 2rem;
  background: var(--bg-alt);
}

.contact-map__pin { font-size: 2.5rem; opacity: 0.5; }

.contact-map__text {
  font-size: 0.9rem; color: var(--text-muted);
  text-align: center; line-height: 1.5;
}

.contact-map__text strong { color: var(--text); }

.contact-map__address {
  font-size: 0.8rem; color: var(--text-muted);
}

.contact-cta {
  padding: 1.5rem;
}

.contact-preset {
  max-width: 600px; margin: 0 auto 2rem;
  padding: 1rem 1.5rem; border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  text-align: center;
}

.contact-preset__text {
  font-size: 0.9rem; color: var(--text-muted);
}

.contact-preset__text strong {
  color: var(--primary); font-weight: 600;
}

/* ── Stats ─────────────────────────────────────────────────── */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats {
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap; padding: 2rem 0;
}

.stat { text-align: center; min-width: 120px; }

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1;
}

.stat__label {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.marquee__inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee__text {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-muted);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--bg-alt);
  max-width: none;
}

.cta {
  text-align: center; padding: 5rem 2rem;
  max-width: 700px; margin: 0 auto;
  position: relative;
}

.cta::before, .cta::after {
  content: ''; position: absolute; left: -100vw; right: -100vw;
  height: 1px; background: var(--gradient);
}

.cta::before { top: 0; }
.cta::after { bottom: 0; }

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700; margin-bottom: 0.75rem;
}

.cta__desc {
  color: var(--text-muted); margin-bottom: 2rem;
  font-size: 1rem;
}

.cta__buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.cta__note {
  display: block; margin-top: 1.25rem;
  font-size: 0.75rem; color: var(--text-muted); opacity: 0.7;
}

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  width: 80px; height: 3px; margin: 0 auto;
  background: var(--gradient); border-radius: 2px;
}

/* ── Back Link ─────────────────────────────────────────────── */
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.82rem;
  font-weight: 500;
  padding: calc(var(--nav-h) + 1.5rem) 2rem 0;
  max-width: 1200px; margin: 0 auto;
  transition: color 0.3s;
}

.back-link:hover { color: var(--text); }
.back-link span { transition: transform 0.3s; display: inline-block; }
.back-link:hover span { transform: translateX(-4px); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt); padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto;
}

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

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

.footer__col {}

.footer__logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer__logo-icon {
  font-size: 1.5rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1rem;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 1.25rem; color: var(--text);
}

.footer__desc {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.6; margin-top: 0.5rem;
}

.footer__link {
  display: block; font-size: 0.85rem;
  color: var(--text-muted); padding: 0.3rem 0;
  transition: color 0.3s;
}

.footer__link:hover { color: var(--primary); }
.footer__link--static { cursor: default; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem; margin-top: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin-left: auto; margin-right: auto;
  font-size: 0.78rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 1rem;
}

.footer__copy {}

.footer__socials { display: flex; gap: 0.75rem; }

.footer__social {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--text-muted);
}

.footer__social:hover {
  border-color: var(--primary); background: var(--card-hover);
  transform: translateY(-2px); color: var(--text);
}

.footer__social svg { width: 18px; height: 18px; }

/* ── 404 ───────────────────────────────────────────────────── */
.page-404 {
  min-height: 80vh; display: flex;
  align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}

.page-404__content { }

.page-404__icon {
  font-size: 4rem; display: block; margin-bottom: 1rem;
  opacity: 0.5;
}

.page-404__title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700; line-height: 1; opacity: 0.15;
}

.page-404__text {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 600;
  margin-top: -0.5rem;
}

.page-404__desc {
  color: var(--text-muted); margin: 0.75rem 0 2rem;
}

/* ── Animations ────────────────────────────────────────────── */

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.is-visible { opacity: 1; transform: none; }

/* Float */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Gradient text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tilt */
.tilt { will-change: transform; }

/* Page enter */
.page-enter { animation: pageEnter 0.5s var(--ease-out-expo) forwards; }

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Vehicle SVG styling */
.vehicle-svg { color: var(--text); }

/* SVG element transitions */
.vehicle-svg .svg-body,
.vehicle-svg .svg-light,
.vehicle-svg .svg-light-glow,
.vehicle-svg .svg-tail,
.vehicle-svg .svg-engine,
.vehicle-svg .wheel,
.vehicle-svg .svg-ground,
.vehicle-svg .svg-speed,
.product-svg .svg-body,
.product-svg .svg-light,
.product-svg .svg-light-glow,
.product-svg .svg-heat,
.product-svg .svg-signal {
  transition: fill 0.4s ease, stroke 0.4s ease, opacity 0.4s ease;
}

/* Vehicle card hover — accent colors */
.vehicle-card:hover .svg-body {
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.15 !important;
}
.vehicle-card:hover .svg-light {
  stroke: var(--accent, var(--primary)) !important;
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.25 !important;
}
.vehicle-card:hover .svg-light-glow {
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.7 !important;
}
.vehicle-card:hover .svg-tail {
  fill: #e63946 !important;
  opacity: 0.8 !important;
}
.vehicle-card:hover .svg-engine {
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.1 !important;
}

/* Vehicle hero page — accent colors always active */
.vehicle-hero__svg .svg-body {
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.1 !important;
}
.vehicle-hero__svg .svg-light {
  stroke: var(--accent, var(--primary)) !important;
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.2 !important;
}
.vehicle-hero__svg .svg-light-glow {
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.6 !important;
}
.vehicle-hero__svg .svg-tail {
  fill: #e63946 !important;
  opacity: 0.7 !important;
}
.vehicle-hero__svg .svg-engine {
  fill: var(--accent, var(--primary)) !important;
  opacity: 0.08 !important;
}

/* Product card hover — accent colors */
.product-card:hover .svg-body {
  fill: var(--primary) !important;
  opacity: 0.12 !important;
}
.product-card:hover .svg-heat {
  stroke: #ff5e00 !important;
  opacity: 0.8 !important;
}
.product-card:hover .svg-signal {
  stroke: #00c2ff !important;
  fill: #00c2ff !important;
  opacity: 0.7 !important;
}
.product-card:hover .svg-light {
  fill: var(--primary) !important;
  opacity: 0.2 !important;
}
.product-card:hover .svg-light-glow {
  fill: var(--primary) !important;
  opacity: 0.6 !important;
}

/* Product detail page — accent always active */
.product-hero__svg .svg-heat {
  stroke: #ff5e00 !important;
  opacity: 0.6 !important;
}
.product-hero__svg .svg-signal {
  stroke: #00c2ff !important;
  fill: #00c2ff !important;
  opacity: 0.5 !important;
}
.product-hero__svg .svg-body {
  fill: var(--primary) !important;
  opacity: 0.08 !important;
}
.product-hero__svg .svg-light-glow {
  fill: var(--primary) !important;
  opacity: 0.5 !important;
}

/* Wheel accent coloring on hover */
.vehicle-card:hover .wheel {
  stroke: var(--accent, var(--primary)) !important;
  opacity: 0.9;
}

/* Ground line + speed lines on hover */
@keyframes groundScroll {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -40; }
}

@keyframes speedPulse {
  0% { opacity: 0; transform: translateX(0); }
  20% { opacity: 0.45; }
  100% { opacity: 0; transform: translateX(40px); }
}

.vehicle-card:hover .svg-ground {
  opacity: 0.25 !important;
  stroke: var(--accent, var(--primary)) !important;
  animation: groundScroll 0.35s linear infinite;
}

.vehicle-card:hover .svg-speed {
  opacity: 0.3 !important;
  stroke: var(--accent, var(--primary)) !important;
  animation: speedPulse 0.55s ease-out infinite;
  animation-delay: var(--d, 0s);
}

/* Vehicle hero page — driving effect always active */
.vehicle-hero__svg .wheel {
  stroke: var(--accent, var(--primary)) !important;
  opacity: 0.8;
}

.vehicle-hero__svg .svg-ground {
  opacity: 0.2 !important;
  stroke: var(--accent, var(--primary)) !important;
  animation: groundScroll 0.4s linear infinite;
}

.vehicle-hero__svg .svg-speed {
  opacity: 0.2 !important;
  stroke: var(--accent, var(--primary)) !important;
  animation: speedPulse 0.65s ease-out infinite;
  animation-delay: var(--d, 0s);
}

/* Magnetic — handled by JS, no extra CSS needed */

/* ── Plate Editor ──────────────────────────────────────────── */
.plate-editor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.plate-editor__preview {
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}

.plate-editor__svg {
  width: 280px;
  max-width: 100%;
}

.plate-editor__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.plate-editor__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.plate-editor__input {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  width: 240px;
  max-width: 100%;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.plate-editor__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.plate-editor__input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: none;
}

/* ── Motor Lift ────────────────────────────────────────────── */
.motor-lift-section {
  overflow: hidden;
  text-align: center;
}

.motor-lift {
  max-width: 700px;
  margin: 2rem auto 0;
}

.motor-lift__svg {
  width: 100%;
  transform: rotateX(5deg);
  transform-origin: center bottom;
  perspective: 1000px;
}

.motor-lift__platform {
  transform: translateY(calc((1 - var(--lift, 0)) * 120px));
  will-change: transform;
}

@media (max-width: 640px) {
  .plate-editor__svg { width: 220px; }
  .plate-editor__input { font-size: 1.2rem; width: 200px; padding: 0.6rem 1rem; }
  .motor-lift { max-width: 100%; }
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee__inner { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll { animation: none; }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .nav, .cursor, .noise, .particles,
  .transition-overlay, .hero__scroll,
  .marquee { display: none; }

  body { background: #fff; color: #000; }
  .section, .hero { padding: 2rem 1rem; min-height: auto; }
}
