:root {
  --orange: #ff7a22;
  --orange-dark: #e56a18;
  --gold: #c9a86a;
  --black: #000000;
  --text: #111111;
  --white: #ffffff;
  --font: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1470px, calc(100% - 30px));
  margin: 0 auto;
}

/* Header — поверх hero, как на octane.club */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.28em;
  font-weight: 300;
  font-size: 13px;
}

.logo-main {
  color: var(--text);
  letter-spacing: 0.18em;
}

.logo-sub {
  color: var(--orange);
  font-size: 11px;
  margin-top: 4px;
  letter-spacing: 0.18em;
}

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

.brand-wordmark__club {
  color: var(--orange);
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  text-transform: lowercase;
  color: var(--black);
}

.nav a:hover {
  color: var(--orange);
}

.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

/* Hero — полное фото без обрезки (пропорция 1919×918) */
.hero {
  position: relative;
  width: 100%;
  height: min(100vh, calc(100vw * 918 / 1919));
  min-height: 520px;
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, transparent 48%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  color: var(--white);
  padding: 96px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content.container {
  max-width: min(1470px, calc(100% - 30px));
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

.hero-brand,
.hero-model,
.home-hero__brand {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(36px, 4.8vw, 45px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-tagline,
.home-hero__tagline {
  margin: 0;
  text-align: center;
  font-size: clamp(16px, 2.1vw, 21px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-model {
  margin-bottom: 32px;
}

.hero-features,
.home-hero__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  max-width: 720px;
}

.hero-features li,
.home-hero__features li {
  position: relative;
  padding-left: 64px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-features li::before,
.home-hero__features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -1px;
  width: 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.98);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
}

.hero-regions,
.home-hero__regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.hero-region,
.home-hero__region {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 200px;
  width: min(280px, calc((100% - 24px) / 3));
  min-height: 51px;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: background 0.2s ease;
}

.hero-region:hover,
.home-hero__region:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Same pill shape on white sections (catalog tabs) */
.hero-region-pill {
  border-radius: 20px;
  min-height: 51px;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 500;
  border-width: 2px;
}

/* Europe city picker (replaces Moscow / Sochi / Dubai) */
.europe-picker {
  position: relative;
  display: inline-flex;
}

.europe-picker__toggle {
  cursor: pointer;
  font-family: var(--font);
}

.europe-picker__menu {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  z-index: 20;
  min-width: 220px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.europe-picker__menu.hidden {
  display: none;
}

.europe-picker__city {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: background 0.15s;
}

.europe-picker__city:hover {
  background: rgba(255, 122, 34, 0.2);
  color: #fff;
}

.catalog-section__head--solo {
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-outline {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  font-weight: 600;
}

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

/* Main */
.page-main {
  padding: 32px 0 0;
}

.breadcrumbs {
  font-size: 12px;
  color: #999;
  margin-bottom: 24px;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs span {
  margin: 0 6px;
}

.page-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.section-label {
  margin: 36px 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-label:first-child {
  margin-top: 0;
}

.section-heading {
  margin: 0 0 40px;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.btn-block {
  width: 100%;
}

.btn-secondary {
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-solid {
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--orange);
}

/* Product — цены слева, слайдер справа */
.product-section {
  margin-bottom: 48px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
}

.product-info,
.product-media {
  flex: 0 0 48%;
  max-width: 48%;
  width: 48%;
}

.product-media {
  max-width: 48%;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 16px 18px;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.01em;
}

.price-table th {
  font-weight: 600;
  font-size: 15px;
  color: #222;
  background: #fafafa;
}

.price-table td:first-child {
  font-weight: 500;
  font-size: 16px;
  color: #111;
}

.price-table td:not(:first-child) {
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  text-align: right;
}

.price-accordion {
  margin-top: 20px;
  border: 1px solid #e8e8e8;
}

.price-accordion summary {
  padding: 16px 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  list-style: none;
  color: var(--black);
}

.price-accordion summary::-webkit-details-marker {
  display: none;
}

.price-accordion summary::after {
  content: "▾";
  float: right;
  color: var(--orange);
}

.price-accordion[open] summary::after {
  transform: rotate(180deg);
}

.price-accordion .price-table {
  border-top: 1px solid #e8e8e8;
}

.price-note {
  margin: 28px 0 36px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.01em;
}

.price-note a {
  color: var(--orange);
  text-decoration: underline;
}

.product-actions {
  display: grid;
  gap: 12px;
}

/* Slider */
.slider {
  position: relative;
  background: #f4f4f4;
}

.slider-frame {
  aspect-ratio: 689 / 459;
  width: 100%;
  overflow: hidden;
}

.slider-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-fav {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  cursor: pointer;
}

.product-media .specs-grid {
  margin-top: 0;
  margin-bottom: 0;
}

/* Specs */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--orange);
  border: 1px solid var(--orange);
}

.spec {
  background: var(--white);
  padding: 22px 12px;
  text-align: center;
}

.spec-k {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.spec-v {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.01em;
}

.description p {
  max-width: 1100px;
  margin: 0 auto 48px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  color: #222;
}

/* Benefits banner */
.benefits-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 64px;
}

.benefits-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.benefits-banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 48px 0;
}

.benefits-banner-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 520px;
}

.benefits-banner-content li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefits-banner-content li::before {
  content: "✦";
  position: absolute;
  left: 0;
  width: 36px;
  text-align: center;
}

/* Tariffs */
.tariffs-section {
  margin-bottom: 64px;
}

.table-wrap {
  overflow-x: auto;
}

.tariffs-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.tariffs-table th,
.tariffs-table td {
  border: 1px solid #ddd;
  padding: 18px 16px;
  text-align: center;
}

.tariffs-table th {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  background: #fafafa;
}

.tariffs-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--orange);
}

.tariffs-table td:not(:first-child) {
  font-weight: 700;
  color: var(--black);
}

.tariffs-note {
  margin: 20px 0 36px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.quick-booking {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 0.85fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin: 0;
}

.quick-booking input,
.quick-booking select {
  height: 54px;
  border: 1px solid #ccc;
  border-radius: 999px;
  padding: 0 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.quick-booking .btn-solid {
  min-width: 0;
  width: 100%;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.privacy-note {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-align: center;
}

.privacy-note a {
  color: var(--orange);
}

/* Related cars */
.related-section {
  padding: 64px 0;
  background: #fafafa;
}

.related-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.related-track {
  display: flex;
  flex: 1;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0;
}

.related-section .car-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  scroll-snap-align: start;
  padding: 12px 25px 16px;
  border: 1px solid #ebebeb;
}

.related-section .car-card-head {
  min-height: 62px;
  padding: 0 0 10px;
}

.related-section .car-card-img {
  aspect-ratio: unset;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.related-section .car-card-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center center;
}

.related-section .car-card-specs {
  border-top: none;
  padding: 14px 0 12px;
  text-align: center;
}

.related-section .car-card-btn {
  cursor: pointer;
  margin: 0;
  width: 100%;
  padding: 5px 16px;
  min-height: 34px;
  box-sizing: border-box;
  border-radius: 21px;
  font-size: 21px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.related-track::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  flex-shrink: 0;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.related-carousel .carousel-btn {
  width: 36px;
  height: 72px;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 56px;
  color: #3a3a3a;
}

.car-card {
  flex: 1 1 0;
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.car-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.car-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.car-fav {
  font-size: 26px;
  color: #ccc;
}

.car-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-card-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  border-top: 1px solid #ddd;
}

.car-card-specs strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
}

.car-card-btn {
  margin: 0;
  width: 100%;
  padding: 5px 16px;
  min-height: 34px;
  box-sizing: border-box;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: 21px;
  font-size: 21px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.car-card:hover .car-card-btn,
.car-card:focus-visible .car-card-btn {
  background: var(--white);
  color: var(--black);
  border-color: var(--orange);
}

/* Services */
.services-section {
  padding: 64px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-tile:hover img {
  transform: scale(1.05);
}

.service-tile span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
}

/* Conditions */
.conditions-section {
  padding: 64px 0;
  text-align: center;
}

.conditions-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.conditions-videos .video-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 280px;
  overflow: hidden;
}

.conditions-videos .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conditions-videos .video-thumb .play {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.conditions-list {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  max-width: 720px;
}

.conditions-list li {
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Bottom rent form — octane.club: bg 1440×631, no upscale blur */
.rent-footer-form {
  padding: 40px 0;
  background-color: #111;
  background-image: url("../assets/home/rent-form-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1440px 631px;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

@supports not (background-image: url("../assets/home/rent-form-bg.webp")) {
  .rent-footer-form {
    background-image: url("../assets/home/rent-form-bg.jpg");
  }
}

@media (max-width: 1440px) {
  .rent-footer-form {
    background-size: min(100%, 1440px) auto;
  }
}

.dubai-page .rent-footer-form,
.europe-page .rent-footer-form {
  background-size: 1440px 631px;
  background-position: center center;
  padding: 40px 0;
}

@media (max-width: 1440px) {
  .dubai-page .rent-footer-form,
.europe-page .rent-footer-form {
    background-size: min(100%, 1440px) auto;
  }
}

.rent-footer-form__form {
  max-width: 766px;
  padding: 80px 20px 40px;
  box-sizing: border-box;
  margin: 0 auto;
}

.rent-footer-form__title {
  color: #fff;
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.rent-footer-form__title.title-main {
  color: #fff;
  font-weight: 300;
}

.rent-footer-form__form .form__input,
.rent-footer-form__form input:not(.checkbox__input):not(.phone-field__number):not(.phone-field__search):not(.form__input--verification):not(.form__submit) {
  width: 100%;
  max-width: 260px;
  margin: 0 0 15px;
  outline: none;
  padding: 5px 15px;
  border: 1px solid #e8e8e8;
  appearance: none;
  display: block;
  color: #595959;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 21px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.rent-footer-form__form .phone-field {
  max-width: 260px;
  width: 100%;
  margin: 0 0 15px;
  border: 1px solid #e8e8e8;
  border-radius: 21px;
  background: #fff;
  min-height: 42px;
  padding: 0;
  display: block;
}

.rent-footer-form__form .phone-field__code {
  border-right: 1px solid #e8e8e8;
}

.rent-footer-form__form .phone-field__number {
  height: 40px;
  font-size: 18px;
}

.rent-footer-form__form .form__textarea,
.rent-footer-form__form textarea {
  width: 100%;
  max-width: 766px;
  margin: 0 0 15px;
  padding: 10px 15px;
  display: block;
  height: 130px;
  color: #595959;
  font-size: 18px;
  font-weight: 400;
  border-radius: 21px;
  border: 1px solid #e8e8e8;
  background: #fff;
  resize: none;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.rent-footer-form__form textarea::placeholder,
.rent-footer-form__form input::placeholder {
  font-size: 18px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.rent-footer-form__form .form__submit,
.rent-footer-form__form input.form__submit {
  width: 260px;
  max-width: 100%;
  border: 1px solid #e06c2a;
  margin: 30px 0 20px;
  padding: 8px 15px;
  line-height: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-transform: lowercase;
  display: block;
  cursor: pointer;
  background: #e06c2a;
  background-color: #e06c2a;
  border-radius: 21px;
  font-family: "Montserrat", sans-serif;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.rent-footer-form form .form__submit:hover,
.rent-footer-form form input.form__submit:hover {
  background: #fff;
  background-color: #fff;
  color: #191919;
  border: 1px solid #fff;
}

.form-rent-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.form-rent-bottom .form__input,
.form-rent-bottom [data-phone-input],
.form-rent-bottom .phone-field,
.form-rent-bottom .form__submit {
  align-self: flex-start;
}

.form-rent-bottom textarea {
  width: 100%;
  max-width: 100%;
}

.form-rent-bottom .checkbox {
  align-self: center;
}

.form-rent-bottom .checkbox {
  display: flex;
  margin: 5px auto;
  color: #fff;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}

.form-rent-bottom .checkbox a {
  color: #fff;
}

.form-rent-bottom .checkbox a:hover {
  text-decoration: underline;
}

.form-rent-bottom .checkbox__label {
  width: 15px;
  height: 17px;
  margin: 0 5px 0 0;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.form-rent-bottom .checkbox__input {
  left: 0;
  top: 2px;
  margin: 0;
  position: absolute;
  visibility: hidden;
}

.form-rent-bottom .icon-checkbox {
  top: 2px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  position: relative;
  border: 2px solid #e06c2a;
  display: inline-block;
}

.form-rent-bottom .checkbox__input:checked + .icon-checkbox {
  background: #e06c2a;
}

.rent-footer-form__form .checkbox__text {
  font-size: 13px;
  line-height: 23px;
}

.form__input--verification {
  display: none !important;
}

@media (max-width: 1092px) {
  .rent-footer-form__form {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 20px;
  }
}

@media (max-width: 560px) {
  .rent-footer-form__form {
    padding: 20px;
  }

  .rent-footer-form {
    padding: 50px 0 40px;
  }

  .rent-footer-form__title {
    font-size: 22px;
  }

  .rent-footer-form__form textarea {
    height: 140px;
    font-size: 12px;
  }

  .rent-footer-form__form input:not(.checkbox__input),
  .rent-footer-form__form .phone-field {
    max-width: 100%;
    height: auto;
    font-size: 12px;
  }

  .rent-footer-form__form .form__submit {
    width: 100%;
    max-width: inherit;
    line-height: 1;
    font-size: 12px;
    padding: 8px 16px;
  }

  .rent-footer-form__form textarea::placeholder,
  .rent-footer-form__form input::placeholder {
    font-size: 12px;
  }

  .rent-footer-form__form .checkbox__text {
    font-size: 12px;
  }
}

/* Legacy alias — old markup still loads style.css paths from nested pages */
.cta-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.cta-banner-content h2 {
  margin: 0 0 32px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form input {
  height: 48px;
  border: 1px solid #ddd;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 14px;
}

.booking-form input:focus {
  outline: none;
  border-color: var(--orange);
}

/* Footer */
.site-footer {
  border-top: 1px solid #eee;
  padding: 48px 0 24px;
  font-size: 13px;
  color: #666;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

.footer-phone {
  display: block;
  margin: 16px 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--orange);
}

.footer-email,
.footer-hours {
  margin: 8px 0;
  color: var(--orange);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--orange);
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #999;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-panel {
  position: relative;
  background: var(--white);
  width: min(440px, calc(100% - 32px));
  padding: 32px 28px;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.modal-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666;
}

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

  .product-grid {
    flex-direction: column;
  }

  .product-info,
  .product-media {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .product-media {
    order: -1;
  }

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

  .quick-booking {
    grid-template-columns: 1fr;
  }

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

  .conditions-videos {
    grid-template-columns: 1fr;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-phone {
    font-size: 12px;
  }

  .hero-features li,
  .home-hero__features li {
    font-size: 15px;
    padding-left: 52px;
  }

  .hero-region,
  .home-hero__region {
    width: 100%;
    max-width: 280px;
    font-size: 16px;
    min-height: 48px;
  }

  .hero-content {
    min-height: auto;
    padding: 100px 0 56px;
  }

  .hero {
    min-height: 85vh;
  }

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

  .car-card-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Gallery lightbox */
body.lightbox-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.96);
  color: #fff;
  overflow: hidden;
  touch-action: manipulation;
}

.gallery-lightbox.hidden {
  display: none;
}

.gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.gallery-lightbox__prev {
  left: 20px;
}

.gallery-lightbox__next {
  right: 20px;
}

.gallery-lightbox__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 56px 72px 16px;
}

.gallery-lightbox__img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 200px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-lightbox__caption {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.gallery-lightbox__thumbs-wrap {
  flex-shrink: 0;
  padding: 12px 24px 24px;
  overflow: hidden;
}

.gallery-lightbox__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.gallery-lightbox__thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  scroll-snap-align: center;
  overflow: hidden;
}

.gallery-lightbox__thumb.is-active {
  border-color: var(--orange);
}

@media (max-width: 767px) {
  .gallery-lightbox {
    height: 100dvh;
    max-height: 100dvh;
  }

  .gallery-lightbox__stage {
    flex: 1 1 auto;
    min-height: 0;
    padding: 52px 8px 8px;
    justify-content: center;
    overflow: hidden;
  }

  .gallery-lightbox__img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: min(58dvh, calc(100dvh - 220px));
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  .gallery-lightbox__caption {
    flex-shrink: 0;
    font-size: 13px;
    padding: 10px 12px 0;
    text-align: center;
    max-width: 100%;
  }

  .gallery-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.16);
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-lightbox__prev {
    left: 8px;
  }

  .gallery-lightbox__next {
    right: 8px;
  }

  .gallery-lightbox__thumbs-wrap {
    flex-shrink: 0;
    padding: 8px 0 max(12px, env(safe-area-inset-bottom));
    overflow: hidden;
  }

  .gallery-lightbox__thumbs {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .gallery-lightbox__thumb {
    width: 72px;
    height: 48px;
  }

  .gallery-lightbox__thumbs {
    padding-left: 0;
    padding-right: 0;
  }
}

.gallery-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* International phone field */
.phone-field {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 54px;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: #fff;
  overflow: visible;
}

.phone-field__code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 14px 0 18px;
  border: none;
  border-right: 1px solid #e0e0e0;
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
}

.phone-field__chevron {
  font-size: 10px;
  color: #888;
}

.phone-field__number {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: none;
  border-radius: 0 999px 999px 0;
  padding: 0 20px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  background: transparent;
}

.phone-field__number:focus {
  outline: none;
}

.phone-field__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 50;
  width: min(320px, 100%);
  max-height: 280px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.phone-field__dropdown.hidden {
  display: none;
}

.phone-field__search {
  width: 100%;
  height: 44px;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 14px;
}

.phone-field__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 220px;
  overflow-y: auto;
}

.phone-field__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
}

.phone-field__option:hover,
.phone-field__option.is-active {
  background: #f7f7f7;
}

.phone-field__option .phone-field__name {
  flex: 1;
}

.phone-field__option .phone-field__dial {
  font-weight: 600;
  color: #666;
}

.quick-booking .phone-field,
.booking-form .phone-field,
.home-booking__form .phone-field {
  grid-column: auto;
}

.rent-footer-form__form .phone-field {
  grid-column: auto;
}

.quick-booking input:not(.phone-field__number):not(.phone-field__search),
.booking-form input:not(.phone-field__number):not(.phone-field__search) {
  height: 54px;
}
