:root {
  --lime: #afd11f;
  --lime-2: #d7f05d;
  --charcoal: #111514;
  --panel: #1d2220;
  --ink: #171a19;
  --muted: #69706d;
  --line: #dce2dd;
  --soft: #f4f6f2;
  --soft-2: #e9eee8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 21, 20, 0.16);
  --max: 1220px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

::selection {
  color: var(--charcoal);
  background: var(--lime);
}

:focus-visible {
  outline: 3px solid rgba(175, 209, 31, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--charcoal);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 42px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 21, 20, 0.9), rgba(17, 21, 20, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.main-nav,
.hero-actions,
.finder-bar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 38px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.brand-mark svg {
  width: 42px;
  height: 28px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.main-nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.main-nav a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--white);
  border-color: var(--lime);
}

.header-actions {
  gap: 10px;
}

.btn,
.lang-toggle,
.segmented button {
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  font-weight: 800;
}

.btn:hover,
.lang-toggle:hover,
.segmented button:hover {
  transform: translateY(-1px);
}

.btn-lime {
  color: var(--charcoal);
  background: var(--lime);
  border-color: var(--lime);
}

.btn-lime:hover {
  background: var(--lime-2);
}

.btn-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--line);
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.lang-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 76px;
  padding: 3px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.lang-toggle span {
  display: grid;
  place-items: center;
  min-height: 30px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.lang-toggle span.is-active {
  color: var(--charcoal);
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 78px;
  bottom: 0;
  left: 0;
  width: min(56vw, 820px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.92) 94%, var(--white)),
    url("public/assets/hero-showroom.png") center center / cover no-repeat;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.95fr) minmax(360px, 0.9fr);
  align-content: center;
  gap: clamp(24px, 4vw, 52px);
  width: min(var(--max), calc(100% - 36px));
  min-height: 760px;
  margin: 0 auto;
  padding: 138px 0 58px;
  direction: ltr;
}

.hero-copy {
  grid-column: 2;
  align-self: end;
  max-width: 620px;
  direction: rtl;
  text-align: start;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero .btn-outline-light {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 21, 20, 0.22);
}

.hero .btn-outline-light:hover {
  background: var(--white);
  border-color: var(--charcoal);
}

.advisor-panel {
  grid-column: 2;
  align-self: start;
  max-width: 460px;
  margin-top: 10px;
  padding: 22px;
  color: var(--white);
  direction: rtl;
  text-align: start;
  background: linear-gradient(180deg, #202623, var(--charcoal));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.advisor-panel h2 {
  margin: 0;
  color: var(--lime);
  font-size: 26px;
}

.advisor-panel p {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.advisor-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisor-panel li {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: #141817;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-rail div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  min-height: 94px;
  padding: 20px clamp(18px, 4vw, 50px);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-rail div:last-child {
  border-inline-start: 0;
}

.rail-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--lime);
  border: 1px solid rgba(175, 209, 31, 0.55);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.rail-icon svg,
.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-rail strong {
  font-size: 17px;
}

.proof-rail small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.catalog {
  position: relative;
}

.catalog-head {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 320px);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.catalog h2,
.compare h2,
.visit h2,
.services-band h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
}

.catalog-head p,
.compare-copy p,
.services-band p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.call-card {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.call-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 80px rgba(17, 21, 20, 0.18);
}

.call-card span,
.call-card small {
  color: var(--muted);
}

.call-card strong {
  color: var(--charcoal);
  font-size: 34px;
  line-height: 1;
}

.finder-bar {
  position: sticky;
  top: 78px;
  z-index: 15;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(17, 21, 20, 0.08);
  backdrop-filter: blur(18px);
}

.search-field {
  display: grid;
  gap: 5px;
  min-width: min(250px, 100%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.search-field input {
  height: 42px;
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.search-field input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(175, 209, 31, 0.18);
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.segmented button {
  min-height: 42px;
  padding: 9px 15px;
  color: var(--muted);
  background: var(--white);
  border-color: var(--line);
  font-weight: 800;
}

.segmented button.is-active {
  color: var(--charcoal);
  background: var(--lime);
  border-color: var(--lime);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: 236px 1fr;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(17, 21, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(175, 209, 31, 0.7);
  box-shadow: 0 24px 70px rgba(17, 21, 20, 0.14);
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(17, 21, 20, 0.06), rgba(255, 255, 255, 0.3)),
    var(--soft-2);
}

.product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(var(--image-x, 0), var(--image-y, 0)) scale(var(--image-scale, 1));
  transform-origin: center center;
  filter: drop-shadow(0 14px 20px rgba(17, 21, 20, 0.12));
}

.product-type {
  position: absolute;
  z-index: 2;
  top: 12px;
  inset-inline-start: 12px;
  padding: 6px 9px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 21, 20, 0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.placeholder-bike {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(17, 21, 20, 0.24);
}

.placeholder-bike svg {
  width: min(74%, 250px);
  height: 140px;
}

.no-image {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.product-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: var(--white);
}

.product-body h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1;
}

.product-sub {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.product-summary {
  min-height: 42px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
  color: var(--charcoal);
}

.product-price strong {
  font-size: 27px;
  line-height: 1;
}

.product-price.has-discount strong {
  color: #c93636;
}

.product-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: line-through;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.product-meta div {
  min-height: 66px;
  padding: 11px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-meta strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.2;
}

.product-body .btn {
  margin-top: auto;
}

.services-band {
  color: var(--white);
  background: linear-gradient(180deg, #151918, #101312);
}

.services-inner {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 62px 0;
}

.services-band p {
  color: rgba(255, 255, 255, 0.62);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  min-height: 178px;
  padding: 20px 16px;
  background: var(--charcoal);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: #1b211f;
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--lime);
  border: 1px solid rgba(175, 209, 31, 0.55);
  border-radius: 8px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.05;
}

.service-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.compare {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.compare-copy {
  position: sticky;
  top: 122px;
}

.compare-copy .btn {
  margin-top: 24px;
}

.compare-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scrollbar-width: thin;
  scrollbar-color: var(--lime) var(--soft-2);
}

.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 17px 18px;
  text-align: start;
  border-bottom: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th {
  background: var(--soft);
  font-weight: 900;
}

.compare-table td {
  color: var(--muted);
  font-weight: 700;
}

.visit {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 70px;
  padding: 22px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(175, 209, 31, 0.08), rgba(255, 255, 255, 0.02)),
    #1a1f1d;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background:
    linear-gradient(35deg, transparent 0 48%, rgba(255, 255, 255, 0.18) 49% 51%, transparent 52%),
    linear-gradient(-35deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 49% 51%, transparent 52%),
    repeating-linear-gradient(90deg, transparent 0 74px, rgba(255, 255, 255, 0.06) 74px 76px);
  background-size: 210px 170px, 260px 180px, auto;
}

.map-pin {
  position: absolute;
  top: 46%;
  left: 47%;
  width: 34px;
  height: 34px;
  background: var(--lime);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 18px rgba(175, 209, 31, 0.12);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--charcoal);
  border-radius: 50%;
}

.map-card strong {
  position: absolute;
  inset-inline-start: 28px;
  bottom: 24px;
  font-size: 34px;
}

.visit-card {
  padding: 30px;
}

.visit-lines {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.visit-lines a {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.visit-lines span,
.hours-table th {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.visit-lines strong {
  font-size: 19px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 11px 0;
  text-align: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.hours-table td {
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(18px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.7);
  background: #090b0b;
  border-top: 3px solid var(--lime);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

html[dir="ltr"] .hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.92) 94%, var(--white)),
    url("public/assets/hero-showroom.png") center center / cover no-repeat;
}

html[dir="ltr"] .hero-copy,
html[dir="ltr"] .advisor-panel {
  direction: ltr;
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-inner,
  .catalog-head,
  .services-inner,
  .compare,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-content: end;
    min-height: 820px;
  }

  .hero-bg {
    width: 62vw;
  }

  .hero-copy,
  .advisor-panel {
    grid-column: 1;
    max-width: 600px;
    margin-inline-start: auto;
  }

  .advisor-panel,
  .compare-copy {
    align-self: auto;
    position: static;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 16px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    gap: 14px;
    overflow-x: auto;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    top: 108px;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 330px;
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.94) 88%, var(--white)),
      url("public/assets/hero-showroom.png") center top / cover no-repeat;
  }

  .hero-inner {
    min-height: auto;
    padding: 462px 0 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .proof-rail {
    grid-template-columns: 1fr;
  }

  .proof-rail div {
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-pad {
    width: min(100% - 28px, var(--max));
    padding: 56px 0;
  }

  .finder-bar {
    position: static;
    display: grid;
  }

  .search-field,
  .search-field input {
    width: 100%;
  }

  .segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 230px 1fr;
  }

  .product-meta {
    grid-template-columns: 1fr;
  }

  .visit {
    width: min(100% - 28px, var(--max));
    padding: 14px;
  }

  .map-card {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
  }
}
