:root {
  --bg: #060606;
  --bg-soft: #0d0d0f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.66);
  --accent: #e5362c;
  --accent-2: #ff5545;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1240px;
  --nav-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(229, 54, 44, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(229, 54, 44, 0.09), transparent 20%),
    var(--bg);
  color: var(--text);
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  backdrop-filter: blur(16px);
  background: rgba(6, 6, 6, 0.42);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}

.topbar.scrolled {
  background: rgba(6, 6, 6, 0.72);
  border-bottom-color: var(--line);
  height: 74px;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), #8f1711);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
  line-height: 1;
}

.brand-text small {
  font-size: 0.73rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  transition: color .25s ease;
}

.nav a:hover,
.text-link:hover,
.footer a:hover {
  color: #fff;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  cursor: pointer;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(229, 54, 44, 0.28);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.btn.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  padding: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  transition: .3s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 28px;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
  top: 23px;
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
  top: 23px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 30px);
  display: grid;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.56);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.78)),
    linear-gradient(to right, rgba(0,0,0,0.68), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: end;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #fff;
  opacity: 0.78;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  color: rgba(255,255,255,0.72);
}

.hero-desc {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat-card {
  min-width: 130px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.text-link {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.category-strip {
  margin-top: -36px;
  position: relative;
  z-index: 3;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.strip-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(15, 15, 17, 0.9);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}

.strip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,54,44,0.4);
}

.strip-icon {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.45);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
}

.strip-card strong {
  display: block;
  font-size: 1.05rem;
}

.strip-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.fleet-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  transition: .25s ease;
}

.filter-chip:hover,
.filter-chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.bike-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}

.bike-card:hover {
  border-color: rgba(229,54,44,0.45);
  box-shadow: 0 20px 50px rgba(229, 54, 44, 0.18);
}

#fleetGrid {
  perspective: 900px;
}

.bike-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #ffffff;  /* pure white — blends with bike image white background */
}

.bike-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px 18px 24px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.12));
}

.bike-card:hover .bike-media img {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.18));
}

.bike-card:hover .bike-media img {
  transform: scale(1.05);
}

.bike-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6,6,6,0.65);
  border: 1px solid var(--line);
  font-size: 0.82rem;
}

.bike-body {
  padding: 18px;
}

.bike-brand {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.bike-body h3 {
  margin: 8px 0 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.bike-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bike-specs li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
}

.bike-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.bike-bottom strong {
  font-size: 1rem;
}

.card-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent-2);
  font-weight: 700;
  cursor: pointer;
}

.branch-grid,
.news-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.branch-grid {
  grid-template-columns: repeat(4, 1fr);
}

.branch-card,
.news-card,
.step-card,
.price-card,
.contact-box {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.branch-card {
  padding: 26px;
}

.branch-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.branch-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.branch-card span {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-weight: 600;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(229,54,44,0.38);
  background: linear-gradient(180deg, rgba(229,54,44,0.12), rgba(255,255,255,0.05));
}

.price-tag {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.price-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.price-card strong {
  display: inline-block;
  margin-top: 16px;
  font-size: 2rem;
}

.price-card span {
  color: var(--muted);
}

.price-card ul {
  margin: 22px 0 24px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  padding: 26px;
}

.step-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(229,54,44,0.16);
  color: #fff;
  font-weight: 800;
}

.step-card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-card {
  padding: 24px;
}

.news-date,
.news-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.54);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.news-tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(229, 54, 44, 0.12);
  border: 1px solid rgba(229, 54, 44, 0.35);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-box {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at right top, rgba(229,54,44,0.14), transparent 22%),
    rgba(255,255,255,0.05);
}

.contact-box h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-box p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229, 54, 44, .08), transparent 70%),
    rgba(0,0,0,0.32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 12px 0 44px;
}

.footer-brand {
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-copy {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
  margin: 0;
}

.footer h4 {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer-grid > div > a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid > div > a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.02);
}

.footer-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}

.floating-line {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #12c95b, #06a646);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .25s ease;
}

.floating-line:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-line-icon {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.bike-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.bike-modal.active {
  opacity: 1;
  visibility: visible;
}

.bike-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
}

.bike-modal-dialog {
  position: relative;
  width: min(calc(100% - 40px), 1120px);
  max-height: calc(100vh - 60px);
  overflow: hidden;
  margin: 30px auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #0c0c0e;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.bike-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 540px;
  max-height: calc(100vh - 60px);
}

.bike-modal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 30%),
    #0f0f11;
}

.bike-modal-media-frame {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 25% at 50% 82%, rgba(0,0,0,0.10), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #eeeef0 100%);
}

.bike-modal-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 28px;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.15));
}

.bike-modal-body {
  padding: 22px 22px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 60px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.bike-modal-body::-webkit-scrollbar { width: 6px; }
.bike-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }

.bike-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-bike-brand {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
}

.bike-modal-body h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.modal-bike-desc {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.modal-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.modal-spec-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.modal-spec-item--rate strong {
  display: block;
  color: #fff;
}
.modal-spec-item--rate small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.modal-spec-item span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-spec-item strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.modal-date-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.delivery-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.76);
}

.field input,
.field select {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 0 16px;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: rgba(229, 54, 44, 0.9);
  box-shadow: 0 0 0 4px rgba(229, 54, 44, 0.12);
}

.delivery-method-wrap {
  margin-bottom: 10px;
}
.delivery-label {
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55) !important;
}

.delivery-toggle {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.delivery-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  transition: .25s ease;
}

.delivery-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.extra-field {
  margin-bottom: 6px;
}

.pickup-static-box {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  font-size: 0.85rem;
}
.pickup-static-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.pickup-static-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
}

.pickup-static-box strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.hidden {
  display: none !important;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.modal-note {
  margin: 10px 2px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  font-size: 0.75rem;
  max-height: 100px;
  overflow-y: auto;
  scrollbar-width: thin;
  white-space: pre-line;
  word-break: break-word;
}
.modal-note::-webkit-scrollbar { width: 4px; }
.modal-note::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1150px) {
  .branch-grid,
  .steps-grid,
  .news-grid,
  .strip-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .bike-modal-dialog {
    width: min(calc(100% - 24px), 920px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    overflow: hidden;
    border-radius: 18px;
  }

  .bike-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .bike-modal-media {
    min-height: auto;
    padding: 12px 12px 0;
  }

  .bike-modal-media-frame {
    min-height: 240px;
    max-height: 300px;
    border-radius: 14px;
  }

  .bike-modal-body {
    padding: 16px 16px 20px;
    max-height: none;
    overflow: visible;
  }

  .bike-modal-body h3 {
    font-size: 1.4rem;
  }

  .modal-bike-desc {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .modal-spec-grid {
    gap: 6px;
    margin-bottom: 10px;
  }

  .modal-spec-item {
    padding: 8px 10px;
  }

  .modal-spec-item strong {
    font-size: 0.88rem;
  }

  .bike-modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .top-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(7,7,8,0.96);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .28s ease;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 20px 0 24px;
    display: grid;
    gap: 12px;
  }

  .mobile-menu-inner a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-btn {
    margin-top: 6px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero-copy {
    padding-top: 30px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-desc {
    font-size: 0.98rem;
  }

  .hero-stats,
  .hero-cta,
  .contact-actions,
  .modal-actions {
    flex-direction: column;
  }

  .hero-cta .btn,
  .contact-actions .btn,
  .modal-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .branch-grid,
  .steps-grid,
  .news-grid,
  .strip-grid,
  .pricing-grid,
  .footer-grid,
  .modal-date-grid,
  .modal-spec-grid {
    grid-template-columns: 1fr;
  }

  /* fleet: 2 คอลัมน์บนมือถือ (ไม่ใหญ่เต็มจอ) */
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bike-card {
    border-radius: 16px;
  }
  .bike-media {
    aspect-ratio: 4 / 4.4;
  }
  .bike-body {
    padding: 12px;
  }
  .bike-body h3 {
    font-size: 1rem;
    margin: 4px 0 8px;
    line-height: 1.2;
  }
  .bike-brand {
    font-size: 0.75rem;
  }
  .bike-specs {
    font-size: 0.7rem;
    gap: 4px;
  }
  .bike-specs li {
    padding: 2px 8px;
  }
  .bike-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .bike-price-stack strong { font-size: 13px; }
  .bike-price-stack small  { font-size: 10px; }
  .card-link {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  .bike-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* poster ย่อ text ให้พอดีการ์ดเล็ก */
  .bike-poster { padding: 14px 14px 16px; }
  .bike-poster__model { font-size: clamp(16px, 4.5vw, 22px); }
  .bike-poster__brand { font-size: 9px; }
  .bike-poster__cc    { font-size: 9px; padding: 3px 8px; }
  .bike-poster__cat   { font-size: 8px; letter-spacing: 0.2em; }
  .bike-poster::after { font-size: 120px; top: -16px; right: -6px; }

  /* fleet tools: ย่อ ไม่เต็มแถว */
  .fleet-tools {
    padding: 10px 12px;
    gap: 10px;
  }
  .fleet-search input { padding: 8px 12px; font-size: 13px; }
  .fleet-price label  { font-size: 10px; }
  .fleet-count        { font-size: 11px; margin-left: 0; }

  /* filter chips: scroll แนวนอนถ้าล้น */
  .fleet-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .fleet-filter::-webkit-scrollbar { display: none; }
  .filter-chip {
    flex-shrink: 0;
    font-size: 12px;
    padding: 7px 12px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-box,
  .bike-modal-body {
    padding: 24px;
  }

  .floating-line {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }
}

/* จอเล็กพิเศษ (iPhone SE/mini — ~375px) */
@media (max-width: 380px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bike-media { aspect-ratio: 4 / 3.8; }
  .bike-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.fleet-more {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.hero-subpage {
  min-height: 72svh;
}

.hero-subpage .hero-copy {
  max-width: 760px;
}

/* =====================================================
   TERMINAL35 · CSS POSTER PLACEHOLDER
   ใช้กับการ์ดรถที่ยังไม่มีรูปจริง — premium/minimal
   โทนหลักดำของแบรนด์ + accent red + watermark T35
   ===================================================== */
.bike-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px 22px;
  color: var(--text, #f5f5f5);
  overflow: hidden;
  isolation: isolate;
  font-family: "Inter", system-ui, sans-serif;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 40%),
    linear-gradient(135deg, #1a1a1c 0%, #070708 100%);
}

/* ลายเส้นเฉียงบางๆ ให้รู้สึกเป็น "กระดาษโปสเตอร์" */
.bike-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.028) 0 1px,
      transparent 1px 14px
    );
  z-index: 1;
  pointer-events: none;
}

/* watermark "T35" ตัวใหญ่ โปร่งบางๆ มุมบนขวา */
.bike-poster::after {
  content: "T35";
  position: absolute;
  top: -28px;
  right: -10px;
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.035);
  z-index: 1;
  pointer-events: none;
  font-family: "Inter", sans-serif;
}

.bike-poster > * {
  position: relative;
  z-index: 2;
}

/* แถบบน: accent stripe + เลขแค็ตตาล็อก */
.bike-poster__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bike-poster__stripe {
  height: 3px;
  width: 44px;
  border-radius: 2px;
  background: var(--accent, #e5362c);
  box-shadow: 0 0 18px rgba(229, 54, 44, 0.45);
}

.bike-poster__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ตรงกลาง/ล่าง: typography หลัก */
.bike-poster__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bike-poster__brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.bike-poster__model {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
}

.bike-poster__cc {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 10px 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* --- ธีมสีต่อหมวด (subtle accent บนฐานดำเหมือนกัน) --- */
.poster--touring {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(107, 140, 255, 0.22), transparent 55%),
    linear-gradient(135deg, #151822 0%, #070709 100%);
}
.poster--touring .bike-poster__stripe { background: #6b8cff; box-shadow: 0 0 18px rgba(107,140,255,.45); }

.poster--sport {
  background:
    radial-gradient(ellipse at 15% 25%, rgba(229, 54, 44, 0.28), transparent 55%),
    linear-gradient(135deg, #1a0c0e 0%, #070404 100%);
}
.poster--sport .bike-poster__stripe { background: var(--accent, #e5362c); box-shadow: 0 0 18px rgba(229,54,44,.55); }

.poster--urban {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(245, 245, 245, 0.12), transparent 55%),
    linear-gradient(135deg, #181819 0%, #080809 100%);
}
.poster--urban .bike-poster__stripe { background: #f5f5f5; box-shadow: 0 0 16px rgba(255,255,255,.25); }

.poster--small {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 200, 87, 0.22), transparent 55%),
    linear-gradient(135deg, #1a1410 0%, #080604 100%);
}
.poster--small .bike-poster__stripe { background: #ffc857; box-shadow: 0 0 18px rgba(255,200,87,.45); }

/* hover: stripe ขยาย + watermark เข้มขึ้นนิด */
.bike-card:hover .bike-poster__stripe {
  width: 72px;
  transition: width .35s ease;
}
.bike-card .bike-poster__stripe {
  transition: width .35s ease;
}
.bike-card:hover .bike-poster::after {
  color: rgba(255, 255, 255, 0.055);
  transition: color .4s ease;
}

/* ทำให้กล่องรูปของ modal ให้รองรับ absolute ของ poster */
.bike-modal-media-frame {
  position: relative;
}

/* ลิงก์กลับไปเว็บกลุ่มหลัก 35LINE GROUP */
.back-to-group {
  margin-left: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72) !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.back-to-group:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}

/* footer link to group */
.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ---------- PRICING NOTE ---------- */
.pricing-note {
  margin: 24px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 720px;
  line-height: 1.5;
}
.pricing-note a {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 1px dotted rgba(255, 85, 69, 0.4);
}
.pricing-note a:hover { color: #fff; border-bottom-color: #fff; }

/* ---------- UNAVAILABLE BIKE (status from Google Sheet) ---------- */
.bike-badge--unavailable {
  left: auto !important;
  right: 16px;
  top: 16px;
  background: rgba(229, 54, 44, 0.92) !important;
  color: #fff !important;
  border-color: transparent !important;
  font-weight: 700 !important;
}
.bike-card--unavailable .bike-media img,
.bike-card--unavailable .bike-media .bike-poster {
  filter: grayscale(60%) opacity(0.7);
}
.bike-card--unavailable {
  opacity: 0.88;
}

/* ---------- TRACKDAY PACKAGES BOX (ใน modal) ---------- */
.modal-trackday-box {
  margin: 10px 0 4px;
  padding: 10px 12px;
  border: 1px solid rgba(229, 54, 44, 0.22);
  border-radius: 10px;
  background: rgba(229, 54, 44, 0.06);
}
.modal-trackday-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.modal-trackday-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.trackday-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.trackday-item:last-child { border-bottom: none; }
.trackday-item span { color: rgba(255, 255, 255, 0.62); }
.trackday-item strong { color: #fff; font-weight: 700; }

/* ---------- BIKE CARD: price stack (daily + weekly) ---------- */
.bike-price-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}
.bike-price-stack strong {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.bike-price-stack small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ---------- FLEET TOOLS (search + price slider) ---------- */
.fleet-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 16px 0 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.fleet-search { flex: 1 1 260px; }
.fleet-search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s ease;
}
.fleet-search input:focus {
  outline: none;
  border-color: var(--accent);
}
.fleet-price { display: flex; flex-direction: column; gap: 4px; min-width: 220px; }
.fleet-price label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.fleet-price label span { color: var(--accent-2); font-weight: 700; }
.fleet-price input[type="range"] {
  accent-color: var(--accent);
  width: 100%;
}
.fleet-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}
.fleet-empty {
  padding: 40px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

/* ---------- BRANDED HERO (แทน Unsplash ที่โหลดรูปข้างนอก) ---------- */
.hero-media--branded {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(229, 54, 44, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(107, 140, 255, 0.16), transparent 65%),
    linear-gradient(135deg, #0d0d10 0%, #050505 100%);
}

.hero-poster-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-poster-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.022) 0 1px,
    transparent 1px 16px
  );
  z-index: 1;
}

.hero-poster-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 30% at 50% 50%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-poster-bg__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-size: clamp(220px, 38vw, 560px);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.045);
  line-height: 1;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

.hero-poster-bg__word {
  position: relative;
  z-index: 3;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.25em;
  margin-top: -10px;
  color: rgba(255, 255, 255, 0.18);
  text-shadow: 0 0 60px rgba(229, 54, 44, 0.15);
}

.hero-poster-bg__sub {
  position: relative;
  z-index: 3;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .hero-poster-bg__mark { font-size: clamp(160px, 62vw, 340px); }
  .hero-poster-bg__word { font-size: clamp(28px, 8vw, 48px); letter-spacing: 0.18em; }
  .hero-poster-bg__sub  { font-size: 10px; letter-spacing: 0.28em; }
}

/* =====================================================
   BIKE MODAL — AVAILABILITY CALENDAR
   ===================================================== */
.modal-calendar-wrap {
  margin: 18px 0 8px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.modal-calendar-head strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}
.cal-nav {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s;
}
.cal-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.modal-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.modal-calendar .cal-dow {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 6px 0 4px;
  font-weight: 600;
}
.modal-calendar .cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.12s;
  position: relative;
  user-select: none;
}
.modal-calendar .cal-day:hover:not(.is-past):not(.is-booked):not(.is-service):not(.is-empty) {
  background: rgba(74, 222, 128, 0.15);
  border-color: rgba(74, 222, 128, 0.45);
  transform: scale(1.06);
}
.modal-calendar .cal-day.is-empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.modal-calendar .cal-day.is-past {
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border-color: transparent;
  cursor: not-allowed;
  text-decoration: line-through;
}
.modal-calendar .cal-day.is-today {
  outline: 2px solid rgba(107, 140, 255, 0.55);
  outline-offset: -2px;
  font-weight: 700;
}
.modal-calendar .cal-day.is-booked {
  background: rgba(229, 54, 44, 0.18);
  border-color: rgba(229, 54, 44, 0.4);
  color: #ff8a82;
  cursor: not-allowed;
}
.modal-calendar .cal-day.is-service {
  background: rgba(251, 146, 60, 0.18);
  border-color: rgba(251, 146, 60, 0.4);
  color: #fbbf24;
  cursor: not-allowed;
}
.modal-calendar .cal-day.is-selected {
  background: rgba(74, 222, 128, 0.3);
  border-color: #4ade80;
  color: #fff;
  font-weight: 700;
}
.modal-calendar .cal-day.is-in-range {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.25);
  color: #fff;
}

.modal-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.cal-legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cal-legend > span {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  display: inline-block;
}
.cal-legend--avail > span {
  background: rgba(74, 222, 128, 0.25);
  border: 1px solid rgba(74, 222, 128, 0.5);
}
.cal-legend--booked > span {
  background: rgba(229, 54, 44, 0.25);
  border: 1px solid rgba(229, 54, 44, 0.5);
}
.cal-legend--service > span {
  background: rgba(251, 146, 60, 0.25);
  border: 1px solid rgba(251, 146, 60, 0.5);
}
.cal-legend--past > span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}


