:root {
  --navy: #0b2740;
  --blue: #106da1;
  --blue-dark: #0b5684;
  --sky: #d9e8f1;
  --paper: #f4f7f1;
  --surface: #ffffff;
  --ink: #17242d;
  --muted: #6b7b83;
  --line: #d8e1e5;
  --orange: #ff6b3a;
  --yellow: #f6c84d;
  --teal: #0f897b;
  --shadow: 0 14px 34px rgba(10, 39, 64, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #cddde7;
}

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

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sprite {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 clamp(18px, 6vw, 86px);
  color: #ffffff;
  background: var(--navy);
  border-bottom: 4px solid #071a2a;
}

.brand,
nav a,
.header-call,
.button {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
}

.brand span {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 4px;
  font-weight: 900;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.language-switcher select {
  color: #ffffff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 900;
}

.language-switcher option {
  color: var(--ink);
}

.hero {
  padding: 0 clamp(12px, 4vw, 56px) 34px;
  background: var(--sky);
}

.hero-shell {
  max-width: 1180px;
  margin: 0 auto;
  overflow: visible;
  background: var(--paper);
  border: 10px solid #071a2a;
  border-top: 0;
  box-shadow: 0 24px 55px rgba(7, 26, 42, 0.22);
}

.hero-stage {
  position: relative;
  min-height: 660px;
  overflow: visible;
  padding: 28px 34px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.7)),
    linear-gradient(180deg, #b8d4e6 0%, #eef4f6 52%, var(--paper) 52%);
}

.city-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  min-height: 360px;
  overflow: visible;
  padding: 38px 360px 42px 48px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 22, 38, 0.72), rgba(8, 22, 38, 0.16)),
    linear-gradient(120deg, #1b3445, #d7a768 48%, #edf6fb 52%, #607d8c);
  box-shadow: inset 0 -60px 80px rgba(12, 39, 64, 0.16);
}

.city-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 100% 56px;
  opacity: 0.45;
}

.city-sun {
  position: absolute;
  left: 50%;
  top: 35%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 245, 212, 0.95), rgba(255, 151, 73, 0.35) 48%, transparent 70%);
  transform: translate(-50%, -50%);
}

.hero-copy {
  display: none;
}

.rating,
.eyebrow,
.section-title p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.hero-copy p:not(.rating) {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.hero-spotlight {
  position: absolute;
  z-index: 3;
  left: 48px;
  right: 382px;
  bottom: 28px;
  width: auto;
  transform: none;
}

.hero-offer-panel {
  position: absolute;
  z-index: 5;
  left: 0;
  top: -285px;
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 238px;
  padding: 16px 320px 16px 20px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 191, 0.98)),
    #ffffff;
  border: 2px solid var(--yellow);
  border-left: 8px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 18px 36px rgba(7, 26, 42, 0.28);
}

.hero-offer-panel::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background: #fff3bf;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg);
}

.hero-offer-kicker {
  width: max-content;
  padding: 4px 8px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-offer-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
}

.hero-offer-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.hero-offer-price del {
  color: #7d8b92;
  font-size: 15px;
  font-weight: 850;
}

.hero-offer-price strong {
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.hero-offer-price span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.hero-offer-media {
  position: absolute;
  right: 20px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 268px;
  height: 166px;
  overflow: visible;
  pointer-events: none;
  perspective: 800px;
}

.hero-offer-media img,
.hero-offer-media .car-visual {
  position: relative;
  z-index: 2;
  animation: offerCarTurn 4.6s ease-in-out infinite;
  transform-style: preserve-3d;
  transform-origin: center bottom;
  will-change: transform;
}

.hero-offer-media img {
  width: 336px;
  height: 174px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 16px 14px rgba(7, 26, 42, 0.25));
  mix-blend-mode: normal;
}

.hero-offer-media .car-visual {
  width: 146px;
  height: 82px;
  box-shadow: none;
  filter: drop-shadow(0 16px 14px rgba(7, 26, 42, 0.28));
}

.hero-offer-orbit {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 210px;
  height: 48px;
  border: 2px solid rgba(255, 107, 58, 0.55);
  border-top-color: rgba(16, 109, 161, 0.18);
  border-radius: 999px;
  transform: translateX(-50%) rotate(-5deg);
  animation: offerOrbit 2.8s linear infinite;
}

@keyframes offerCarTurn {
  0%,
  100% {
    transform: rotateY(-8deg) rotateX(2deg) translateY(0) scale(1);
  }

  50% {
    transform: rotateY(7deg) rotateX(0deg) translateY(-5px) scale(1.04);
  }
}

@keyframes offerOrbit {
  from {
    transform: translateX(-50%) rotate(-5deg);
  }

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

.hero-offer-panel p {
  margin: 0;
  color: #2d4350;
  font-size: 13px;
  line-height: 1.45;
}

.hero-offer-perks {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-offer-perks span {
  padding: 4px 7px;
  color: #20485c;
  background: #dfeef4;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 900;
}

.hero-offer-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: max-content;
  padding: 0 13px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.hero-car-art {
  display: none;
}

.hero-car-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.hero-car-art svg {
  width: 260px;
  height: 150px;
  color: #ffffff;
}

.car-visual {
  position: relative;
  width: min(94%, 310px);
  height: 138px;
  margin: 0 auto;
}

.hero-car-art .car-visual {
  width: min(100%, 410px);
  height: 180px;
}

.mini-car-photo .car-visual {
  width: min(96%, 190px);
  height: 86px;
}

.car-photo .car-visual {
  width: min(96%, 210px);
  height: 100px;
}

.car-roof {
  position: absolute;
  left: 24%;
  right: 25%;
  top: 16%;
  height: 35%;
  background: linear-gradient(140deg, #ffffff, #a8d2e9 46%, #24445c 47%);
  border-radius: 60% 56% 12% 12%;
  border: 3px solid rgba(255, 255, 255, 0.88);
}

.car-body {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 24%;
  height: 36%;
  background: linear-gradient(180deg, #ffffff 0 18%, var(--car-main, #2d8fc3) 19% 100%);
  border-radius: 55% 42% 18% 18%;
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.15);
}

.car-body::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 24%;
  top: 14%;
  height: 3px;
  background: rgba(255, 255, 255, 0.65);
}

.car-light {
  position: absolute;
  right: 9%;
  bottom: 43%;
  width: 24px;
  height: 9px;
  background: #fff0a8;
  border-radius: 999px;
}

.wheel {
  position: absolute;
  bottom: 13%;
  width: 21%;
  aspect-ratio: 1;
  background: #132432;
  border: 8px solid #2e4656;
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px #cbd7dc;
}

.wheel-left {
  left: 18%;
}

.wheel-right {
  right: 18%;
}

.car-visual-0 {
  --car-main: #126da1;
}

.car-visual-1 {
  --car-main: #c93434;
}

.car-visual-2 {
  --car-main: #2b3944;
}

.car-visual-3 {
  --car-main: #f0b735;
}

.car-visual-4 {
  --car-main: #0f897b;
}

.hero-car-badge {
  display: none;
}

.hero-car-badge span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-car-badge strong {
  font-size: 15px;
}

.booking-card {
  position: absolute;
  z-index: 8;
  top: 52px;
  right: 48px;
  display: grid;
  gap: 10px;
  width: 300px;
  padding: 18px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.booking-card h2 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 22px;
}

label {
  display: grid;
  gap: 6px;
  color: #344651;
  font-size: 12px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 36px;
  padding: 0 9px;
  color: var(--ink);
  background: #f8fbfc;
  border: 1px solid #cfdbe1;
  border-radius: 2px;
  font: inherit;
}

.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  font-weight: 950;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  background: var(--orange);
}

.button.secondary {
  color: #ffffff;
  background: var(--blue);
}

.button.red {
  color: #ffffff;
  background: var(--orange);
}

.button.full {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.road-wrap {
  display: none;
}

.road-wrap::before {
  content: "";
  position: absolute;
  left: 68px;
  top: -210px;
  width: 180px;
  height: 520px;
  border: 34px solid #aebac0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 140px 0 0 0;
}

.road-line,
.road-line::before {
  position: absolute;
  display: block;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0 30px, transparent 30px 58px);
}

.road-line {
  left: 112px;
  bottom: 36px;
  width: 3px;
  height: 330px;
}

.road-line::before {
  content: "";
  left: 156px;
  bottom: -2px;
  width: 320px;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 32px, transparent 32px 62px);
}

.hero-fleet {
  position: absolute;
  z-index: 4;
  left: 42px;
  right: 360px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 160px;
  overflow: visible;
  pointer-events: none;
}

.fleet-lineup-track {
  display: grid;
  place-items: end center;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 4px;
}

.hero-lineup-image {
  width: min(100%, 900px);
  max-height: 160px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 16px rgba(7, 26, 42, 0.16));
}

.lineup-car {
  flex: 0 0 clamp(118px, 18%, 172px);
  display: grid;
  place-items: end center;
  min-width: 0;
  margin-left: -30px;
  transform: translateY(var(--lineup-y, 0)) scale(var(--lineup-scale, 1));
}

.lineup-car:first-child {
  margin-left: 0;
}

.lineup-car:nth-child(1),
.lineup-car:nth-child(5),
.lineup-car:nth-child(6) {
  --lineup-y: 10px;
  --lineup-scale: 0.84;
}

.lineup-car:nth-child(2),
.lineup-car:nth-child(4) {
  --lineup-y: 4px;
  --lineup-scale: 0.92;
}

.lineup-car:nth-child(3) {
  --lineup-y: 0;
  --lineup-scale: 1.08;
  z-index: 2;
}

.lineup-car img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: normal;
}

.lineup-car .car-visual {
  width: 100%;
  max-width: 190px;
  height: 92px;
  margin: 0;
}

.mini-car {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
}

.mini-car-info {
  z-index: 2;
  min-height: 70px;
  padding: 12px 14px;
  color: #ffffff;
  background: #214965;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.mini-car-info strong,
.mini-car-info span {
  display: block;
}

.mini-car-info strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.mini-car-info span {
  color: #f0c75c;
  font-size: 12px;
  font-weight: 900;
}

.mini-car-photo {
  height: 105px;
  margin-top: -28px;
  display: grid;
  place-items: end center;
  filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.24));
}

.mini-car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.mini-car-photo svg {
  width: 148px;
  height: 84px;
  color: var(--blue-dark);
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 34px 24px;
  background: var(--paper);
}

.promo-strip article {
  padding: 14px 16px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 3px;
}

.promo-strip span,
.promo-strip small {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.promo-strip strong {
  display: block;
  margin: 3px 0;
  color: var(--yellow);
  font-size: 22px;
}

.cars-section,
.map-demo-section,
.offers-section,
.why-section,
.about-section,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px clamp(16px, 4vw, 44px);
  background: var(--paper);
}

.section-title {
  margin-bottom: 24px;
  text-align: center;
}

.section-title p {
  justify-content: center;
  color: var(--blue);
}

.section-title h2,
.about-section h2,
.contact-section h2,
.why-section h2,
.deal-banner h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.car-card,
.offer-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(10, 39, 64, 0.08);
}

.car-photo {
  display: grid;
  place-items: center;
  height: 126px;
  overflow: hidden;
  color: var(--blue);
  background: linear-gradient(135deg, #dfeaf0, #ffffff);
  border-radius: 2px;
}

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

.car-photo svg {
  width: 110px;
  height: 70px;
}

.car-card h3,
.offer-card h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 16px;
}

.car-meta,
.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.car-meta span,
.offer-meta span {
  padding: 5px 7px;
  color: #31546a;
  background: #e8f0f4;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 900;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.price-line strong {
  color: var(--orange);
  font-size: 17px;
}

.map-demo-section {
  padding-top: 30px;
  background: #eef5f7;
}

.map-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.morocco-map-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #d9e8f1;
  border: 1px solid #c6d9e2;
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(10, 39, 64, 0.12);
}

.morocco-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.98);
}

.map-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-demo-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 44px;
  padding: 3px;
  color: var(--teal);
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(15, 137, 123, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.map-demo-pin:hover {
  border-color: var(--orange);
  transform: translate(-50%, -50%) scale(1.06);
}

.map-demo-pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e8f0f4;
  border-radius: 9px;
}

.map-demo-pin svg {
  width: 30px;
  height: 22px;
}

.map-car-list {
  display: grid;
  gap: 12px;
}

.map-car-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(10, 39, 64, 0.08);
}

.map-car-photo {
  height: 76px;
  overflow: hidden;
  background: #e4eef3;
  border-radius: 3px;
}

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

.map-car-photo .car-visual {
  height: 76px;
  transform: scale(0.84);
}

.map-car-card h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
}

.map-car-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.map-car-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.map-car-meta span,
.map-car-meta strong,
.map-car-link {
  padding: 5px 7px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 950;
}

.map-car-meta span {
  color: #31546a;
  background: #e8f0f4;
}

.map-car-meta strong {
  color: var(--orange);
  background: #fff0e9;
}

.map-car-link {
  color: #ffffff;
  background: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
}

.offers-section {
  padding-top: 28px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 830px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 22px;
}

.offer-card::before {
  content: "PROMO";
  position: absolute;
  top: 14px;
  right: -36px;
  width: 130px;
  padding: 7px 0;
  color: #ffffff;
  background: var(--orange);
  text-align: center;
  font-size: 11px;
  font-weight: 950;
  transform: rotate(35deg);
}

.offer-card p {
  color: var(--muted);
  line-height: 1.55;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  color: #ffffff;
  background: var(--blue);
}

.why-section h2,
.why-section .eyebrow {
  color: #ffffff;
}

.why-section p {
  color: #d5e9f2;
  line-height: 1.65;
}

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

.why-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 3px;
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid span {
  margin-top: 8px;
  color: #d5e9f2;
  font-size: 13px;
  line-height: 1.5;
}

.deal-banner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(16px, 4vw, 44px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 107, 58, 0.94), rgba(245, 200, 77, 0.9)),
    var(--orange);
}

.deal-banner h2,
.deal-banner .eyebrow {
  color: #ffffff;
}

.deal-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.gauge {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: var(--orange);
  background: #ffffff;
  border-radius: 999px;
  font-size: 30px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.85fr);
  gap: 28px;
  align-items: center;
  color: #ffffff;
  background: var(--blue-dark);
}

.about-section h2,
.contact-section h2,
.about-section .eyebrow,
.contact-section .eyebrow {
  color: #ffffff;
}

.about-section p:not(.eyebrow),
.contact-section p {
  color: #d9ecf5;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  font-weight: 850;
}

.feature-list svg {
  color: var(--yellow);
}

.contact-section {
  background: #0b2740;
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(16px, 4vw, 44px);
  color: #b8cbd5;
  background: #071a2a;
  border-bottom: 8px solid #071a2a;
  font-size: 13px;
}

.empty {
  grid-column: 1 / -1;
  padding: 22px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
  border: 1px dashed var(--line);
  border-radius: 3px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 12px 18px;
  }

  nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-shell {
    border-width: 6px;
  }

  .hero-stage {
    min-height: 860px;
    padding: 18px;
  }

  .city-panel {
    grid-template-columns: 1fr;
    min-height: 420px;
    padding: 34px 24px 160px;
  }

  .booking-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 440px);
    margin: -120px 0 0 auto;
  }

  .hero-spotlight {
    left: 24px;
    right: 24px;
    bottom: 30px;
    width: auto;
    transform: none;
  }

  .hero-offer-panel {
    left: 0;
    top: -265px;
    width: 100%;
    padding-right: 310px;
  }

  .road-wrap {
    bottom: 0;
    height: 320px;
  }

  .hero-fleet {
    left: 22px;
    right: 22px;
    bottom: 44px;
    height: 190px;
  }

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

  .why-section,
  .map-demo-layout,
  .about-section,
  .contact-section,
  .deal-banner {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

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

  .brand strong {
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  nav {
    gap: 18px;
    font-size: 11px;
  }

  .header-call {
    min-height: 32px;
    padding: 0 10px;
  }

  .hero {
    padding: 0 0 24px;
  }

  .hero-shell {
    border-left: 0;
    border-right: 0;
  }

  .hero-stage {
    min-height: 0;
    padding: 0 14px 24px;
  }

  .city-panel {
    margin: 0 -14px;
    display: block;
    min-height: 0;
    padding: 28px 18px 24px;
  }

  h1 {
    max-width: 320px;
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-copy {
    padding-top: 34px;
    margin-bottom: 18px;
  }

  .hero-copy p:not(.rating) {
    max-width: 330px;
    font-size: 14px;
  }

  .hero-spotlight {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .hero-offer-panel {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin: 0 auto 10px;
    padding: 13px 126px 13px 13px;
    min-height: 220px;
  }

  .hero-offer-panel::after {
    display: none;
  }

  .hero-offer-panel h2 {
    font-size: 19px;
  }

  .hero-offer-price strong {
    font-size: 24px;
  }

  .hero-offer-media {
    right: 34px;
    bottom: 12px;
    width: 120px;
    height: 88px;
  }

  .hero-offer-media img,
  .hero-offer-media .car-visual {
    width: 166px;
    height: 78px;
  }

  .hero-offer-media .car-visual {
    width: 100px;
    height: 58px;
  }

  .hero-offer-orbit {
    width: 112px;
    height: 30px;
  }

  .hero-car-art {
    height: 140px;
  }

  .booking-card {
    width: 100%;
    margin: 16px 0 0;
    padding: 16px;
  }

  .date-grid,
  .promo-strip,
  .hero-fleet,
  .fleet-grid,
  .offers-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .road-wrap,
  .road-line {
    display: none;
  }

  .hero-fleet {
    position: static;
    height: 130px;
    margin-top: 18px;
  }

  .fleet-lineup-track {
    padding: 0 8px 8px;
  }

  .hero-lineup-image {
    max-height: 122px;
  }

  .lineup-car {
    flex-basis: 118px;
    margin-left: -30px;
  }

  .lineup-car:first-child {
    margin-left: 0;
  }

  .lineup-car img {
    height: 82px;
  }

  .lineup-car .car-visual {
    height: 62px;
  }

  .mini-car {
    min-height: 116px;
  }

  .mini-car-photo {
    height: 90px;
  }

  .promo-strip,
  .cars-section,
  .map-demo-section,
  .offers-section,
  .why-section,
  .about-section,
  .contact-section,
  .deal-banner {
    padding: 30px 14px;
  }

  .morocco-map-frame {
    min-height: 340px;
  }

  .map-car-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .map-car-link {
    grid-column: 1 / -1;
    width: max-content;
  }

  .deal-banner {
    text-align: left;
  }

  .gauge {
    width: 82px;
    height: 82px;
    font-size: 24px;
  }

  .contact-actions {
    display: grid;
  }

  footer {
    display: grid;
    padding: 18px 14px;
  }
}
