:root {
  --ink: #17211d;
  --muted: #5e6863;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dfe4dc;
  --red: #c83f31;
  --green: #128c4a;
  --green-dark: #0b6f39;
  --yellow: #f2c14e;
  --shadow: 0 18px 40px rgba(23, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 268px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 92px;
  height: 58px;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(23, 33, 29, 0.1);
}

.brand-mark img {
  width: 82px;
  height: 46px;
  object-fit: contain;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a,
.menu-toggle,
.button,
.bike-card a,
.map-card a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.bike-card a:hover,
.map-card a:hover,
.site-footer a:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  color: var(--white);
  cursor: pointer;
  background: var(--green);
  border: 0;
  border-radius: 8px;
}

.menu-toggle span[aria-hidden="true"] {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span[aria-hidden="true"]:nth-of-type(2) {
  transform: translateY(-7px);
}

.menu-toggle span[aria-hidden="true"]:nth-of-type(4) {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(4) {
  transform: rotate(-45deg);
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.menu-toggle:hover,
.button.primary:hover,
.floating-whatsapp:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: end;
  padding: clamp(80px, 12vw, 140px) clamp(18px, 6vw, 86px) clamp(34px, 7vw, 74px);
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(14, 23, 19, 0.88) 0%, rgba(14, 23, 19, 0.64) 48%, rgba(14, 23, 19, 0.22) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-content > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 86px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro,
.terms,
.reviews {
  background: var(--white);
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.check-list,
.terms-panel ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.terms-panel li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before,
.terms-panel li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

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

.bike-card,
.steps article,
.map-card,
.terms-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.06);
}

.bike-card {
  overflow: hidden;
}

.bike-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bike-card div,
.steps article,
.map-card,
.terms-panel {
  padding: 24px;
}

.bike-card p,
.steps p,
.terms p,
.location p,
.faq p,
.final-cta p {
  color: var(--muted);
}

.bike-card a {
  color: var(--green);
  font-weight: 900;
}

.bike-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.bike-filter {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--ink);
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.bike-filter.is-active,
.bike-filter:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.fleet-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.06);
}

.fleet-card[hidden] {
  display: none;
}

.fleet-card > .bike-image-button {
  width: 100%;
  height: 210px;
  background: #fbfcfa;
}

.fleet-card > .bike-image-button img {
  width: 100%;
  height: 210px;
  padding: 12px;
  border: 0;
  border-radius: 0;
}

.fleet-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.fleet-card h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.fleet-card p {
  color: var(--muted);
}

.bike-tag {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  color: var(--red);
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bike-meta {
  margin-bottom: 8px;
}

.bike-price {
  margin-bottom: 10px;
  color: var(--ink) !important;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.fleet-card-body a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 13px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.fleet-card-body a:hover {
  background: var(--green-dark);
}

.compare-prices {
  margin-top: 24px;
}

.compare-prices summary {
  width: fit-content;
  min-height: 44px;
  padding: 10px 14px;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.compare-prices .fleet-table-wrap {
  margin-top: 12px;
}

.compare-prices .fleet-table {
  min-width: 680px;
}

.fleet-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.06);
}

.fleet-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
}

.fleet-table th,
.fleet-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.fleet-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--ink);
  background: #fbfcfa;
  font-size: 13px;
  text-transform: uppercase;
}

.fleet-table tbody tr:last-child td {
  border-bottom: 0;
}

.fleet-table td {
  color: var(--muted);
}

.fleet-table td strong {
  color: var(--ink);
}

.bike-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.bike-image-button {
  display: block;
  width: 118px;
  height: 86px;
  flex: 0 0 auto;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  border: 0;
}

.bike-image-button img {
  width: 118px;
  height: 86px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bike-image-button:focus-visible img {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.fleet-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.fleet-table a:hover {
  background: var(--green-dark);
}

.fleet-note {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.steps {
  background: #eff2ec;
}

.steps article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
}

.bike-sales {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bike-sales-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.bike-sales-content {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(34px, 6vw, 72px);
}

.bike-sales-content p {
  color: var(--muted);
}

.bike-sales-content .button {
  width: fit-content;
  margin-top: 8px;
}

.terms-panel {
  background: #fbfcfa;
}

.terms-panel h3 {
  margin-bottom: 16px;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #eff2ec;
}

.map-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 0;
}

.map-embed {
  position: relative;
  min-height: 260px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: #d23f31;
  box-shadow: 0 8px 18px rgba(23, 33, 29, 0.28);
  pointer-events: none;
  transform: translate(-50%, -100%) rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.map-card strong,
.map-card span,
.map-card a {
  margin-right: 24px;
  margin-left: 24px;
}

.map-card strong {
  margin-top: 14px;
  font-size: 24px;
}

.map-card span {
  color: var(--muted);
}

.map-card a {
  margin-top: 8px;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 900;
}

.testimonial-strip {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-width: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.06);
  scroll-snap-align: start;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
}

.testimonial-card footer {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.testimonial-card footer span,
.review-source {
  color: var(--muted);
  font-size: 14px;
}

.stars {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 0;
}

.highlight-card {
  background: #fbfcfa;
}

.review-source {
  max-width: 780px;
  margin: 14px 0 0;
}

.review-source a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.faq {
  background: #eff2ec;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  color: var(--white);
  text-align: center;
  background: var(--ink);
}

.final-cta p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 0 clamp(18px, 6vw, 86px) 86px;
  color: var(--muted);
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(180px, 0.8fr) minmax(220px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  padding: 48px 0 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
  margin: 0;
}

.footer-brand p,
.footer-column p {
  max-width: 470px;
}

.footer-logo {
  min-width: 0;
  margin-bottom: 18px;
  color: var(--ink);
}

.footer-logo small {
  color: var(--muted);
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

.site-footer .footer-whatsapp {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  text-decoration: none;
}

.footer-whatsapp:hover {
  background: var(--green-dark);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  background: rgba(14, 23, 19, 0.82);
  border: 0;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  max-height: 88vh;
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(88vh - 82px);
  object-fit: contain;
}

.lightbox-close {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 8px 13px;
  color: var(--white);
  cursor: pointer;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    right: clamp(18px, 4vw, 56px);
    left: clamp(18px, 4vw, 56px);
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .section-grid,
  .location,
  .bike-sales,
  .bike-grid,
  .step-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 760px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .hero {
    min-height: 700px;
    padding-top: 92px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-content > p,
  .intro-copy,
  .section-heading p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .bike-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bike-filter {
    width: 100%;
  }

  .fleet-card-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
