: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(4, 1fr);
  gap: 18px;
}

.bike-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  cursor: pointer;
}

.bike-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229,54,44,0.45);
  box-shadow: var(--shadow);
}

.bike-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
}

.bike-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.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 {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.54);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.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: 30px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 30px 0;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-copy {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.8;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
}

.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), 1240px);
  max-height: calc(100vh - 80px);
  overflow: hidden;
  margin: 40px auto;
  border-radius: 30px;
  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.18fr 0.82fr;
  min-height: 620px;
}

.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: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: #151515;
}

.bike-modal-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bike-modal-body {
  padding: 28px 28px 26px;
  overflow: auto;
}

.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: 8px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.modal-bike-desc {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.modal-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.modal-spec-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.modal-spec-item span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.modal-spec-item strong {
  font-size: 1rem;
}

.modal-date-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.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: 14px;
}

.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: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}

.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: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.modal-note {
  margin: 16px 2px 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.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) {
  .fleet-grid,
  .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: auto;
  }

  .bike-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bike-modal-media {
    min-height: auto;
    padding: 16px 16px 0;
  }

  .bike-modal-media-frame {
    min-height: 300px;
    max-height: 380px;
  }

  .bike-modal-body {
    overflow: visible;
  }
}

@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%;
  }

  .fleet-grid,
  .branch-grid,
  .steps-grid,
  .news-grid,
  .strip-grid,
  .pricing-grid,
  .footer-grid,
  .modal-date-grid,
  .modal-spec-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .bike-media {
    aspect-ratio: 4 / 4;
  }

  .contact-box,
  .bike-modal-body {
    padding: 24px;
  }

  .floating-line {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }
}

.fleet-more {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.hero-subpage {
  min-height: 72svh;
}

.hero-subpage .hero-copy {
  max-width: 760px;
}