/* =============================================
   Buster Homepage — CSS Variables & Reset
   ============================================= */

:root {
  --color-navy: #001d38;
  --color-orange: #d15a00;
  --color-orange-hover: #b84e00;
  --color-dark: #131625;
  --color-bar-top: #142621;
  --color-bar-body: #1f312c;
  --color-white: #ffffff;
  --color-gray-50: #f8f9fa;
  --color-gray-100: #f0f4f8;
  --color-gray-200: #e8e8e8;
  --color-gray-400: #84919e;
  --color-text: #001d38;
  --color-text-muted: #5a6470;
  --color-hero-sky: #84919e;
  --color-specialist-bg: #74cbaf;
  --color-hero-logos-bg: #131625;
  --color-real-prices-top: #f1faf7;
  --color-real-prices-bottom: #c7eae0;

  --hero-height: 777px;
  --hero-content-width: min(1053px, 100%);
  --hero-text-width: min(850px, 100%);

  --real-prices-height: 1076px;
  --real-prices-steps-width: 1064px;
  --real-prices-cta-width: 1041px;

  --trust-bar-stats-height: 134px;
  --trust-bar-cancel-height: 63px;
  --trust-bar-items-width: 1250px;

  --why-buster-height: 704px;
  --why-buster-bg: #74cbaf;
  --why-buster-card-width: 344px;
  --why-buster-grid-gap: 90px;
  --why-buster-grid-inset: 70px;
  --why-buster-panel-bg: #f0faf7;
  --why-buster-panel-radius: 20px;

  --reviews-width: 1170px;
  --reviews-column-width: 370px;
  --reviews-column-gap: 30px;
  --reviews-card-gap: 33px;
  --reviews-card-bg: #e9fbf6;
  --reviews-card-border: #c7eae0;

  --network-height: 605px;
  --network-brands-width: 907px;
  --network-brands-gap: 92px;

  --vehicles-height: 805px;
  --vehicles-header-width: 878px;
  --vehicles-grid-width: 1372px;
  --vehicles-card-width: 327px;
  --vehicles-card-gap: 22px;
  --vehicles-btn-bg: #f6f2ef;
  --vehicles-image-bg: #e9fbf6;

  --locations-bg: #74cbaf;
  --locations-header-width: 878px;
  --locations-grid-width: 1372px;
  --locations-card-width: 327px;
  --locations-card-gap: 22px;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-alt: 'Public Sans', var(--font-family);
  --font-family-avenir: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --radius-sm: 4px;
  --radius-md: 10px;

  --page-width: min(1512px, 100%);
  --container-max: min(1352px, 100%);
  --container-padding: clamp(40px, 5.3vw, 80px);
  --section-padding-inline: clamp(40px, 5.3vw, 80px);
  --navbar-height: 60px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  color: var(--color-navy);
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title--lg {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
}

/* =============================================
   Badges
   ============================================= */

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.badge--hero {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 4px 12px;
  font-family: var(--font-family-alt);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  line-height: 24px;
  letter-spacing: 0.06em;
}

.badge--section {
  background: var(--color-gray-100);
  color: var(--color-navy);
}

.badge--vehicles {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
  padding: 4px 12px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* =============================================
   Buttons
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 23px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-white);
  height: 40px;
  min-width: clamp(160px, 14vw, 215px);
  padding: 10px 20px;
}

.btn--white:hover {
  background: var(--color-gray-50);
}

.btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
  height: 44px;
  min-width: 143px;
  padding: 10px 20px;
}

.btn--orange:hover {
  background: var(--color-orange-hover);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
  width: 100%;
  padding: 10px 20px;
  height: 44px;
}

.btn--vehicle {
  width: min(283px, calc(100% - 48px));
  min-width: 0;
  background: var(--vehicles-btn-bg);
  border: none;
  font-family: var(--font-family-avenir);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #060b07;
}

.btn--outline.btn--vehicle:hover {
  background: #ebe5e1;
  color: var(--color-navy);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--lg {
  padding: 10px 48px;
  min-width: 200px;
}

.btn--section-cta {
  width: 100%;
  max-width: min(var(--real-prices-cta-width), 100%);
  height: 44px;
  min-width: 0;
  padding: 10px 24px;
}

.btn--network-cta {
  width: 139px;
  min-width: 139px;
  height: 44px;
  padding: 10px 20px;
  margin-top: 60px;
}

/* =============================================
   Hero (includes navbar)
   Figma frame: 1516 × 777px (node 1:185)
   ============================================= */

.hero {
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #5c7080;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../home/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(10deg, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* Navbar inside hero — Figma: 1511 × 60px */
.navbar {
  position: relative;
  z-index: 10;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 2vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  gap: clamp(12px, 1.6vw, 24px);
}

.navbar__logo img {
  height: 42px;
  width: 121px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 25px);
  margin-left: auto;
  margin-right: auto;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 23px;
  color: var(--color-navy);
  white-space: nowrap;
}

.navbar__link:hover {
  opacity: 0.75;
}

.navbar__chevron {
  flex-shrink: 0;
  color: var(--color-navy);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.navbar__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.navbar__hamburger img {
  display: block;
  width: 23px;
  height: auto;
}

/* Hero content — Figma: y=181, 1053 × 436 */
.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--hero-content-width);
  margin: 0 auto;
  padding: 121px var(--container-padding) 72px;
  text-align: center;
}

.hero__text {
  width: 100%;
  max-width: var(--hero-text-width);
  margin-bottom: 30px;
}

.hero__text .badge {
  margin-bottom: 18px;
}

.hero__headline {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.hero__headline-accent {
  color: var(--color-orange);
}

/* Search card — Figma: 1053 × 236 (197 embed + 39 specialist) */
.hero__search-card {
  width: 100%;
  max-width: var(--hero-content-width);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.search-embed {
  width: 100%;
  height: 197px;
  background: var(--color-bar-body);
  position: relative;
}

.search-embed:empty::before {
  content: '';
  display: block;
  height: 59px;
  background: var(--color-bar-top);
}

.search-embed:empty::after {
  content: 'Search form embed goes here';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  color: rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  pointer-events: none;
}

.hero__specialist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 39px;
  padding: 8px 16px;
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 23px;
  color: var(--color-navy);
  background: var(--color-specialist-bg);
}

.hero__specialist-text--mobile {
  display: none;
}

.hero__specialist-icon {
  flex-shrink: 0;
  display: block;
}

.hero__specialist-link {
  color: var(--color-navy);
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__specialist-link:hover {
  opacity: 0.8;
}

/* Logos bar — Figma: 1507 × 83, y=689 */
.hero__logos {
  position: relative;
  z-index: 1;
  background: var(--color-hero-logos-bg);
  min-height: 83px;
  margin-top: auto;
}

.hero__logos-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.8vw, 73px);
  min-height: 83px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
}

.hero__logos-label {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__logos-marquee {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.hero__logos-track {
  display: flex;
  width: max-content;
  /* Duration set in home-marketing.js from one-set width ÷ --hero-logos-marquee-speed */
  --hero-logos-marquee-speed: 20;
  animation: hero-logos-marquee var(--hero-logos-marquee-duration, 50s) linear infinite;
}

.hero__logos-set {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

@keyframes hero-logos-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-logo-img {
  height: 40px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

@media (min-width: 769px) {
  .hero__logos-set .client-logo-img:nth-child(n + 6) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logos-track {
    animation: none;
  }
}

/* =============================================
   Real Prices — Figma frame 1:334 (1512 × 1076)
   ============================================= */

.real-prices {
  padding: 95px 0 131px;
  background: linear-gradient(180deg, var(--color-real-prices-top) 0%, var(--color-real-prices-bottom) 100%);
}

.real-prices__inner {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-inline);
}

.real-prices__title {
  max-width: min(1510px, 100%);
  margin: 0 auto 34px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.375;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  text-align: center;
}

.real-prices__mockup {
  display: flex;
  justify-content: center;
  margin-bottom: 59px;
}

.real-prices__mockup-img {
  width: 514px;
  max-width: 100%;
  height: auto;
}

.real-prices__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(24px, 3.8vw, 57px);
  width: 100%;
  max-width: min(var(--real-prices-steps-width), 100%);
  margin: 0 auto 37px;
}

.step__title {
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  line-height: 29px;
  color: var(--color-navy);
  margin-bottom: 40px;
  text-align: left;
}

.step__card {
  display: block;
  line-height: 0;
}

.step__image {
  display: block;
  width: 100%;
  height: auto;
}

.step--vehicle .step__image,
.step--order .step__image {
  width: 100%;
  margin-left: 0;
}

.real-prices__cta {
  width: 100%;
  max-width: min(var(--real-prices-cta-width), 100%);
  margin: 0 auto;
}

.real-prices__cta-label--mobile {
  display: none;
}

/* =============================================
   Trust Bar — Figma frame 1:474 (1512 × 197)
   ============================================= */

.trust-bar {
  background: var(--color-bar-body);
}

.trust-bar__inner {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-inline);
}

.trust-bar__stats {
  background: var(--color-bar-body);
  min-height: var(--trust-bar-stats-height);
}

.trust-bar__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 2.1vw, 32px);
  width: 100%;
  max-width: min(var(--trust-bar-items-width), 100%);
  margin: 0 auto;
  padding: 32px 0;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.trust-bar__trustpilot {
  height: 34px;
  width: auto;
}

/* Single uploaded image per stat (replaces multi-avatar / multi-flag markup). */
.trust-bar__stat-media {
  display: block;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.trust-bar__stat-media--wide {
  max-height: 33px;
  max-width: 140px;
}

.trust-bar__avatars {
  display: flex;
  height: 34px;
}

.trust-bar__avatars .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-bar-body);
  margin-left: -10px;
  object-fit: cover;
  display: block;
}

.trust-bar__avatars .avatar:first-child {
  margin-left: 0;
}

.trust-bar__number {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  line-height: 1;
}

.trust-bar__flags {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 13px;
}

.trust-bar__flag {
  display: block;
  object-fit: cover;
}

.trust-bar__text {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-bar__text--sm {
  font-size: 18px;
  line-height: 22px;
}

.trust-bar__cancel {
  background: var(--color-bar-top);
  min-height: var(--trust-bar-cancel-height);
}

.trust-bar__cancel-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: var(--trust-bar-cancel-height);
  padding: 17px 0;
  margin: 0;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  letter-spacing: -0.011em;
  color: var(--color-white);
}

.trust-bar__cancel-icon {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}

.trust-bar__cancel-copy {
  min-width: 0;
}

/* =============================================
   Why Buster — Figma frame 1:500 (1512 × 704)
   ============================================= */

.why-buster {
  padding: 153px 0 167px;
  background: var(--why-buster-bg);
}

.why-buster__inner {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.why-buster__title {
  max-width: var(--container-max);
  margin: 0 auto 32px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.375;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  text-align: center;
}

.why-buster__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 6vw, var(--why-buster-grid-gap));
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px clamp(32px, 4.6vw, var(--why-buster-grid-inset)) 18px;
  background: var(--why-buster-panel-bg);
  border-radius: var(--why-buster-panel-radius);
}

.why-buster__body {
  max-width: var(--container-max);
  margin: 0 auto;
}

.why-buster__cta {
  display: none;
}

.feature-card {
  text-align: center;
}

.feature-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card__icon img {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #313030;
  margin-bottom: 24px;
}

.feature-card__text {
  font-family: var(--font-family-alt);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: #565656;
}

/* =============================================
   Reviews — Figma frame 1:538 (1170 × 1401)
   ============================================= */

.reviews {
  padding: 90px 0;
  background: var(--color-white);
}

.reviews__inner {
  width: 100%;
  max-width: min(var(--reviews-width), 100%);
  margin: 0 auto;
  padding: 0 var(--section-padding-inline);
}

.reviews__title {
  margin: 0 auto 48px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.375;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  text-align: center;
}

.reviews__wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, var(--reviews-column-gap));
  align-items: start;
}

.reviews__column {
  display: flex;
  flex-direction: column;
  gap: var(--reviews-card-gap);
}

.review-card {
  background: var(--reviews-card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--reviews-card-border);
  box-shadow: 2px 2px 18px 0 rgba(0, 0, 0, 0.09);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  line-height: 20px;
  color: var(--color-navy);
}

.review-card__date {
  margin-top: 8px;
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  line-height: 15px;
  color: var(--color-text-muted);
}

.review-card__source {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.review-card__stars {
  margin-bottom: 16px;
}

.review-card__stars img {
  width: 136px;
  height: 24px;
  display: block;
}

.review-card__text {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 20px;
  color: #1a1a1a;
}

/* =============================================
   Network — Figma frame 1:775 (1512 × 605)
   ============================================= */

.network {
  padding: 116px 0 112px;
  background: var(--color-bar-body);
}

.network__inner {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.network__header {
  max-width: var(--container-max);
  margin: 0 auto;
}

.network__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.375;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.network__subtitle {
  max-width: 700px;
  margin: 28px auto 0;
  font-family: var(--font-family-alt);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: #f6f6f6;
}

.network__brands {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(32px, 6.1vw, var(--network-brands-gap));
  max-width: min(var(--network-brands-width), 100%);
  margin: 83px auto 0;
  min-height: 52px;
  width: 100%;
}

.network__brand-img {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.network__brand-img--buster {
  width: 152px;
}

.network__brand-img--chartersmart {
  width: 366px;
}

.network__brand-img--busbank {
  width: 205px;
}

/* =============================================
   Vehicles — Figma frame 1:826 (1512 × 805)
   ============================================= */

.vehicles {
  padding: 40px 0 89px;
  background: var(--color-white);
}

.vehicles__inner {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-inline);
}

.vehicles__header {
  max-width: var(--vehicles-header-width);
  margin: 0 auto 60px;
  text-align: center;
}

.vehicles__header .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  height: 32px;
  margin-bottom: 16px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vehicles__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.375;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, var(--vehicles-card-gap));
  max-width: min(var(--vehicles-grid-width), 100%);
  margin: 0 auto;
  justify-content: center;
}

.vehicle-card {
  width: 100%;
  min-width: 0;
  min-height: 502px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vehicle-card__image {
  height: 171px;
  background: var(--vehicles-image-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vehicle-card__image img {
  display: block;
  max-width: 100%;
  max-height: 124px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.vehicle-card__title {
  margin: 28px 24px 0;
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  line-height: 30px;
  color: var(--color-navy);
}

.vehicle-card__text {
  margin: 15px 24px 0;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  line-height: 1.29;
  letter-spacing: -0.011em;
  color: #3b3b3b;
  flex: 1;
}

.vehicle-card .btn--vehicle {
  margin: 24px auto 20px;
  flex-shrink: 0;
}

/* =============================================
   Locations — Figma frame 1:842 (1512 × 953)
   ============================================= */

.locations {
  padding: 120px 0 163px;
  background: var(--locations-bg);
}

.locations__inner {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-inline);
}

.locations__header {
  max-width: var(--locations-header-width);
  margin: 0 auto 60px;
  text-align: center;
}

.locations__header .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  height: 32px;
  margin-bottom: 16px;
  background: transparent;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.locations__title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: var(--font-weight-regular);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, var(--locations-card-gap));
  max-width: min(var(--locations-grid-width), 100%);
  margin: 0 auto;
  justify-content: center;
}

.location-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: 502px;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 28%, transparent 52%);
  pointer-events: none;
  z-index: 1;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.location-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__name {
  position: absolute;
  top: 29px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 16px;
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  line-height: 29px;
  text-align: center;
  color: var(--color-white);
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1200px) {
  .why-buster__grid {
    gap: 40px;
    padding: 40px 32px;
  }

  .real-prices__steps {
    gap: 24px;
  }

  .reviews__wall {
    gap: 24px;
  }

  .network__brands {
    gap: 48px;
  }

  .network__brand-img--buster {
    width: 152px;
  }

  .network__brand-img--chartersmart {
    width: min(366px, 100%);
  }

  .network__brand-img--busbank {
    width: 205px;
  }
}

@media (max-width: 900px) {
  .vehicles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1100px) {
  .navbar__nav {
    display: none;
  }

  .navbar__actions {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}

@media (min-width: 769px) and (max-width: 1115px) {
  .step__title {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container-padding: clamp(20px, 4vw, 40px);
    --section-padding-inline: clamp(20px, 4vw, 40px);
  }

  .hero__content {
    padding: 80px var(--container-padding) 48px;
  }

  .hero__logos-inner {
    padding: 0 var(--container-padding);
  }

  .navbar__nav {
    display: none;
  }

  .navbar__actions {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --section-padding-inline: 20px;
  }

  /* Header — Figma frame 16:1154 (430 × 60) */
  .navbar {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(23.41px);
    -webkit-backdrop-filter: blur(23.41px);
    border-bottom: none;
  }

  .hero__text br {
    display: none;
  }

  .navbar__inner {
    padding: 0 9px 0 21px;
  }

  .navbar__logo img {
    width: 99px;
    height: 34px;
  }

  .hero {
    min-height: 663px;
    padding-bottom: 25px;
  }

  .hero__content {
    padding: 48px 20px 40px;
  }

  .hero__headline {
    font-size: 40px;
    line-height: 42px;
    letter-spacing: -0.4px;
  }

  .badge--hero {
    font-size: 12px;
    line-height: 24px;
  }

  .search-embed {
    height: 160px;
  }

  .hero__specialist {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 23px;
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.2px;
  }

  .hero__specialist-text--desktop {
    display: none;
  }

  .hero__specialist-text--mobile {
    display: inline;
  }

  .hero__specialist-icon {
    display: none;
  }

  .hero__specialist-link {
    font-weight: var(--font-weight-semibold);
  }

  .btn {
    font-size: 14px;
    line-height: 23px;
  }

  /* Logos — Figma frame 16:1053 (430 × 83, no background) */
  .hero__logos {
    background: transparent;
    min-height: 83px;
    margin-top: auto;
    width: 100%;
    overflow: hidden;
  }

  .hero__logos-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 83px;
    padding: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero__logos-label {
    font-size: 14px;
    line-height: 24px;
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.64);
    text-align: center;
    white-space: nowrap;
  }

  .hero__logos-marquee {
    width: 100%;
  }

  .hero__logos-set {
    gap: 56px;
    padding-right: 56px;
  }

  .client-logo-img {
    height: 32px;
  }

  .real-prices {
    padding: 55px 0 100px;
    overflow-x: clip;
  }

  .real-prices__inner {
    padding: 0 20px;
  }

  .real-prices__title {
    font-size: 30px;
    line-height: 31px;
    margin-bottom: 26px;
    color: #1f312c;
  }

  .real-prices__mockup {
    margin-bottom: 42px;
  }

  .real-prices__mockup-img {
    width: min(301px, 100%);
    height: auto;
  }

  .real-prices__steps {
    --step-padding-start: 20px;
    --step-gap: 24px;
    --step-peek: 40px;
    --step-slide-width: min(325px, calc(100vw - var(--step-padding-start) - var(--step-gap) - var(--step-peek)));
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--step-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--step-padding-start);
    scroll-padding-right: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: var(--step-padding-start);
    padding-right: calc(100vw - var(--step-slide-width) - var(--step-padding-start));
    margin-bottom: 17px;
  }

  .real-prices__steps::-webkit-scrollbar {
    display: none;
  }

  .step {
    flex: 0 0 var(--step-slide-width);
    width: var(--step-slide-width);
    min-width: 0;
    max-width: var(--step-slide-width);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .step:last-child {
    scroll-snap-align: center;
  }

  .step__title {
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1f312c;
  }

  .step__image {
    width: 100%;
    height: auto;
  }

  .step--vehicle .step__image,
  .step--order .step__image {
    width: 100%;
    margin-left: 0;
  }

  .real-prices__cta-label--desktop {
    display: none;
  }

  .real-prices__cta-label--mobile {
    display: inline;
  }

  .trust-bar__inner {
    padding: 0 20px;
  }

  .trust-bar__stats {
    min-height: 0;
  }

  .trust-bar__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 32px 0;
    justify-items: center;
  }

  .trust-bar__item {
    flex: unset;
    width: 100%;
    max-width: 168px;
  }

  .trust-bar__trustpilot {
    height: 28px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .trust-bar__number {
    font-size: 32px;
    line-height: 32px;
  }

  .trust-bar__flags {
    padding-bottom: 0;
  }

  .trust-bar__flag {
    width: auto;
    height: 28px;
    max-width: 100%;
    object-fit: contain;
  }

  .trust-bar__text {
    font-size: 13px;
    line-height: 19px;
  }

  .trust-bar__text--sm {
    font-size: 12px;
    line-height: 17px;
  }

  .trust-bar__cancel {
    min-height: 0;
  }

  .trust-bar__cancel-text {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 16px 0;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }

  .trust-bar__cancel-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .trust-bar__cancel-copy {
    flex: 1;
    min-width: 0;
  }

  /* Why Buster — Figma frame 16:1338 */
  .why-buster {
    padding: 55px 0 80px;
  }

  .why-buster__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 var(--container-padding);
  }

  .why-buster__title {
    margin: 0;
    font-size: 30px;
    line-height: 31px;
    color: #1f312c;
  }

  .why-buster__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .why-buster__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .why-buster__cta {
    display: flex;
    width: 100%;
    max-width: none;
  }

  .feature-card {
    text-align: left;
    padding: 20px;
    background: var(--why-buster-panel-bg);
    border-radius: 9px;
  }

  .feature-card__header {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
  }

  .feature-card__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    background: #c7eae0;
    border-radius: 5px;
  }

  .feature-card__icon img {
    width: 22px;
    height: 22px;
  }

  .feature-card__title {
    margin: 0;
    font-size: 14px;
    line-height: 32px;
    color: #1f312c;
  }

  .feature-card__text {
    font-family: var(--font-family-alt);
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: #1f312c;
  }

  /* Reviews — Figma frame 16:1386 (430 × 722) */
  .reviews {
    padding: 70px 0;
    overflow-x: clip;
  }

  .reviews__inner {
    padding: 0;
    max-width: 100%;
  }

  .reviews__title {
    font-size: 30px;
    line-height: 31px;
    margin-bottom: 40px;
    color: #1f312c;
    padding: 0 20px;
  }

  .reviews__wall {
    --review-padding-start: 18px;
    --review-gap: 18px;
    --review-peek: 40px;
    --review-slide-width: min(360px, calc(100vw - var(--review-padding-start) - var(--review-gap) - var(--review-peek)));
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--review-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--review-padding-start);
    scroll-padding-right: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: var(--review-padding-start);
    padding-right: calc(100vw - var(--review-slide-width) - var(--review-padding-start));
  }

  .reviews__wall::-webkit-scrollbar {
    display: none;
  }

  .reviews__column {
    display: contents;
  }

  .review-card {
    flex: 0 0 var(--review-slide-width);
    width: var(--review-slide-width);
    min-width: 0;
    max-width: var(--review-slide-width);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 16px;
    border-width: 0.5px;
    box-shadow: 2px 2px 9px 0 rgba(0, 0, 0, 0.09);
  }

  .review-card:last-child {
    scroll-snap-align: center;
  }

  .review-card__header {
    margin-bottom: 0;
  }

  .review-card__stars {
    margin-bottom: 0;
  }

  .review-card__name {
    font-size: 16px;
    line-height: 20px;
    color: #1a1a1a;
  }

  .review-card__text {
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--font-weight-regular);
    color: #1a1a1a;
  }

  /* Network — Figma frame 16:1454 (430 × 722) */
  .network {
    padding: 120px 0;
  }

  .network__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }

  .network__header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 387px;
    margin: 0;
  }

  .network__title {
    font-size: 30px;
    line-height: 31px;
    letter-spacing: 0;
    color: var(--color-white);
  }

  .network__subtitle {
    margin: 0;
    max-width: none;
    font-family: var(--font-family-alt);
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: #f6f6f6;
  }

  .network__brands {
    flex-direction: column;
    gap: 38px;
    margin: 0;
    min-height: 0;
    width: 100%;
  }

  .network__brand-img--buster {
    width: 132px;
  }

  .network__brand-img--chartersmart {
    width: 316px;
  }

  .network__brand-img--busbank {
    width: 177px;
  }

  .btn--network-cta {
    display: none;
  }

  /* Vehicles — Figma frame 16:1502 (430 × 722) */
  .vehicles {
    padding: 70px 0;
    overflow-x: clip;
  }

  .vehicles__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 16px;
  }

  .vehicles__header {
    margin: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .vehicles__header .badge {
    margin: 0;
    min-width: 0;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    font-family: var(--font-family-alt);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12px;
    color: #131625;
    line-height: normal;
  }

  .vehicles__title {
    font-size: 30px;
    line-height: 31px;
    letter-spacing: 0;
    color: #1f312c;
  }

  .vehicles__grid {
    --vehicle-padding-start: 16px;
    --vehicle-gap: 22px;
    --vehicle-peek: 40px;
    --vehicle-slide-width: min(275px, calc(100vw - var(--vehicle-padding-start) - var(--vehicle-gap) - var(--vehicle-peek)));
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--vehicle-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--vehicle-padding-start);
    scroll-padding-right: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: var(--vehicle-padding-start);
    padding-right: calc(100vw - var(--vehicle-slide-width) - var(--vehicle-padding-start));
    padding-bottom: 0;
  }

  .vehicles__grid::-webkit-scrollbar {
    display: none;
  }

  .vehicle-card {
    flex: 0 0 var(--vehicle-slide-width);
    width: var(--vehicle-slide-width);
    min-width: 0;
    max-width: var(--vehicle-slide-width);
    min-height: 470px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 8px;
    border-color: #d0d0d0;
  }

  .vehicle-card:last-child {
    scroll-snap-align: center;
  }

  .vehicle-card__image {
    height: 161px;
  }

  .vehicle-card__title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
    color: #1f1f1f;
  }

  .vehicle-card__text {
    font-size: 14px;
    line-height: 1.29;
    font-weight: var(--font-weight-regular);
    color: #3b3b3b;
  }

  .vehicle-card .btn--vehicle {
    width: calc(100% - 40px);
    min-width: 0;
    margin: auto 20px 20px;
    border-radius: 4px;
  }

  /* Locations — Figma frame 16:1535 (430 × 722) */
  .locations {
    padding: 70px 0;
  }

  .locations__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 16px;
  }

  .locations__header {
    margin: 0;
  }

  .locations__header .badge {
    display: none;
  }

  .locations__title {
    font-size: 30px;
    font-weight: var(--font-weight-semibold);
    line-height: 31px;
    letter-spacing: 0;
    color: #1f312c;
    text-align: center;
  }

  .locations__grid {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
    max-width: none;
  }

  .location-card {
    width: 100%;
    min-width: 0;
    height: 148px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
  }

  .location-card::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 100%);
  }

  .location-card__name {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.24px;
  }
}
