:root {
  --gold-primary: #D49A22;
  --gold-light: #E8B54A;
  --gold-dark: #B57A1A;
  --black: #0A0A0A;
  --dark: #10141A;
  --white: #FFFFFF;
  --light-gray: #F8F8F8;
  --gold-gradient: linear-gradient(135deg, #B57A1A 0%, #D49A22 50%, #E8B54A 100%);
  --bs-primary: #D49A22;
  --bs-link-color: #D49A22;
  --bs-link-hover-color: #B57A1A;
  --bs-accent: #D49A22;
  --bs-success: #D49A22;
  --bs-info: #D49A22;
  --bs-green: #D49A22;
  --bs-primary-rgb: 212, 154, 34;
  --bs-accent-rgb: 212, 154, 34;
  --bs-success-rgb: 212, 154, 34;
  --bs-info-rgb: 212, 154, 34;
  --mc-ink: #0A0A0A;
  --mc-muted: #686868;
  --mc-line: #E8E1D4;
  --mc-soft: #F8F8F8;
  --mc-panel: #ffffff;
  --mc-black: #0A0A0A;
  --mc-shadow: 0 26px 70px rgba(10, 10, 10, 0.14);
  --mc-luxury-shadow: 0 24px 60px rgba(10, 10, 10, 0.12), 0 8px 22px rgba(211, 154, 43, 0.12);
  --mc-radius-sm: 10px;
  --mc-radius: 16px;
  --mc-radius-lg: 22px;
}

body {
  background: var(--white);
  color: var(--mc-ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.main-wrapper {
  overflow: hidden;
}

.mc-shell {
  width: min(1356px, calc(100% - 48px));
  margin: 0 auto;
}

.mc-eyebrow,
.mc-section-head > p,
.mc-pill {
  color: var(--gold-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.mc-btn:hover {
  transform: translateY(-2px);
}

.mc-btn--primary {
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(181, 122, 26, 0.28);
}

.mc-btn--light,
.mc-btn--ghost {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.mc-btn--ghost {
  min-height: 42px;
  padding: 0 20px;
  background: transparent;
}

.mc-btn--light:hover,
.mc-btn--ghost:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: var(--gold-primary);
  box-shadow: 0 12px 26px rgba(211, 154, 43, 0.24);
}

.mc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(17, 18, 17, 0.54);
  color: #ffffff;
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  overflow: visible;
  transition: background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.mc-header:hover,
.mc-header:focus-within {
  background: #ffffff;
  color: var(--black);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.admin-bar .mc-header {
  top: 32px;
}

.mc-header .mc-shell {
  width: min(1760px, calc(100% - 96px));
}

.mc-nav__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.mc-nav__inner {
  min-height: 70px;
  padding-top: 0;
  padding-bottom: 0;
}

.mc-brand {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  width: 168px;
  height: 70px;
}

.mc-brand__logo {
  display: block;
  width: 168px;
  max-width: 100%;
  height: 88px;
  max-height: 88px;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.24s ease;
}

.mc-brand__logo--light {
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.mc-header:hover .mc-brand__logo--dark,
.mc-header:focus-within .mc-brand__logo--dark {
  opacity: 0;
}

.mc-header:hover .mc-brand__logo--light,
.mc-header:focus-within .mc-brand__logo--light {
  opacity: 1;
}

.mc-menu {
  grid-column: 1;
  min-width: 0;
  overflow: hidden;
}

.mc-menu--right {
  grid-column: auto;
}

.mc-menu__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: clamp(24px, 3vw, 70px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.mc-menu--right .mc-menu__list {
  justify-content: flex-end;
}

.mc-menu__list li {
  position: relative;
}

.mc-menu__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.9;
  transition: color 0.24s ease, opacity 0.2s ease;
}

.mc-header:hover .mc-menu__list a,
.mc-header:focus-within .mc-menu__list a {
  color: var(--black);
}

.mc-menu__list .mc-menu-item-contact > a {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(212, 154, 34, 0.78);
  border-radius: 999px;
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(181, 122, 26, 0.25);
  opacity: 1;
}

.mc-header:hover .mc-menu__list .mc-menu-item-contact > a,
.mc-header:focus-within .mc-menu__list .mc-menu-item-contact > a {
  border-color: var(--gold-primary);
  color: #0A0A0A;
  box-shadow: 0 10px 24px rgba(181, 122, 26, 0.2);
}

.mc-menu__list .mc-menu-item-contact > a:hover,
.mc-menu__list .mc-menu-item-contact > a:focus-visible,
.mc-header:hover .mc-menu__list .mc-menu-item-contact > a:hover,
.mc-header:hover .mc-menu__list .mc-menu-item-contact > a:focus-visible,
.mc-header:focus-within .mc-menu__list .mc-menu-item-contact > a:hover,
.mc-header:focus-within .mc-menu__list .mc-menu-item-contact > a:focus-visible {
  color: #0A0A0A;
  transform: translateY(-1px);
}

.mc-menu__list .mc-menu-item-vans > a,
.mc-menu__list a[href*="/vans-minibus"] {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #ffffff;
}

.mc-header:hover .mc-menu__list .mc-menu-item-vans > a,
.mc-header:hover .mc-menu__list a[href*="/vans-minibus"],
.mc-header:focus-within .mc-menu__list .mc-menu-item-vans > a,
.mc-header:focus-within .mc-menu__list a[href*="/vans-minibus"] {
  color: var(--black);
}

.mc-menu__list .mc-menu-item-vans > a:hover,
.mc-menu__list .mc-menu-item-vans.current-menu-item > a,
.mc-menu__list a[href*="/vans-minibus"]:hover {
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  opacity: 1;
}

.mc-header:hover .mc-menu__list a:hover,
.mc-header:hover .mc-menu__list .current-menu-item > a,
.mc-header:hover .mc-menu__list .current_page_item > a,
.mc-header:hover .mc-menu__list .current-menu-ancestor > a,
.mc-header:focus-within .mc-menu__list a:hover,
.mc-header:focus-within .mc-menu__list .current-menu-item > a,
.mc-header:focus-within .mc-menu__list .current_page_item > a,
.mc-header:focus-within .mc-menu__list .current-menu-ancestor > a {
  color: var(--gold-primary);
}

.mc-menu__list .mc-menu-item-contact > a,
.mc-menu__list .mc-menu-item-contact > a:hover,
.mc-menu__list .mc-menu-item-contact > a:focus-visible {
  color: #ffffff;
}

.mc-header:hover .mc-menu__list .mc-menu-item-contact > a,
.mc-header:hover .mc-menu__list .mc-menu-item-contact > a:hover,
.mc-header:hover .mc-menu__list .mc-menu-item-contact > a:focus-visible,
.mc-header:focus-within .mc-menu__list .mc-menu-item-contact > a,
.mc-header:focus-within .mc-menu__list .mc-menu-item-contact > a:hover,
.mc-header:focus-within .mc-menu__list .mc-menu-item-contact > a:focus-visible {
  color: #0A0A0A;
}

.mc-menu__list a i {
  font-size: 11px;
}

.mc-menu__list a[href*="/vehicules"] i,
.mc-menu__list a[href*="/vehicules"] svg,
.mc-menu__list a[href*="/vehicules"] .dropdown_icon,
.mc-menu__list a[href*="/vehicules"]::after,
.mc-menu__list li:has(a[href*="/vehicules"])::after,
.mc-menu__list li:has(a[href*="/vehicules"]) > a::after,
.mc-menu__list a[href*="/vans-minibus"] i,
.mc-menu__list a[href*="/vans-minibus"] svg,
.mc-menu__list a[href*="/vans-minibus"] .dropdown_icon,
.mc-menu__list a[href*="/vans-minibus"]::after,
.mc-menu__list li:has(a[href*="/vans-minibus"])::after,
.mc-menu__list li:has(a[href*="/vans-minibus"]) > a::after {
  display: none !important;
  content: none !important;
}

.mc-menu__list a:hover,
.mc-menu__list .current-menu-item > a,
.mc-menu__list .current_page_item > a,
.mc-menu__list .current-menu-ancestor > a {
  color: var(--gold-primary);
  opacity: 1;
}

.mc-header:hover .mc-menu__list a:hover,
.mc-header:hover .mc-menu__list .current-menu-item > a,
.mc-header:hover .mc-menu__list .current_page_item > a,
.mc-header:hover .mc-menu__list .current-menu-ancestor > a,
.mc-header:focus-within .mc-menu__list a:hover,
.mc-header:focus-within .mc-menu__list .current-menu-item > a,
.mc-header:focus-within .mc-menu__list .current_page_item > a,
.mc-header:focus-within .mc-menu__list .current-menu-ancestor > a {
  color: var(--gold-primary);
}

.mc-menu__list a:focus,
.mc-menu__list a:active,
.mc-header:hover .mc-menu__list a:focus,
.mc-header:hover .mc-menu__list a:active,
.mc-header:focus-within .mc-menu__list a:focus,
.mc-header:focus-within .mc-menu__list a:active,
.mc-header-icon:focus,
.mc-header-icon:active,
.mc-header:hover .mc-header-icon:focus,
.mc-header:hover .mc-header-icon:active,
.mc-header:focus-within .mc-header-icon:focus,
.mc-header:focus-within .mc-header-icon:active {
  color: var(--gold-primary);
}

.mc-menu__list ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--mc-line);
  border-radius: 12px;
  box-shadow: var(--mc-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.mc-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mc-menu__list ul a {
  color: var(--mc-ink);
  min-height: 36px;
}

.mc-nav__actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 56px);
}

.mc-nav__right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 58px);
}

.mc-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(7, 14, 24, 0.24);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.mc-lang-switcher__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mc-lang-switcher__option:hover,
.mc-lang-switcher__option:focus-visible {
  color: #d6a84f;
}

.mc-lang-switcher__option.is-active {
  color: #101723;
  background: linear-gradient(135deg, #f0d389, #c99a3c);
  box-shadow: 0 8px 18px rgba(201, 154, 60, 0.28);
}

.mc-lang-switcher > span {
  width: 1px;
  height: 16px;
  margin: 0 2px;
  background: rgba(255, 255, 255, 0.22);
}

.mc-header:hover .mc-lang-switcher,
.mc-header:focus-within .mc-lang-switcher {
  border-color: rgba(201, 154, 60, 0.32);
  background: rgba(255, 255, 255, 0.9);
}

.mc-header:hover .mc-lang-switcher__option,
.mc-header:focus-within .mc-lang-switcher__option {
  color: #182232;
}

.mc-header:hover .mc-lang-switcher__option:hover,
.mc-header:hover .mc-lang-switcher__option:focus-visible,
.mc-header:focus-within .mc-lang-switcher__option:hover,
.mc-header:focus-within .mc-lang-switcher__option:focus-visible {
  color: #a87517;
}

.mc-header:hover .mc-lang-switcher__option.is-active,
.mc-header:focus-within .mc-lang-switcher__option.is-active {
  color: #101723;
}

.mobile-menu .mc-lang-switcher--mobile {
  margin-top: 24px;
  border-color: rgba(201, 154, 60, 0.3);
  background: #f7f4ee;
  box-shadow: none;
}

.mobile-menu .mc-lang-switcher__option {
  color: #182232;
}

.mc-header-icon,
.mc-grid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  opacity: 0.92;
  transition: color 0.24s ease, opacity 0.2s ease, transform 0.2s ease;
}

.mc-header:hover .mc-header-icon,
.mc-header:focus-within .mc-header-icon {
  color: var(--black);
}

.mc-header-icon:hover,
.mc-header-icon:focus {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.mc-header:hover .mc-header-icon:hover,
.mc-header:hover .mc-header-icon:focus,
.mc-header:focus-within .mc-header-icon:hover,
.mc-header:focus-within .mc-header-icon:focus {
  color: var(--black);
}

.mc-nav__actions .mc-btn--light {
  min-width: 116px;
  min-height: 49px;
  padding: 0 28px;
  border-radius: 10px;
  color: var(--gold-primary);
  font-size: 18px;
  font-weight: 800;
  background: #fff;
}

.mc-home {
  background: #fff;
}

.mc-hero {
  position: relative;
  min-height: clamp(690px, 82vh, 860px);
  height: auto;
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vh, 72px) 0 clamp(132px, 16vh, 170px);
  background: var(--dark);
}

.mc-hero__media,
.mc-hero__media img,
.mc-hero__overlay {
  position: absolute;
  inset: 0;
}

.mc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mc-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.48) 31%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
}

.mc-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 0;
}

.mc-hero__content.mc-reveal-ready .mc-eyebrow,
.mc-hero__content.mc-reveal-ready h1,
.mc-hero__content.mc-reveal-ready .mc-hero__lead,
.mc-hero__content.mc-reveal-ready .mc-hero__checks {
  opacity: 0;
  filter: blur(4px);
  clip-path: inset(100% 0 0 0);
  transform: translateY(42px);
  transition:
    opacity 0.78s ease,
    filter 0.78s ease,
    clip-path 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.mc-hero__content.mc-reveal-ready h1 {
  transition-delay: 0.1s;
}

.mc-hero__content.mc-reveal-ready .mc-hero__lead {
  transition-delay: 0.22s;
}

.mc-hero__content.mc-reveal-ready .mc-hero__checks {
  transition-delay: 0.34s;
}

.mc-hero__content.mc-reveal-ready.is-visible .mc-eyebrow,
.mc-hero__content.mc-reveal-ready.is-visible h1,
.mc-hero__content.mc-reveal-ready.is-visible .mc-hero__lead,
.mc-hero__content.mc-reveal-ready.is-visible .mc-hero__checks {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.mc-hero h1 {
  max-width: 960px;
  margin: 15px 0 22px;
  color: #fff;
  font-size: clamp(44px, 4.2vw, 62px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.mc-hero__lead {
  max-width: 900px;
  margin: 0 0 46px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.mc-hero .mc-eyebrow {
  font-size: clamp(15px, 1.15vw, 18px);
}

.mc-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.mc-hero__checks span,
.mc-check-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.mc-hero__checks i,
.mc-check-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #ffffff;
  font-size: 14px;
}

.mc-search-panel {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: min(1500px, calc(100% - 48px));
  transform: translateX(-50%);
  padding: 0;
  border: 1px solid #eeeeee;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.mc-search-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.mc-search-tabs button {
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--mc-ink);
  font-weight: 800;
}

.mc-search-tabs button.is-active {
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(181, 122, 26, 0.24);
}

.mc-search-tabs button:hover {
  color: var(--gold-primary);
}

.mc-search-tabs span {
  margin-left: auto;
  color: var(--mc-muted);
  font-size: 14px;
  font-weight: 700;
}

.mc-search-form {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) minmax(250px, 1.45fr) minmax(190px, 1fr) minmax(190px, 1fr) minmax(170px, 0.7fr);
  align-items: stretch;
  min-height: 126px;
  border: 0;
  border-radius: 13px;
  overflow: visible;
}

.mc-search-form label {
  position: relative;
  display: flex;
  min-height: auto;
  padding: 24px 22px 22px;
  border-right: 1px solid #E5E7EB;
  flex-direction: column;
  justify-content: flex-start;
}

.mc-search-form span,
.mc-car-card__body > p,
.mc-section-head p,
.mc-app-band p,
.mc-footer p,
.mc-footer a,
.mc-testimonial-grid p {
  color: var(--mc-muted);
}

.mc-search-form label > span:first-child {
  display: block;
  margin-bottom: 14px;
  color: #636363;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.mc-search-form strong,
.mc-field-control {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--mc-ink);
  font-size: 16px;
  font-weight: 900;
}

.mc-search-form .mc-field-control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 0;
  color: var(--mc-ink);
}

.mc-search-form label i {
  color: var(--gold-primary);
  font-size: 21px;
}

.mc-search-form select,
.mc-search-form input {
  width: 100%;
  min-width: 0;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--mc-ink);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  outline: 0;
  appearance: none;
}

.mc-search-form .mc-date-input {
  color: #000;
  opacity: 1;
  -webkit-text-fill-color: #000;
}

.mc-search-form select.mc-is-placeholder,
.mc-search-form .mc-date-input.mc-is-placeholder {
  color: var(--mc-muted);
  opacity: 1;
  -webkit-text-fill-color: var(--mc-muted);
}

.mc-search-form select option:first-child {
  color: var(--mc-muted);
}

.mc-search-form select {
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7 10 5 5 5-5' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.mc-search-form .mc-btn--search {
  align-self: center;
  min-height: 58px;
  margin: 0 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #B8860B 0%, #D49A22 55%, #E3A52B 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(184, 134, 11, 0.2);
  font-size: 16px;
  font-weight: 900;
}

.mc-search-form .mc-btn--search i {
  color: #fff;
  font-size: 21px;
}

.mc-search-form .mc-btn--search:hover {
  background: linear-gradient(135deg, #B8860B 0%, #D49A22 55%, #E3A52B 100%);
  box-shadow: 0 12px 22px rgba(184, 134, 11, 0.2);
  transform: none;
}

.mc-search-form .mc-btn--search:focus-visible {
  outline: 3px solid rgba(212, 154, 34, 0.28);
  outline-offset: 3px;
}

.mc-date-chevron {
  margin-left: auto;
  color: #000000 !important;
  font-size: 14px !important;
}

.mc-date-popover {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 40;
  width: 312px;
  padding: 18px 0 16px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: 0 20px 45px rgba(10, 10, 10, 0.14);
  transform: translateX(-50%);
}

.mc-date-popover::before {
  position: absolute;
  top: -11px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-top: 1px solid #bdbdbd;
  border-left: 1px solid #bdbdbd;
  background: #fff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.mc-date-popover[hidden] {
  display: none;
}

.mc-date-picker__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 46px;
}

.mc-date-picker__title {
  margin: 0;
  color: #000;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.mc-date-picker__nav {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #cfcfcf;
  font-size: 22px;
  transform: translateY(-50%);
}

.mc-date-picker__nav:hover,
.mc-date-picker__nav:focus-visible {
  color: var(--gold-primary);
  outline: 0;
}

.mc-date-picker__nav--prev {
  left: 16px;
}

.mc-date-picker__nav--next {
  right: 16px;
}

.mc-date-picker__weekdays,
.mc-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.mc-date-picker__weekdays {
  margin-top: 12px;
  padding: 0 18px 10px;
  border-bottom: 1px solid #d3d3d3;
}

.mc-date-picker__weekdays span,
.mc-date-picker__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 800;
}

.mc-date-picker__grid {
  padding: 14px 18px 0;
  row-gap: 3px;
}

.mc-date-picker__day {
  width: 35px;
  margin: 0 auto;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.mc-date-picker__day:hover,
.mc-date-picker__day:focus-visible {
  background: rgba(212, 154, 34, 0.16);
  color: #000;
  outline: 0;
}

.mc-date-picker__day.is-muted {
  color: #171717;
  opacity: 0.5;
}

.mc-date-picker__day.is-disabled,
.mc-date-picker__day:disabled {
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.38;
}

.mc-date-picker__day.is-disabled:hover,
.mc-date-picker__day.is-disabled:focus-visible,
.mc-date-picker__day:disabled:hover,
.mc-date-picker__day:disabled:focus-visible {
  background: transparent;
  color: #9ca3af;
  outline: 0;
}

.mc-date-picker__day.is-selected {
  background: var(--gold-primary);
  color: #000;
  opacity: 1;
}

.mc-date-picker__day.is-selected.is-muted,
.mc-date-picker__day.is-selected.is-disabled,
.mc-date-picker__day.is-selected:disabled {
  background: var(--gold-primary);
  color: #000;
  opacity: 1;
}

.mc-date-picker__time {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 18px 0;
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
  color: #000;
  font-size: 13px;
  font-weight: 900;
}

.mc-date-picker__time input {
  width: 92px;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 800;
}

.mc-section {
  padding: 110px 0;
}

.mc-seo-intro {
  padding-top: 98px;
  padding-bottom: 64px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.mc-seo-intro__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.72fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.mc-seo-intro__content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-primary);
  content: "";
}

.mc-seo-intro__head {
  padding-top: 34px;
}

.mc-seo-intro__label {
  margin: 0 0 12px;
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mc-seo-intro h2 {
  max-width: 560px;
  margin: 0;
  color: var(--mc-ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-seo-intro__body {
  padding-top: 34px;
}

.mc-seo-intro p {
  max-width: 1080px;
  margin: 0;
  color: #3f3f3f;
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 600;
  line-height: 1.72;
}

.mc-seo-intro__body p + p {
  margin-top: 16px;
}

.mc-seo-intro__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 14px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mc-seo-intro__proofs span {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 22px 22px;
  border: 1px solid rgba(212, 154, 34, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--gold-primary);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.28;
  text-align: left;
}

.mc-seo-intro__proofs span:first-child {
  padding-left: 22px;
}

.mc-seo-intro__proofs span:last-child {
  border-right: 0;
}

.mc-seo-intro__proofs i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 154, 34, 0.34);
  border-radius: 50%;
  background: rgba(212, 154, 34, 0.06);
  color: var(--gold-primary);
  font-size: 18px;
}

.mc-brands {
  padding-top: 36px;
  padding-bottom: 36px;
  background: var(--mc-soft);
}

.mc-section-head {
  margin-bottom: 35px;
}

.mc-section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.mc-section-head--center {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mc-section-head h2,
.mc-sell h2,
.mc-app-band h2,
.mc-footer__subscribe h2 {
  margin: 0;
  color: var(--mc-ink);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-section-head p {
  margin: 9px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.mc-section-head a {
  color: var(--mc-ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.mc-section-head a:hover {
  color: var(--gold-primary);
}

.mc-brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 0 0 2px;
}

.mc-brand-marquee::before,
.mc-brand-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 110px;
  content: "";
  pointer-events: none;
}

.mc-brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--mc-soft), rgba(248, 248, 248, 0));
}

.mc-brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--mc-soft), rgba(248, 248, 248, 0));
}

.mc-brand-track {
  display: flex;
  width: max-content;
  gap: 21px;
  animation: mcBrandScroll 42s linear infinite;
  will-change: transform;
}

.mc-brand-marquee:hover .mc-brand-track,
.mc-brand-marquee:focus-within .mc-brand-track {
  animation-play-state: paused;
}

.mc-brand-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 110px;
  padding: 22px 30px;
  border: 1px solid #D9DDE2;
  border-radius: 8px;
  background: #fff;
  color: var(--mc-ink);
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.mc-brand-logo-card:hover,
.mc-brand-logo-card:focus-visible {
  border-color: var(--gold-primary);
  background: #fff;
  transform: none;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.08);
  outline: 0;
}

.mc-brand-logo-card__mark {
  display: block;
  width: 100%;
  max-width: 108px;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}

@keyframes mcBrandScroll {
  from {
    transform: translateX(0);
  }

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

.mc-fleet {
  background: #fff !important;
}

.mc-vans-showcase {
  background: #fff !important;
  padding-top: 34px;
}

.mc-fleet > .mc-shell {
  width: min(1680px, calc(100% - 96px));
  background: #fff;
}

.mc-arrows {
  display: flex;
  gap: 12px;
}

.mc-arrows button,
.mc-type-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #F8F8F8;
  color: var(--gold-primary);
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.mc-arrows button:hover,
.mc-type-card a:hover {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 12px 24px rgba(211, 154, 43, 0.24);
}

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

.mc-card-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 84px) / 4);
  grid-template-columns: none;
  align-items: stretch;
  gap: 28px;
  margin-inline: 0;
  padding: 6px 0 18px;
  background: #fff;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mc-card-rail::-webkit-scrollbar {
  display: none;
}

.mc-card-rail > * {
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
}

.mc-card-rail .mc-car-card {
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.mc-card-rail .mc-car-card:hover {
  box-shadow: 0 18px 34px rgba(212, 154, 34, 0.12);
}

.mc-card-rail .mc-car-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.mc-card-rail .mc-car-card--featured .mc-car-card__image {
  aspect-ratio: 1.28;
}

.mc-card-rail .mc-car-card--featured .mc-car-card__body {
  padding: 34px 24px 26px;
}

.mc-card-rail .mc-car-card--featured h3 {
  font-size: 22px;
}

.mc-card-rail .mc-car-card--featured .mc-car-card__subtitle {
  margin: 12px 0 22px;
  font-size: 16px;
}

.mc-card-rail .mc-feature-specs {
  gap: 8px;
  padding: 22px 0;
}

.mc-card-rail .mc-feature-specs i,
.mc-card-rail .mc-seat-icon {
  width: 28px;
  height: 28px;
  font-size: 20px;
}

.mc-card-rail .mc-feature-specs strong {
  font-size: 18px;
}

.mc-card-rail .mc-car-card--featured .mc-card-foot strong {
  font-size: 28px;
}

.mc-card-rail .mc-car-card--featured .mc-btn--ghost {
  min-height: 50px;
  padding: 0 22px;
}

.mc-card-rail .mc-card-foot {
  margin-top: auto;
}

.mc-car-card.is-hidden,
.mc-car-card.is-filter-hidden {
  display: none;
}

.mc-car-card,
.mc-type-card,
.mc-testimonial-grid article,
.mc-discover-card {
  border: 1px solid var(--mc-line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mc-car-card:hover,
.mc-type-card:hover,
.mc-testimonial-grid article:hover,
.mc-discover-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--mc-luxury-shadow);
}

.mc-car-card--clickable {
  cursor: pointer;
}

.mc-car-card--clickable:focus-visible {
  outline: 3px solid rgba(212, 154, 34, 0.42);
  outline-offset: 4px;
}

.mc-car-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.mc-car-card__title-link {
  color: inherit;
  text-decoration: none;
}

.mc-car-card__title-link:hover,
.mc-car-card__title-link:focus-visible {
  color: var(--gold-primary);
}

.mc-discover-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 42px;
  border: 2px solid var(--gold-primary);
  background:
    radial-gradient(circle at top right, rgba(212, 154, 34, 0.18), transparent 34%),
    #0f0f0f;
  color: #fff;
}

.mc-discover-card span {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mc-discover-card h3 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 900;
}

.mc-discover-card .mc-btn {
  align-self: stretch;
  min-height: 64px;
  border-radius: 14px;
  font-size: 24px;
}

.mc-car-card__image {
  position: relative;
  aspect-ratio: 1.34;
  background: #F4F1EA;
}

.mc-car-card__image img,
.mc-type-card img,
.mc-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-rating {
  position: absolute;
  right: 32px;
  bottom: -15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(10, 10, 10, 0.14);
}

.mc-rating i,
.mc-stars {
  color: var(--gold-primary);
}

.mc-specs i,
.mc-car-card__body > p i {
  color: var(--gold-primary);
}

.mc-car-card__body {
  padding: 42px 32px 30px;
}

.mc-car-card h3,
.mc-type-card h3,
.mc-step-grid h3,
.mc-testimonial-grid h3 {
  margin: 0;
  color: var(--mc-ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.mc-car-card__body > p {
  margin: 14px 0 28px;
  font-weight: 700;
}

.mc-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  padding: 26px 0;
  border-top: 1px solid var(--mc-line);
  border-bottom: 1px solid var(--mc-line);
}

.mc-specs span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #0c0c0c;
  font-size: 15px;
  font-weight: 800;
}

.mc-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
}

.mc-card-foot p {
  margin: 0;
  color: var(--mc-muted);
  font-size: 15px;
  font-weight: 800;
}

.mc-card-foot strong {
  color: #000;
  font-size: 25px;
  font-weight: 900;
}

.mc-car-card--featured {
  border: 2px solid var(--gold-primary);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
}

.mc-car-card--featured:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}

.mc-car-card--featured .mc-car-card__image {
  aspect-ratio: 1.34;
  background: #f2f3f4;
}

.mc-car-card--featured .mc-car-card__image img {
  object-fit: cover;
  object-position: center center;
}

.mc-car-card--featured .mc-car-card__body {
  padding: 42px 32px 30px;
}

.mc-car-card--featured h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.mc-car-card--featured .mc-car-card__subtitle {
  margin: 14px 0 28px;
  color: #696969;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.mc-feature-specs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 26px 0;
  border-top: 1px solid #ddd2bd;
  border-bottom: 1px solid #ddd2bd;
}

.mc-feature-specs span {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #555;
  text-align: center;
}

.mc-feature-specs span::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 10;
  width: max-content;
  max-width: 190px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.05s ease, transform 0.05s ease;
  white-space: normal;
}

.mc-feature-specs span::before {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  z-index: 10;
  border: 6px solid transparent;
  border-top-color: #111;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.05s ease, transform 0.05s ease;
}

.mc-feature-specs span:hover::after,
.mc-feature-specs span:hover::before,
.mc-feature-specs span:focus-visible::after,
.mc-feature-specs span:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mc-feature-specs span:focus-visible {
  outline: 2px solid rgba(212, 154, 34, 0.35);
  outline-offset: 4px;
}

.mc-feature-specs i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  font-size: 24px;
  line-height: 1;
}

.mc-feature-specs .mc-chauffeur-icon {
  background: var(--gold-primary);
  color: transparent;
  -webkit-mask: url("../images/icons/chauffeur.png") center / contain no-repeat;
  mask: url("../images/icons/chauffeur.png") center / contain no-repeat;
}

.mc-seat-icon {
  display: block;
  width: 32px;
  height: 32px;
  overflow: visible;
  fill: none;
  stroke: var(--gold-primary);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mc-feature-specs strong {
  display: block;
  width: 32px;
  color: #222;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.mc-car-card--featured .mc-card-foot {
  padding-top: 24px;
}

.mc-car-card--quote .mc-card-foot {
  justify-content: center;
}

.mc-car-card--quote .mc-card-foot .mc-btn--ghost {
  width: 100%;
}

.mc-car-card--quote .mc-feature-specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mc-car-card--quote .mc-feature-specs strong {
  width: auto;
  min-width: 32px;
  font-size: 18px;
}

.mc-car-card--featured .mc-card-foot p {
  color: var(--mc-muted);
  font-size: 15px;
  font-weight: 800;
}

.mc-car-card--featured .mc-card-foot strong {
  margin-left: 5px;
  font-size: 25px;
  line-height: 1;
}

.mc-car-card--featured .mc-btn--ghost {
  min-height: 48px;
  padding: 0 26px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  color: var(--gold-primary);
  font-size: 16px;
  font-weight: 800;
  background: #fff;
  white-space: nowrap;
}

.mc-car-card--featured .mc-btn--ghost:hover {
  color: #000;
  background: var(--gold-gradient);
  box-shadow: 0 12px 26px rgba(211, 154, 43, 0.2);
}

.mc-center {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.mc-sell {
  padding: 60px 0 70px;
  background: #fff;
}

.mc-sell .mc-shell,
.mc-agency .mc-shell {
  width: min(1500px, calc(100% - 56px));
}

.mc-sell__grid {
  display: grid;
  grid-template-columns: minmax(560px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 94px;
}

.mc-video-card {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-radius: 14px;
}

.mc-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 38px;
  padding: 34px 34px 54px;
  background: #ffffff;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.mc-logo-card img {
  width: min(680px, 100%);
  height: auto;
  object-fit: contain;
}

.mc-sell__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.mc-sell__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(181, 122, 26, 0.28);
  border-radius: 999px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(181, 122, 26, 0.16);
}

.mc-video-card button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000000;
  font-size: 28px;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 38px rgba(181, 122, 26, 0.34);
}

.mc-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  background: #fff;
  color: var(--gold-primary);
  border: 1px solid rgba(211, 154, 43, 0.24);
}

.mc-sell h2 {
  color: var(--mc-ink);
}

.mc-sell__content > p:not(.mc-pill) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--mc-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.mc-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 40px;
}

.mc-check-grid span {
  color: var(--mc-ink);
}

.mc-agency {
  padding: 70px 0 70px;
  background: #fff;
}

.mc-agency .mc-section-head--center {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 60px;
  text-align: left;
}

.mc-agency .mc-section-head p {
  font-size: 20px;
  line-height: 1.5;
}

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

.mc-benefit-card {
  min-height: 270px;
  padding: 40px;
  border: 1px solid rgba(212, 154, 34, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.065);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mc-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 154, 34, 0.38);
  box-shadow: 0 24px 56px rgba(10, 10, 10, 0.08);
}

.mc-benefit-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--gold-gradient);
  color: #000000;
  font-size: 23px;
  box-shadow: 0 12px 28px rgba(181, 122, 26, 0.18);
}

.mc-benefit-card h3 {
  margin: 0 0 14px;
  color: var(--mc-ink);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.mc-benefit-card p {
  margin: 0;
  color: var(--mc-muted);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
}

.mc-faq-section {
  padding: 58px 0 82px;
  background: #fff;
}

.mc-faq-section .mc-section-head--center {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.mc-faq-section .mc-section-head p {
  max-width: none;
  font-size: 18px;
  line-height: 1.55;
}

.mc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mc-faq-grid article {
  padding: 24px 26px;
  border: 1px solid rgba(212, 154, 34, 0.14);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.mc-faq-grid article:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(181, 122, 26, 0.1);
  transform: translateY(-2px);
}

.mc-faq-grid h3 {
  margin: 0 0 10px;
  color: var(--mc-ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.mc-faq-grid p {
  margin: 0;
  color: var(--mc-muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.mc-contact-reassurance {
  padding: 0 0 100px;
  background: #fff;
}

.mc-contact-reassurance__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 44px 52px;
  border-radius: 14px;
  background: #0A0A0A;
  color: #fff;
  box-shadow: 0 24px 58px rgba(10, 10, 10, 0.18);
}

.mc-contact-reassurance__card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

body .moroccocars-ui-root .mc-contact-reassurance__card h2,
body .moroccocars-ui-root .mc-vehicle-reassurance__title,
body .moroccocars-ui-root .mc-agences-cta__card h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.mc-contact-reassurance__card p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.72;
}

.mc-contact-reassurance__details {
  display: grid;
  gap: 16px;
}

.mc-contact-reassurance__details a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  padding: 0 30px;
  border: 1px solid rgba(212, 154, 34, 0.42);
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.mc-contact-reassurance__details i,
.mc-vehicle-reassurance__details i {
  color: var(--gold-primary);
  font-size: 22px;
  line-height: 1;
}

.mc-group-page {
  background: #ffffff;
}

.mc-group-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 126px 0 96px;
  background: var(--dark);
  overflow: hidden;
}

.mc-group-hero__media,
.mc-group-hero__media img,
.mc-group-hero__overlay {
  position: absolute;
  inset: 0;
}

.mc-group-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mc-group-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
}

.mc-group-hero__inner {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.mc-group-hero h1 {
  max-width: 950px;
  margin: 16px 0 20px;
  color: #ffffff !important;
  font-size: 72px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.mc-group-hero h1::selection {
  background: rgba(212, 154, 34, 0.45);
  color: #ffffff;
}

.moroccocars-ui-root h1::selection,
.moroccocars-ui-root h2::selection,
.moroccocars-ui-root h3::selection,
.mc-vehicle-title-card h1::selection,
.mc-detail-panel h2::selection {
  background: rgba(212, 154, 34, 0.72);
  color: #ffffff;
}

.mc-group-hero__lead {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.55;
  white-space: nowrap;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.mc-group-intro {
  padding: 96px 0 50px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.mc-group-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.42fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.mc-group-intro__content {
  position: relative;
  padding: 12px 0 14px 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mc-group-intro__content::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: calc(100% - 20px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-primary), rgba(212, 154, 34, 0.16));
  content: "";
}

.mc-group-intro__content h2 {
  max-width: 880px;
  margin: 0 0 24px;
  color: var(--mc-ink);
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-group-intro__content p:not(.mc-seo-intro__label) {
  max-width: 850px;
  margin: 0;
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.78;
}

.mc-group-intro__stats {
  display: grid;
  gap: 0;
  padding: 16px 22px;
  border: 1px solid rgba(212, 154, 34, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #111111;
  box-shadow: 0 24px 58px rgba(10, 10, 10, 0.16);
}

.mc-group-intro__stat {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mc-group-intro__stat:last-child {
  border-bottom: 0;
}

.mc-group-intro__stat i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 154, 34, 0.34);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 17px;
}

.mc-group-intro__stat span {
  display: block;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.38;
}

.mc-group-content {
  padding: 44px 0 74px;
}

.mc-group-content__grid {
  display: grid;
  gap: 28px;
}

.mc-group-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 34px;
  padding: 42px 50px;
  border: 1px solid rgba(212, 154, 34, 0.16);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.052);
}

.mc-group-section__number {
  color: var(--gold-primary);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.mc-group-section h2 {
  margin: 0 0 16px;
  color: var(--mc-ink);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-group-section p {
  max-width: 1110px;
  margin: 0;
  color: #353535;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.82;
}

.mc-group-proof {
  padding: 72px 0 78px;
  background: #f8f8f8;
}

.mc-group-proof .mc-section-head {
  margin-bottom: 42px;
}

.mc-group-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.mc-group-proof__card {
  min-height: 292px;
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.055);
}

.mc-group-proof__card h3 {
  font-size: 24px;
}

.mc-group-proof__card p {
  font-size: 17px;
}

.mc-group-closing {
  padding: 88px 0 106px;
}

.mc-group-closing__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: 54px 58px;
  border-radius: 14px;
  background: #0A0A0A;
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(10, 10, 10, 0.18);
}

.mc-group-closing__card h2 {
  max-width: 820px;
  margin: 0 0 16px;
  color: #ffffff !important;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-group-closing__card h2::selection {
  background: rgba(212, 154, 34, 0.45);
  color: #ffffff;
}

.mc-group-closing__card p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.76;
}

.mc-rental-terms-page {
  background: #ffffff;
}

.mc-rental-terms-hero {
  position: relative;
  padding: 164px 0 92px;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.94) 0%, rgba(19, 19, 18, 0.96) 58%, rgba(39, 31, 16, 0.96) 100%);
  color: #ffffff;
  overflow: hidden;
}

.mc-rental-terms-hero::after {
  position: absolute;
  right: max(24px, 8vw);
  bottom: -74px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(212, 154, 34, 0.18);
  border-radius: 50%;
  content: "";
}

.mc-rental-terms-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
}

.mc-rental-terms-hero h1 {
  max-width: 900px;
  margin: 18px 0 26px;
  color: #ffffff !important;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-rental-terms-hero__lead {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.78;
}

.mc-rental-terms-content {
  padding: 82px 0 108px;
  background:
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 26%, #ffffff 100%);
}

.mc-rental-terms-content__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.mc-rental-terms-summary {
  position: sticky;
  top: 108px;
  padding: 34px 30px;
  border: 1px solid rgba(212, 154, 34, 0.18);
  border-radius: 14px;
  background: #0A0A0A;
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(10, 10, 10, 0.13);
}

.mc-rental-terms-summary span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.mc-rental-terms-summary strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.18;
}

.mc-rental-terms-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.68;
}

.mc-rental-terms-list {
  display: grid;
  gap: 22px;
}

.mc-rental-term {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  padding: 36px 42px;
  border: 1px solid rgba(212, 154, 34, 0.15);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(10, 10, 10, 0.048);
}

.mc-rental-term__number {
  color: var(--gold-primary);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.mc-rental-term h2 {
  margin: 0 0 14px;
  color: var(--mc-ink);
  font-size: 31px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-rental-term p {
  max-width: 980px;
  margin: 0;
  color: #353535;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.82;
}

.mc-rental-term__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.mc-rental-term__items li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 154, 34, 0.16);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  color: #353535;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.045);
}

.mc-rental-term__items i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 154, 34, 0.25);
  border-radius: 50%;
  background: rgba(212, 154, 34, 0.08);
  color: var(--gold-primary);
  font-size: 16px;
}

.mc-rental-term__items span {
  color: #242424;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.42;
}

.mc-detail-services {
  padding: 0 0 76px;
  background: #ffffff;
}

.mc-detail-services .mc-shell {
  width: min(1500px, calc(100% - 48px));
}

.mc-detail-services__card {
  padding: 44px 52px 54px;
  border: 1px solid rgba(212, 154, 34, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(10, 10, 10, 0.055);
}

.mc-detail-services__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.mc-detail-services__head > div {
  min-width: 0;
}

.mc-detail-services__head h2 {
  margin: 0;
  color: var(--mc-ink);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-detail-services__head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(212, 154, 34, 0.36);
  border-radius: 999px;
  color: var(--mc-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.mc-detail-services__head a:hover,
.mc-detail-services__head a:focus-visible {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: #0A0A0A;
}

.mc-detail-services__items {
  max-width: none;
  margin-left: 0;
}

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

.mc-type-card {
  padding: 16px;
}

.mc-type-card img {
  height: 140px;
  border-radius: 10px;
}

.mc-type-card h3 {
  margin-top: 22px;
  font-size: 20px;
}

.mc-type-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.mc-type-card span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border: 1px solid var(--mc-line);
  border-radius: 999px;
  background: #f4f6f6;
  color: var(--mc-muted);
  font-size: 12px;
  font-weight: 900;
}

.mc-steps {
  background: #fff;
  text-align: center;
}

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

.mc-step-grid article {
  padding: 10px 22px;
}

.mc-step-grid i {
  color: var(--gold-primary);
  font-size: 46px;
  margin-bottom: 24px;
}

.mc-step-grid p {
  margin: 14px 0 0;
  color: var(--mc-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.mc-testimonials {
  background: #fff;
}

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

.mc-testimonial-grid article {
  padding: 34px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(10, 10, 10, 0.06);
}

.mc-testimonial-grid p {
  min-height: 78px;
  margin: 14px 0 32px;
  font-weight: 700;
  line-height: 1.6;
}

.mc-testimonial-grid strong {
  display: block;
  color: var(--mc-ink);
  font-size: 17px;
  font-weight: 900;
}

.mc-testimonial-grid strong span {
  display: block;
  margin-top: 4px;
  color: var(--mc-muted);
  font-size: 13px;
}

.mc-stars {
  display: inline-flex;
  margin-top: 18px;
  padding: 2px 8px;
  background: rgba(211, 154, 43, 0.1);
  color: var(--gold-primary);
  letter-spacing: 3px;
}

.mc-app-band {
  background:
    radial-gradient(circle at 76% 38%, rgba(211, 154, 43, 0.2) 0%, rgba(211, 154, 43, 0) 28%),
    linear-gradient(135deg, #0A0A0A 0%, #10141A 100%);
  overflow: hidden;
  color: #fff;
}

.mc-app-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 235px;
}

.mc-app-band h2 {
  color: #fff;
  font-size: 36px;
}

.mc-app-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.mc-app-band__cars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mc-app-band__cars img {
  width: 220px;
  height: 125px;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.22));
}

.mc-app-band__cars img + img {
  margin-left: -55px;
}

.mc-store-buttons {
  display: flex;
  gap: 12px;
}

.mc-store-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(211, 154, 43, 0.44);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.mc-store-buttons a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.mc-footer {
  background: #0A0A0A;
  color: #fff;
  padding: 60px 0 34px;
}

.mc-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 28px;
  border: 1px solid rgba(211, 154, 43, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(211, 154, 43, 0.14), rgba(255, 255, 255, 0.04));
}

.mc-footer__eyebrow {
  margin-bottom: 8px !important;
  color: var(--gold-primary) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-footer__cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.16;
}

.mc-footer__cta p {
  max-width: 720px;
  margin-bottom: 0;
}

.mc-footer__cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mc-footer__phone {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0 !important;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff !important;
}

.mc-footer__subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mc-footer__subscribe h2 {
  max-width: 560px;
  color: #fff;
  font-size: 30px;
}

.mc-footer__subscribe form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.mc-footer input {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  background: #0A0A0A;
  color: #fff;
}

.mc-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 44px;
  padding: 48px 0;
}

.mc-brand--footer {
  margin-bottom: 24px;
  width: 450px;
  max-width: 100%;
}

.mc-brand--footer .mc-footer__logo {
  width: 450px;
  max-width: 100%;
}

.mc-footer h3 {
  margin: 0 0 22px;
  color: var(--gold-primary);
  font-size: 17px;
  font-weight: 900;
}

.mc-footer p,
.mc-footer a {
  display: block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.mc-footer__brand p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mc-footer__brand p a,
.mc-footer__contact a {
  margin-bottom: 0;
}

.mc-footer__nav a,
.mc-footer__contact a {
  width: fit-content;
}

.mc-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mc-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mc-footer__contact p {
  margin-top: 6px;
}

.mc-footer a:hover {
  color: var(--gold-primary);
}

.mc-footer__brand strong {
  display: block;
  margin-top: 28px;
  color: #fff;
}

.mc-footer__brand strong span {
  color: var(--gold-primary);
  font-size: 24px;
}

.mc-footer__brand i,
.mc-footer__bottom a:hover {
  color: var(--gold-primary);
}

.mc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mc-footer__bottom p,
.mc-footer__bottom a,
.mc-footer__bottom span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.mc-footer__bottom .mc-footer__copyright-link {
  display: inline-flex;
  margin: 0 0 0 6px;
  color: #fff;
}

.mc-footer__bottom div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.theme-scrolltop-btn {
  background: #0A0A0A !important;
  color: var(--gold-primary) !important;
  border-radius: 50% !important;
}

.mc-whatsapp-floating {
  position: fixed;
  right: 34px;
  bottom: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #09d75f;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(5, 126, 61, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mc-whatsapp-floating::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: rgba(9, 215, 95, 0.18);
  z-index: -1;
}

.mc-whatsapp-floating i {
  color: inherit;
  font-size: 40px;
  line-height: 1;
}

.mc-whatsapp-floating:hover,
.mc-whatsapp-floating:focus {
  color: #ffffff;
  background: #00c958;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 42px rgba(5, 126, 61, 0.42);
}

.mc-whatsapp-floating:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 5px;
}

.moroccocars-ui-page .mobile-menu,
.moroccocars-ui-page .at_offcanvus_menu,
.moroccocars-ui-page .offcanvas-category-menu {
  display: none !important;
}

body:not(.home) .site-main,
body:not(.home) .blog-list,
body:not(.home) .archive-content,
body:not(.home) .container {
  --bs-gutter-x: 24px;
}

body:not(.home) .page-banner,
body:not(.home) .breadcrumb-section {
  background: var(--mc-soft) !important;
}

body:not(.home) h1,
body:not(.home) h2,
body:not(.home) h3 {
  color: var(--mc-ink);
  font-weight: 900;
  letter-spacing: 0;
}

body:not(.home) .btn,
body:not(.home) button[type="submit"],
body:not(.home) input[type="submit"] {
  border-radius: 12px !important;
}

body:not(.home) .btn-primary,
body:not(.home) .theme-btn,
body:not(.home) button[type="submit"],
body:not(.home) input[type="submit"],
body:not(.home) .woocommerce button.button,
body:not(.home) .woocommerce a.button {
  background: var(--gold-gradient) !important;
  border-color: var(--gold-primary) !important;
  color: #000000 !important;
  font-weight: 600 !important;
  box-shadow: 0 14px 30px rgba(181, 122, 26, 0.2) !important;
}

body:not(.home) a:hover,
body:not(.home) .entry-title a:hover,
body:not(.home) .post-meta a:hover,
body:not(.home) .breadcrumb a:hover,
body:not(.home) .woocommerce .star-rating,
body:not(.home) .woocommerce p.stars a {
  color: var(--gold-primary) !important;
}

body:not(.home) .card,
body:not(.home) .blog-card,
body:not(.home) .at_product_card,
body:not(.home) .listing-card {
  border: 1px solid var(--mc-line) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

body:not(.home) .card:hover,
body:not(.home) .blog-card:hover,
body:not(.home) .at_product_card:hover,
body:not(.home) .listing-card:hover {
  border-color: var(--gold-primary) !important;
  box-shadow: var(--mc-luxury-shadow) !important;
}

.mc-vehicles-page {
  background: #fff;
}

.mc-vehicles-hero {
  padding: 56px 0 48px;
  background: #fff;
}

.mc-vehicles-hero > .mc-shell {
  width: min(1680px, calc(100% - 56px));
}

.mc-vehicles-hero__card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--dark);
}

.mc-vehicles-hero__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mc-vehicles-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.mc-vehicles-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 480px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 78px clamp(28px, 8vw, 132px) 160px;
  color: #fff;
  text-align: left;
  transform: translateY(34px);
}

.mc-vehicles-hero__content p {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  margin: 0 0 30px;
  padding: 0 28px;
  border-radius: 12px;
  background: #E1FFE6;
  color: #111;
  font-size: 17px;
  font-weight: 900;
}

.moroccocars-ui-root .mc-vehicles-hero__content h1 {
  margin: 0;
  max-width: 880px;
  color: #fff !important;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.mc-vehicles-hero__content span {
  display: block;
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.mc-vehicles-search {
  padding: 0 0 42px;
  background: var(--mc-soft);
}

.mc-search-panel--static {
  position: static;
  width: min(1356px, calc(100% - 48px));
  transform: none;
}

.mc-search-panel--vehicle-hero {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 5;
  width: calc(100% - 96px);
  margin: -88px auto 0;
  transform: none;
}

.mc-search-panel--vehicle-hero .mc-search-form {
  grid-template-columns: minmax(230px, 1.45fr) minmax(230px, 1.45fr) minmax(178px, 1fr) minmax(178px, 1fr) minmax(160px, 0.72fr);
  min-height: 124px;
}

.mc-search-panel--vehicle-hero .mc-search-form label {
  padding-top: 24px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.mc-search-panel--vehicle-hero .mc-search-form label > span:first-child {
  margin-bottom: 13px;
}

.mc-search-panel--vehicle-hero .mc-field-control {
  gap: 10px;
}

.mc-search-panel--vehicle-hero .mc-search-form select,
.mc-search-panel--vehicle-hero .mc-search-form input {
  height: 28px;
  font-size: 17px;
}

.mc-search-panel--vehicle-hero .mc-search-form select {
  padding-right: 22px;
}

.mc-search-panel--vehicle-hero .mc-search-form .mc-btn--search {
  min-height: 58px;
  margin-right: 18px;
  margin-left: 18px;
}

.mc-search-panel--vehicle-hero .mc-search-form .mc-btn--search i {
  font-size: 22px;
}

.mc-vehicles-listing {
  padding: 54px 0 110px;
}

.mc-vehicles-listing .mc-shell {
  width: min(1480px, calc(100% - 48px));
}

.mc-vehicles-heading {
  margin-bottom: 34px;
}

.mc-vehicles-heading .mc-section-head p,
.mc-vehicles-heading p {
  max-width: 1180px;
  color: var(--mc-muted);
  line-height: 1.7;
}

.mc-vehicles-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-vehicles-sort label {
  margin: 0;
  color: var(--mc-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mc-vehicles-sort button,
.mc-vehicles-sort select {
  min-height: 42px;
  border: 1px solid rgba(212, 154, 34, 0.56);
  border-radius: 8px;
  background: #fff;
  color: var(--mc-ink);
  font-size: 14px;
  font-weight: 800;
}

.mc-vehicles-sort button {
  width: 42px;
}

.mc-vehicles-sort button:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.mc-vehicles-sort select {
  padding: 0 36px 0 14px;
}

.mc-vehicles-results__bar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 22px;
}

.mc-vehicle-category-bar {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.mc-vehicle-category-bar span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(212, 154, 34, 0.32);
  border-radius: 999px;
  background: #fff;
  color: var(--mc-ink);
  font-size: 13px;
  font-weight: 900;
}

.mc-vehicles-grid-intro {
  display: none;
  max-width: 840px;
  margin: 0 0 26px;
  color: var(--mc-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.mc-vehicles-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.mc-filter-sidebar {
  display: grid;
  gap: 20px;
}

.mc-filter-card {
  padding: 22px 20px;
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.04);
}

.mc-filter-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.mc-filter-card__head h3 {
  margin: 0;
  color: var(--mc-ink);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.mc-filter-card__head i {
  color: var(--mc-muted);
  font-size: 13px;
}

.mc-map-preview {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(28deg, transparent 0 46%, rgba(212, 154, 34, 0.32) 47% 50%, transparent 51% 100%),
    linear-gradient(112deg, transparent 0 38%, rgba(10, 10, 10, 0.1) 39% 42%, transparent 43% 100%),
    linear-gradient(0deg, #efe8db, #f8f5ed);
}

.mc-map-preview::before,
.mc-map-preview::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(212, 154, 34, 0.34);
  content: "";
}

.mc-map-preview::before {
  top: 28px;
  left: 34px;
  width: 78px;
  height: 34px;
}

.mc-map-preview::after {
  right: 30px;
  bottom: 34px;
  width: 90px;
  height: 40px;
}

.mc-map-preview span {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--mc-ink);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(10, 10, 10, 0.1);
}

.mc-map-preview span:nth-child(1) {
  top: 22px;
  right: 24px;
}

.mc-map-preview span:nth-child(2) {
  top: 76px;
  left: 18px;
}

.mc-map-preview span:nth-child(3) {
  right: 24px;
  bottom: 18px;
}

.mc-price-range {
  --thumb-width: clamp(30px, 13%, 38px);
  --thumb-height: 22px;
  --track-height: 6px;
  --range-progress: 100%;
  position: relative;
  display: block;
  margin: 8px 0 18px;
  padding: 10px 0;
}

.mc-price-range::before,
.mc-price-range::after {
  position: absolute;
  top: 50%;
  left: 0;
  height: var(--track-height);
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(-50%);
  content: "";
}

.mc-price-range::before {
  right: 0;
  background: #E5E1D8;
}

.mc-price-range::after {
  width: var(--range-progress);
  background: linear-gradient(90deg, #B57A1A 0%, #D49A22 58%, #E8B54A 100%);
}

.mc-price-range__input {
  position: relative;
  z-index: 1;
  width: calc(100% + var(--thumb-width));
  height: var(--thumb-height);
  margin: 0 0 0 calc(var(--thumb-width) / -2);
  border-radius: 999px;
  background: transparent;
  accent-color: var(--gold-primary);
  appearance: none;
  cursor: pointer;
}

.mc-price-range__input::-webkit-slider-runnable-track {
  height: var(--track-height);
  background: transparent;
}

.mc-price-range__input::-webkit-slider-thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  margin-top: calc((var(--track-height) - var(--thumb-height)) / 2);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0) 52%);
  box-shadow:
    0 8px 14px rgba(10, 10, 10, 0.12),
    0 3px 8px rgba(181, 122, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -6px 12px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  appearance: none;
}

.mc-price-range__input::-moz-range-track {
  height: var(--track-height);
  background: transparent;
}

.mc-price-range__input::-moz-range-thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0) 52%);
  box-shadow:
    0 8px 14px rgba(10, 10, 10, 0.12),
    0 3px 8px rgba(181, 122, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -6px 12px rgba(255, 255, 255, 0.12);
}

.mc-filter-price {
  margin: 0;
  color: var(--mc-ink);
  font-size: 17px;
  font-weight: 900;
}

.mc-filter-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 15px 0 0;
  color: var(--mc-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.mc-filter-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--gold-primary);
}

.mc-filter-option em {
  min-width: 30px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--mc-soft);
  color: var(--mc-muted);
  font-size: 13px;
  font-style: normal;
  text-align: center;
}

.mc-vehicles-results {
  min-width: 0;
}

.mc-vehicles-empty {
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  background: #fff;
  color: var(--mc-muted);
  font-weight: 800;
  text-align: center;
}

.mc-vehicles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mc-vehicles-grid .mc-car-card--featured {
  border-width: 1px;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(10, 10, 10, 0.05);
}

.mc-vehicles-grid .mc-car-card--featured:hover {
  border-color: rgba(212, 154, 34, 0.58);
  box-shadow: var(--mc-luxury-shadow);
}

.mc-vehicles-grid .mc-car-card--featured .mc-car-card__body {
  padding: 36px 28px 28px;
}

.mc-vehicles-grid .mc-car-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.mc-vehicles-grid .mc-car-card--featured h3 {
  font-size: 23px;
}

.mc-vehicles-grid .mc-car-card--featured .mc-car-card__subtitle {
  flex: 0 0 auto;
  margin: 0;
  color: var(--mc-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.mc-vehicles-grid .mc-car-card__head + .mc-feature-specs {
  margin-top: 24px;
}

.mc-vehicles-grid .mc-car-card__head h3 {
  min-width: 0;
}

.mc-vehicles-grid .mc-feature-specs {
  gap: 10px;
  padding: 24px 0;
}

.mc-vehicles-grid .mc-feature-specs i,
.mc-vehicles-grid .mc-seat-icon {
  width: 28px;
  height: 28px;
  font-size: 20px;
}

.mc-vehicles-grid .mc-feature-specs strong {
  font-size: 18px;
}

.mc-vehicles-grid .mc-card-foot strong {
  font-size: 24px;
}

.mc-vehicles-grid .mc-card-foot {
  gap: 12px;
}

.mc-vehicles-grid .mc-card-foot p {
  white-space: nowrap;
}

.mc-vehicles-grid .mc-car-card--featured .mc-btn--ghost {
  min-height: 46px;
  padding: 0 16px;
  font-size: 15px;
}

.mc-vehicles-cta {
  padding: 0 0 112px;
  background: #fff;
}

.mc-vehicles-cta__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px 42px;
  padding: 40px 44px;
  border: 1px solid rgba(212, 154, 34, 0.24);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
}

.mc-vehicles-cta__content h2 {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 0;
  color: var(--mc-ink);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
}

.mc-vehicles-cta__content p {
  max-width: 920px;
  margin: 0;
  color: var(--mc-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.mc-vans-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mc-vans-grid .mc-car-card__head h3,
.mc-vans-rail .mc-car-card__head h3 {
  width: 100%;
  font-size: clamp(15px, 1.08vw, 20px);
  line-height: 1.18;
  white-space: nowrap;
}

.mc-vans-grid .mc-car-card__title-link,
.mc-vans-rail .mc-car-card__title-link {
  display: block;
  white-space: nowrap;
}

.mc-vans-grid .mc-car-card__head + .mc-feature-specs,
.mc-vans-rail .mc-car-card__head + .mc-feature-specs {
  margin-top: 24px;
  padding-top: 22px;
}

.mc-vans-grid .mc-car-card--quote .mc-feature-specs,
.mc-vans-rail .mc-car-card--quote .mc-feature-specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mc-city-showcase {
  padding-top: 72px;
  padding-bottom: 40px;
  background: #fff;
}

.mc-city-showcase .mc-shell {
  width: min(1680px, calc(100% - 48px));
}

.mc-city-showcase .mc-section-head--center {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.mc-city-showcase .mc-section-head p {
  max-width: none;
  color: var(--mc-muted);
  font-size: 18px;
  line-height: 1.65;
}

.mc-city-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.mc-city-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.12);
}

.mc-city-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.32s ease;
}

.mc-city-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 45%, rgba(10, 10, 10, 0.44) 100%);
  content: "";
}

.mc-city-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  transition: color 0.22s ease;
}

.mc-city-card:hover img {
  transform: scale(1.08);
}

.mc-city-card:hover span {
  color: var(--gold-primary);
}

.mc-agences-page {
  background: #fff;
}

.mc-agences-hero {
  padding: 56px 0 76px;
  background: #fff;
}

.mc-agences-hero > .mc-shell,
.mc-agences-list > .mc-shell,
.mc-agences-cta > .mc-shell {
  width: min(1480px, calc(100% - 56px));
}

.mc-agences-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: 24px;
}

.mc-agences-hero__content {
  display: flex;
  min-height: 560px;
  justify-content: center;
  flex-direction: column;
  padding: 64px;
  border: 1px solid rgba(212, 154, 34, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 248, 0.98));
  box-shadow: 0 22px 56px rgba(10, 10, 10, 0.06);
}

.mc-agences-hero__content h1 {
  max-width: 720px;
  margin: 14px 0 24px;
  color: var(--mc-ink);
  font-size: 62px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-agences-hero__content > p:not(.mc-eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--mc-muted);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.mc-agences-hero__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.16);
}

.mc-agences-hero__media img,
.mc-agence-city__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-agences-list {
  padding: 34px 0 92px;
  background: var(--mc-soft);
}

.mc-agence-city {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(212, 154, 34, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(10, 10, 10, 0.055);
}

.mc-agence-city + .mc-agence-city {
  margin-top: 28px;
}

.mc-agence-city--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.mc-agence-city--reverse .mc-agence-city__media {
  order: 2;
}

.mc-agence-city__media {
  min-height: 460px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--dark);
}

.mc-agence-city__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 34px 28px;
}

.mc-agence-city__kicker {
  margin: 0 0 12px;
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mc-agence-city h2 {
  margin: 0 0 16px;
  color: var(--mc-ink);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-agence-city__content > p:not(.mc-agence-city__kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--mc-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

.mc-agence-city__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.mc-agence-city__lists div {
  padding: 22px;
  border: 1px solid var(--mc-line);
  border-radius: 10px;
  background: var(--mc-soft);
}

.mc-agence-city__lists h3 {
  margin: 0 0 14px;
  color: var(--mc-ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.mc-agence-city__lists ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mc-agence-city__lists li {
  position: relative;
  padding-left: 18px;
  color: var(--mc-muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.mc-agence-city__lists li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  content: "";
}

.mc-agence-city__seo-sections {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.mc-agence-city__seo-sections section {
  max-width: 780px;
}

.mc-agence-city__seo-sections h3 {
  margin: 0 0 10px;
  color: var(--mc-ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-agence-city__seo-sections p {
  margin: 0;
  color: var(--mc-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.72;
}

.mc-agences-cta {
  padding: 0 0 100px;
  background: var(--mc-soft);
}

.mc-agences-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 46px 54px;
  border-radius: 12px;
  background: #0A0A0A;
  color: #fff;
  box-shadow: 0 22px 54px rgba(10, 10, 10, 0.18);
}

.mc-agences-cta__card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-agences-cta__card h2::selection {
  color: #fff;
  background: rgba(212, 154, 34, 0.55);
}

.mc-agences-cta__card p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}

.mc-vehicle-detail-page {
  background: #fff;
}

.mc-vehicle-detail-hero {
  padding: 22px 0 96px;
  background: #fff;
}

.mc-vehicle-detail-hero .mc-shell {
  width: min(1500px, calc(100% - 56px));
}

.mc-vehicle-hero-card {
  position: relative;
  min-height: 500px;
  overflow: visible;
  border-radius: 14px;
  background: #111;
}

.mc-vehicle-hero-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
}

.mc-vehicle-hero-card__overlay {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.14) 100%);
}

.mc-vehicle-hero-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 820px;
  padding: 54px clamp(28px, 7vw, 112px) 130px;
  color: #fff;
  text-align: left;
}

.mc-vehicle-hero-card__content h1 {
  width: 100%;
  margin: 0 0 24px;
  color: #fff !important;
  font-size: 56px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-vehicle-hero-card__content p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
  white-space: nowrap;
}

.mc-vehicle-title-card {
  position: absolute;
  left: 50%;
  bottom: -46px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(1180px, calc(100% - 160px));
  min-height: 104px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(10, 10, 10, 0.12);
  transform: translateX(-50%);
}

.mc-vehicle-title-card > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px 34px;
  border-right: 1px solid #e7e7ed;
}

.mc-vehicle-title-card > div:last-child {
  border-right: 0;
}

.mc-vehicle-title-card span {
  color: #686868;
  font-size: 17px;
  font-weight: 900;
}

.mc-vehicle-title-card h1 {
  margin: 0;
  color: #061643;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-vehicle-title-card strong {
  color: #061643;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.mc-vehicle-title-card small {
  color: var(--gold-primary);
  font-size: 15px;
  font-weight: 900;
}

.mc-vehicle-detail-content {
  padding: 0 0 96px;
  background: #fff;
}

.mc-vehicle-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: start;
  gap: 34px;
  width: min(1500px, calc(100% - 48px));
}

.mc-vehicle-detail-main,
.mc-detail-panel {
  display: grid;
  gap: 32px;
}

.mc-detail-panel,
.mc-reservation-panel {
  padding: 50px 46px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(10, 10, 10, 0.055);
}

.mc-detail-panel h2,
.mc-reservation-panel h2 {
  margin: 0;
  color: #061643;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-detail-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary) 0 29%, #e7e7ee 29% 100%);
}

.mc-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
}

.mc-detail-spec {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.mc-detail-spec > span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e8f0;
  border-radius: 6px;
  color: var(--gold-primary);
  font-size: 24px;
}

.mc-detail-spec small {
  display: block;
  margin-bottom: 4px;
  color: #6e6e77;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.mc-detail-spec strong {
  display: block;
  color: #151515;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.mc-offer-table {
  width: 100%;
  border-collapse: collapse;
  color: #151515;
  font-size: 18px;
  font-weight: 700;
}

.mc-offer-table th,
.mc-offer-table td {
  padding: 13px 12px;
  border: 1px solid #e0e0e5;
  text-align: left;
}

.mc-offer-table th {
  background: #f2f2f3;
  font-weight: 900;
}

.mc-vehicle-description {
  display: grid;
  gap: 20px;
  color: #64646b;
  font-size: 21px;
  line-height: 1.75;
  font-weight: 700;
}

.mc-vehicle-description p {
  margin: 0;
}

.mc-vehicle-description strong {
  color: #4f4f55;
  font-weight: 900;
}

.mc-reservation-panel {
  position: sticky;
  top: 116px;
}

.mc-reservation-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.mc-form-success {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(44, 138, 74, 0.22);
  border-radius: 3px;
  background: rgba(44, 138, 74, 0.08);
  color: #1d6a38;
  font-size: 15px;
  font-weight: 800;
}

.mc-form-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(180, 61, 42, 0.24);
  border-radius: 3px;
  background: rgba(180, 61, 42, 0.08);
  color: #8d2f22;
  font-size: 15px;
  font-weight: 800;
}

.mc-reservation-form label {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 0;
  color: #5d5d66;
  font-size: 18px;
  font-weight: 800;
}

.mc-reservation-form .mc-field-label {
  color: #5d5d66;
}

.mc-reservation-form .mc-field-label strong {
  color: var(--gold-primary);
  font-weight: 900;
}

.mc-reservation-form input,
.mc-reservation-form select,
.mc-reservation-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #d9ddeb;
  border-radius: 3px;
  background: #fff;
  color: #2d2d34;
  font-size: 17px;
  font-weight: 700;
}

.mc-reservation-form input,
.mc-reservation-form select {
  height: 54px;
}

.mc-reservation-form select {
  padding-right: 46px;
  line-height: 54px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7 10 5 5 5-5' fill='none' stroke='%232d2d34' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.mc-reservation-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.mc-reservation-form select:invalid {
  color: #9b9ba3;
}

.mc-reservation-form select option {
  color: #2d2d34;
}

.mc-reservation-date-control {
  position: relative;
  display: flex;
  align-items: center;
}

.mc-reservation-form .mc-reservation-date-control .mc-date-input {
  padding-right: 48px;
  cursor: pointer;
}

.mc-reservation-form .mc-reservation-date-control .mc-date-chevron {
  position: absolute;
  right: 16px;
  pointer-events: none;
}

.mc-reservation-form input.is-invalid,
.mc-reservation-form select.is-invalid,
.mc-reservation-form textarea.is-invalid {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 154, 34, 0.16);
}

.mc-field-error {
  display: block;
  color: var(--gold-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
}

.mc-reservation-form .mc-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  border-radius: 3px;
  background: #ff151f;
  color: #fff;
  box-shadow: none;
}

.mc-similar-vehicles {
  padding: 0 0 112px;
  background: #fff;
}

.mc-similar-vehicles .mc-shell {
  width: min(1500px, calc(100% - 48px));
}

.mc-similar-vehicles .mc-section-head {
  margin-bottom: 30px;
}

.mc-similar-vehicles .mc-section-head h2 {
  color: #061643;
  font-size: 42px;
  letter-spacing: 0;
}

.mc-similar-vehicles .mc-section-head p {
  max-width: none;
  margin: 12px 0 0;
  color: #64646b;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
  font-weight: 700;
  white-space: nowrap;
}

.mc-similar-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mc-similar-nav button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #111;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mc-similar-nav button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.mc-similar-rail {
  grid-auto-columns: calc((100% - 84px) / 4);
  background: #fff;
}

.mc-vehicle-reassurance {
  padding: 0 0 110px;
  background: #fff;
}

.mc-vehicle-reassurance .mc-shell {
  width: min(1500px, calc(100% - 48px));
}

.mc-vehicle-reassurance__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 36px;
  padding: 44px 52px;
  border-radius: 14px;
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 24px 58px rgba(10, 10, 10, 0.18);
}

.mc-vehicle-reassurance__title,
.mc-vehicle-reassurance__card h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: #fff !important;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.mc-vehicle-reassurance__card p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 700;
}

.mc-vehicle-reassurance__details {
  display: grid;
  gap: 16px;
}

.mc-vehicle-reassurance__details a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  padding: 0 30px;
  border: 1px solid rgba(212, 154, 34, 0.42);
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.mc-vehicle-reassurance__details a:hover,
.mc-vehicle-reassurance__details a:focus-visible {
  border-color: rgba(212, 154, 34, 0.86);
  color: #fff;
}

@media (max-width: 1180px) {
  .mc-vehicle-hero-card {
    min-height: 440px;
  }

  .mc-vehicle-hero-card__content {
    min-height: 315px;
    padding-bottom: 124px;
  }

  .mc-vehicle-hero-card__content h1 {
    font-size: 56px;
  }

  .mc-vehicle-hero-card__content p {
    white-space: normal;
  }

  .mc-vehicle-title-card {
    width: calc(100% - 48px);
  }

  .mc-vehicle-detail-grid {
    grid-template-columns: 1fr;
  }

  .mc-reservation-panel {
    position: static;
  }

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

  .mc-detail-services__head {
    flex-direction: column;
  }

  .mc-detail-services__items {
    margin-left: 0;
  }

  .mc-similar-rail {
    grid-auto-columns: calc((100% - 28px) / 2);
  }

  .mc-menu {
    display: none;
  }

  .mc-fleet > .mc-shell {
    width: min(100% - 48px, 1248px);
  }

  .mc-header .mc-shell {
    width: min(100% - 48px, 1248px);
  }

  .mc-nav__inner {
    gap: 20px;
  }

  .mc-search-form {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .mc-search-panel--vehicle-hero .mc-search-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mc-search-form label:nth-child(2n) {
    border-right: 0;
  }

  .mc-search-form .mc-btn {
    grid-column: 1 / -1;
  }

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

  .mc-card-rail {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 30px) / 2);
  }

  .mc-vehicles-layout {
    grid-template-columns: 1fr;
  }

  .mc-search-panel--vehicle-hero {
    width: calc(100% - 48px);
  }

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

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

  .mc-sell__grid,
  .mc-app-band__inner,
  .mc-footer__cta,
  .mc-footer__subscribe,
  .mc-footer__grid {
    grid-template-columns: 1fr;
  }

  .mc-footer__cta-actions {
    justify-content: flex-start;
  }

  .mc-vehicle-reassurance__card {
    grid-template-columns: 1fr;
  }

  .mc-sell {
    padding: 50px 0 50px;
  }

  .mc-sell__grid {
    gap: 48px;
  }

  .mc-logo-card img {
    width: min(680px, 126%);
  }

  .mc-seo-intro__proofs {
    grid-template-columns: 1fr;
  }

  .mc-seo-intro__content {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mc-seo-intro__head,
  .mc-seo-intro__body {
    padding-top: 28px;
  }

  .mc-seo-intro__proofs span {
    border-right: 0;
    border-bottom: 0;
  }

  .mc-seo-intro__proofs span:last-child {
    border-bottom: 0;
  }

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

  .mc-agences-hero__grid,
  .mc-agence-city,
  .mc-agence-city--reverse,
  .mc-agences-cta__card {
    grid-template-columns: 1fr;
  }

  .mc-agence-city--reverse .mc-agence-city__media {
    order: 0;
  }

  .mc-agences-cta__card {
    align-items: start;
  }

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

  .mc-agency {
    padding-top: 50px;
  }

  .mc-contact-reassurance__card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mc-group-intro__grid,
  .mc-group-closing__card {
    grid-template-columns: 1fr;
  }

  .mc-group-intro__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 18px;
  }

  .mc-group-intro__stat {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 92px;
    padding: 16px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .mc-group-intro__stat:last-child {
    border-right: 0;
  }

  .mc-group-section {
    grid-template-columns: 70px minmax(0, 1fr);
  }

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

  .mc-rental-terms-content__grid {
    grid-template-columns: 1fr;
  }

  .mc-rental-terms-summary {
    position: static;
  }
}

@media (max-width: 767px) {
  .mc-vehicle-detail-hero .mc-shell {
    width: calc(100% - 28px);
  }

  .mc-vehicle-detail-hero {
    padding-top: 28px;
    padding-bottom: 98px;
  }

  .mc-vehicle-hero-card {
    min-height: 400px;
  }

  .mc-vehicle-hero-card__content {
    min-height: 270px;
    padding: 42px 22px 136px;
  }

  .mc-vehicle-hero-card__content h1 {
    font-size: 42px;
  }

  .mc-vehicle-hero-card__content p {
    font-size: 17px;
  }

  .mc-vehicle-title-card {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    bottom: -64px;
    min-height: auto;
  }

  .mc-similar-rail {
    grid-auto-columns: minmax(260px, 84%);
  }

  .mc-vehicle-title-card > div {
    gap: 8px;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid #e7e7ed;
  }

  .mc-vehicle-title-card > div:last-child {
    border-bottom: 0;
  }

  .mc-vehicle-title-card span {
    font-size: 13px;
  }

  .mc-vehicle-title-card strong {
    font-size: 22px;
  }

  .mc-vehicle-title-card h1 {
    font-size: 22px;
  }

  .mc-vehicle-detail-content {
    padding-bottom: 70px;
  }

  .mc-detail-services {
    padding-bottom: 52px;
  }

  .mc-detail-services .mc-shell {
    width: calc(100% - 28px);
  }

  .mc-detail-services__card {
    padding: 30px 22px;
  }

  .mc-detail-services__head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .mc-detail-services__head > div {
    width: 100%;
  }

  .mc-detail-services__head h2 {
    font-size: 31px;
  }

  .mc-detail-services__head a {
    width: 100%;
    min-height: 48px;
  }

  .mc-vehicle-detail-grid,
  .mc-similar-vehicles .mc-shell {
    width: calc(100% - 32px);
  }

  .mc-detail-panel,
  .mc-reservation-panel {
    padding: 28px 18px;
  }

  .mc-detail-specs {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mc-offer-table {
    font-size: 14px;
  }

  .mc-offer-table th,
  .mc-offer-table td {
    padding: 11px 9px;
  }

  .mc-similar-vehicles {
    padding-bottom: 78px;
  }

  .mc-similar-vehicles .mc-section-head h2 {
    font-size: 32px;
  }

  .mc-similar-vehicles .mc-section-head p {
    font-size: 15px;
    white-space: normal;
  }

  .mc-vehicle-reassurance {
    padding-bottom: 78px;
  }

  .mc-vehicle-reassurance .mc-shell {
    width: calc(100% - 32px);
  }

  .mc-vehicle-reassurance__card {
    gap: 24px;
    padding: 32px 22px;
  }

  .mc-vehicle-reassurance__title,
  .mc-vehicle-reassurance__card h2 {
    font-size: 28px;
  }

  .mc-vehicle-reassurance__card p {
    font-size: 16px;
  }

  .mc-vehicle-reassurance__details a {
    min-height: 56px;
    padding: 0 22px;
    font-size: 16px;
    white-space: normal;
  }

  .admin-bar .mc-header {
    top: 46px;
  }

  .mc-shell {
    width: min(100% - 28px, 1248px);
  }

  .mc-fleet > .mc-shell {
    width: min(100% - 28px, 1248px);
  }

  .mc-header .mc-shell {
    width: min(100% - 28px, 1248px);
  }

  .mc-nav__inner {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .mc-brand {
    grid-column: 1;
    justify-content: flex-start;
    width: 132px;
    height: 64px;
  }

  .mc-brand__logo {
    width: 132px;
    height: 70px;
    max-height: 70px;
  }

  .mc-nav__right {
    grid-column: 2;
    gap: 12px;
  }

  .mc-lang-switcher--header {
    min-height: 34px;
    padding: 2px;
  }

  .mc-lang-switcher--header .mc-lang-switcher__option {
    min-width: 32px;
    height: 26px;
    padding: 0 8px;
    font-size: 11px;
  }

  .mc-nav__actions {
    grid-column: 2;
    gap: 12px;
  }

  .mc-header-icon {
    width: 24px;
    height: 38px;
    font-size: 20px;
  }

  .mc-card-rail {
    grid-template-columns: none;
    grid-auto-columns: minmax(280px, 86vw);
    gap: 18px;
  }

  .mc-city-grid {
    grid-template-columns: 1fr;
  }

  .mc-city-card {
    min-height: 340px;
  }

  .mc-agences-hero {
    padding: 28px 0 56px;
  }

  .mc-agences-hero > .mc-shell,
  .mc-agences-list > .mc-shell,
  .mc-agences-cta > .mc-shell {
    width: min(100% - 28px, 1248px);
  }

  .mc-agences-hero__content {
    min-height: auto;
    padding: 36px 24px;
  }

  .mc-agences-hero__content h1 {
    font-size: 40px;
  }

  .mc-agence-city__content > p:not(.mc-agence-city__kicker) {
    font-size: 15px;
    line-height: 1.7;
  }

  .mc-agences-cta__card p {
    font-size: 17px;
    line-height: 1.7;
  }

  .mc-agences-hero__content > p:not(.mc-eyebrow) {
    font-size: 17px;
    line-height: 1.75;
  }

  .mc-agences-hero__media,
  .mc-agence-city__media {
    min-height: 300px;
  }

  .mc-agences-list {
    padding: 28px 0 64px;
  }

  .mc-agence-city {
    gap: 0;
    padding: 14px;
  }

  .mc-agence-city__content {
    padding: 28px 10px 14px;
  }

  .mc-agence-city h2 {
    font-size: 30px;
  }

  .mc-agence-city__lists {
    grid-template-columns: 1fr;
  }

  .mc-agences-cta {
    padding-bottom: 70px;
  }

  .mc-agences-cta__card {
    padding: 34px 24px;
  }

  .mc-agences-cta__card h2 {
    font-size: 28px;
  }

  .mc-discover-card {
    padding: 28px;
  }

  .mc-discover-card h3 {
    font-size: 30px;
  }

  .mc-nav__actions .mc-btn {
    display: none;
  }

  .mc-hero {
    min-height: 720px;
    padding: 80px 0 210px;
  }

  .mc-hero h1 {
    font-size: 42px;
  }

  .mc-hero__lead {
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 1.55;
  }

  .mc-hero__checks {
    display: grid;
    gap: 16px;
  }

  .mc-search-panel {
    bottom: -192px;
    padding: 16px;
  }

  .mc-date-popover {
    left: 14px;
    width: min(312px, calc(100vw - 56px));
    transform: none;
  }

  .mc-date-popover::before {
    left: 42px;
    transform: rotate(45deg);
  }

  .mc-search-tabs {
    overflow-x: auto;
  }

  .mc-search-tabs span {
    display: none;
  }

  .mc-search-form,
  .mc-car-grid,
  .mc-type-grid,
  .mc-step-grid,
  .mc-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .mc-filter-sidebar {
    grid-template-columns: 1fr;
  }

  .mc-vehicles-hero h1 {
    font-size: 42px;
  }

  .mc-vehicles-hero {
    padding-top: 28px;
  }

  .mc-vehicles-hero__card {
    min-height: 520px;
    border-radius: 10px;
  }

  .mc-vehicles-hero__content {
    min-height: 420px;
    padding: 52px 22px 150px;
  }

  .mc-vehicles-hero__content p {
    min-height: 46px;
    margin-bottom: 22px;
    padding: 0 18px;
    font-size: 14px;
  }

  .mc-vehicles-hero__content h1 {
    font-size: 38px;
  }

  .mc-vehicles-hero__content span {
    font-size: 15px;
  }

  .mc-search-panel--vehicle-hero {
    bottom: auto;
    width: 100%;
    margin-top: -118px;
    padding: 0;
  }

  .mc-vehicles-sort {
    width: 100%;
    flex-wrap: wrap;
  }

  .mc-vehicles-heading {
    margin-bottom: 30px;
  }

  .mc-vehicles-sort select {
    flex: 1 1 190px;
  }

  .mc-vehicle-category-bar {
    margin-bottom: 16px;
  }

  .mc-vehicle-category-bar span {
    min-height: 34px;
    font-size: 12px;
  }

  .mc-vehicles-grid-intro {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .mc-vehicles-cta {
    padding-bottom: 78px;
  }

  .mc-vehicles-cta__content {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .mc-vehicles-cta__content h2 {
    font-size: 28px;
  }

  .mc-vehicles-cta__content .mc-btn {
    width: 100%;
  }

  .mc-search-form label {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--mc-line);
  }

  .mc-search-form select,
  .mc-search-form input {
    font-size: 14px;
  }

  .mc-brands {
    padding-top: 34px;
  }

  .mc-seo-intro {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .mc-seo-intro__content {
    padding-bottom: 28px;
  }

  .mc-seo-intro__content::before {
    width: 70px;
    height: 3px;
  }

  .mc-seo-intro__label {
    font-size: 12px;
  }

  .mc-seo-intro h2 {
    font-size: 30px;
  }

  .mc-seo-intro p {
    font-size: 16px;
    line-height: 1.7;
  }

  .mc-seo-intro__proofs {
    margin-top: 22px;
    padding: 10px;
  }

  .mc-seo-intro__proofs span,
  .mc-seo-intro__proofs span:first-child {
    min-height: 76px;
    padding: 16px;
    font-size: 16px;
  }

  .mc-seo-intro__proofs i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .mc-section {
    padding: 78px 0;
  }

  .mc-section-head--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .mc-section-head h2,
  .mc-sell h2 {
    font-size: 34px;
  }

  .mc-car-card__body {
    padding: 38px 22px 24px;
  }

  .mc-car-card--featured {
    border-radius: 14px;
  }

  .mc-car-card--featured .mc-car-card__body {
    padding: 38px 22px 24px;
  }

  .mc-car-card--featured .mc-car-card__subtitle {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .mc-feature-specs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 22px 0;
  }

  .mc-feature-specs i {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .mc-seat-icon {
    width: 30px;
    height: 30px;
  }

  .mc-feature-specs strong {
    width: 30px;
    font-size: 18px;
  }

  .mc-car-card--featured .mc-btn--ghost {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .mc-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .mc-video-card {
    height: 430px;
  }

  .mc-logo-card {
    height: auto;
    min-height: 430px;
    padding: 30px 18px 42px;
  }

  .mc-logo-card img {
    width: min(480px, 128%);
  }

  .mc-sell__badges {
    gap: 8px;
  }

  .mc-check-grid {
    grid-template-columns: 1fr;
  }

  .mc-benefit-grid {
    grid-template-columns: 1fr;
  }

  .mc-benefit-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .mc-benefit-card h3 {
    font-size: 24px;
  }

  .mc-benefit-card p,
  .mc-agency .mc-section-head p {
    font-size: 17px;
  }

  .mc-faq-section {
    padding: 46px 0 58px;
  }

  .mc-faq-grid {
    grid-template-columns: 1fr;
  }

  .mc-faq-grid article {
    padding: 22px 18px;
  }

  .mc-faq-grid h3 {
    font-size: 20px;
  }

  .mc-faq-grid p {
    font-size: 15px;
  }

  .mc-contact-reassurance {
    padding-bottom: 70px;
  }

  .mc-contact-reassurance__card {
    padding: 32px 22px;
  }

  .mc-contact-reassurance__card h2 {
    font-size: 28px;
  }

  .mc-contact-reassurance__details a {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    font-size: 16px;
    text-align: center;
  }

  .mc-group-hero {
    min-height: 520px;
    padding: 104px 0 72px;
  }

  .mc-group-hero h1 {
    font-size: 44px;
  }

  .mc-group-hero__lead {
    font-size: 19px;
    line-height: 1.55;
    white-space: normal;
  }

  .mc-group-intro {
    padding: 58px 0 30px;
  }

  .mc-group-intro__grid {
    gap: 30px;
  }

  .mc-group-intro__content {
    padding: 0;
  }

  .mc-group-intro__content::before {
    display: none;
  }

  .mc-group-intro__content h2 {
    font-size: 30px;
  }

  .mc-group-intro__content p:not(.mc-seo-intro__label) {
    font-size: 16px;
    line-height: 1.72;
  }

  .mc-group-intro__stats {
    grid-template-columns: 1fr;
    padding: 10px 18px;
  }

  .mc-group-intro__stat {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 76px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mc-group-intro__stat i {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .mc-group-intro__stat span {
    font-size: 16px;
  }

  .mc-group-content {
    padding: 28px 0 56px;
  }

  .mc-group-content__grid {
    gap: 18px;
  }

  .mc-group-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 22px;
  }

  .mc-group-section__number {
    font-size: 24px;
  }

  .mc-group-section h2 {
    font-size: 28px;
  }

  .mc-group-section p {
    font-size: 16px;
    line-height: 1.72;
  }

  .mc-group-proof {
    padding: 52px 0 56px;
  }

  .mc-group-proof__grid {
    grid-template-columns: 1fr;
  }

  .mc-group-closing {
    padding: 58px 0 72px;
  }

  .mc-group-closing__card {
    gap: 26px;
    padding: 34px 22px;
  }

  .mc-group-closing__card h2 {
    font-size: 28px;
  }

  .mc-group-closing__card p {
    font-size: 16px;
    line-height: 1.72;
  }

  .mc-rental-terms-hero {
    padding: 116px 0 62px;
  }

  .mc-rental-terms-hero::after {
    display: none;
  }

  .mc-rental-terms-hero h1 {
    font-size: 42px;
  }

  .mc-rental-terms-hero__lead {
    font-size: 17px;
    line-height: 1.7;
  }

  .mc-rental-terms-content {
    padding: 48px 0 70px;
  }

  .mc-rental-terms-summary {
    padding: 28px 22px;
  }

  .mc-rental-terms-summary strong {
    font-size: 22px;
  }

  .mc-rental-term {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 22px;
  }

  .mc-rental-term__number {
    font-size: 24px;
  }

  .mc-rental-term h2 {
    font-size: 27px;
  }

  .mc-rental-term p {
    font-size: 16px;
    line-height: 1.72;
  }

  .mc-rental-term__items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mc-rental-term__items li {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 68px;
    padding: 14px;
  }

  .mc-rental-term__items i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .mc-rental-term__items span {
    font-size: 16px;
    line-height: 1.45;
  }

  .mc-app-band__inner {
    padding: 44px 0;
  }

  .mc-app-band__cars {
    display: none;
  }

  .mc-store-buttons,
  .mc-footer__cta-actions,
  .mc-footer__subscribe form,
  .mc-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

  .mc-footer__cta {
    padding: 22px;
  }

  .mc-footer__cta h2 {
    font-size: 24px;
  }

  .mc-footer__cta .mc-btn,
  .mc-footer__phone {
    width: 100%;
    justify-content: center;
  }

  .mc-whatsapp-floating {
    right: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
  }

  .mc-whatsapp-floating::before {
    inset: -12px;
  }

  .mc-whatsapp-floating i {
    font-size: 34px;
  }

}

/* Final compact typography and spacing override */
.moroccocars-ui-root {
  font-size: 13px;
  line-height: 1.5;
}

.moroccocars-ui-root p,
.moroccocars-ui-root li,
.mc-vehicle-description,
.mc-rental-term p,
.mc-agence-city__seo-sections p,
.mc-group-intro__content p:not(.mc-seo-intro__label),
.mc-group-section p,
.mc-group-closing__card p,
.mc-detail-services__items span {
  font-size: 13px;
  line-height: 1.52;
}

.mc-footer p,
.mc-footer a,
.mc-car-card__subtitle,
.mc-car-card__body > p,
.mc-section-head p,
.mc-app-band p,
.mc-testimonial-grid p,
.mc-group-proof__card p,
.mc-filter-option,
.mc-vehicles-grid-intro {
  font-size: 12px;
  line-height: 1.45;
}

.mc-menu__list a,
.mc-btn,
.mc-search-form .mc-btn--search,
.mc-car-card--featured .mc-btn--ghost,
.mc-reservation-form .mc-btn,
.mc-footer__cta .mc-btn,
.mc-footer__phone {
  font-size: 12px;
}

.mc-eyebrow,
.mc-hero .mc-eyebrow,
.mc-pill,
.mc-seo-intro__label,
.mc-search-form label > span:first-child,
.mc-reservation-form .mc-field-label,
.mc-detail-spec small,
.mc-vehicles-sort label,
.mc-filter-card__head p,
.mc-footer__eyebrow,
.mc-date-picker__weekdays span,
.mc-field-error {
  font-size: 11px;
  line-height: 1.22;
}

.mc-hero__checks span,
.mc-check-grid span {
  font-size: 12px;
}

.mc-hero__checks i,
.mc-check-grid i {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

.mc-search-form label i,
.mc-search-form .mc-btn--search i {
  font-size: 17px;
}

@media (min-width: 1181px) {
  .mc-home > .mc-section > .mc-shell,
  .mc-home .mc-hero__content {
    width: min(1220px, calc(100% - 96px));
  }

  .moroccocars-ui-root h1,
  .mc-hero h1,
  .mc-group-hero h1,
  .mc-rental-terms-hero h1,
  .moroccocars-ui-root .mc-vehicles-hero__content h1,
  .mc-agences-hero__content h1,
  .mc-vehicle-hero-card__content h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .moroccocars-ui-root h2,
  .mc-section-head h2,
  .mc-sell h2,
  .mc-app-band h2,
  .mc-footer__subscribe h2,
  .mc-seo-intro h2,
  .mc-group-intro__content h2,
  .mc-group-section h2,
  .mc-group-closing__card h2,
  .mc-rental-term h2,
  .mc-detail-services__head h2,
  .mc-agence-city h2,
  .mc-agences-cta__card h2,
  .mc-detail-panel h2,
  .mc-reservation-panel h2,
  .mc-similar-vehicles .mc-section-head h2,
  .mc-vehicle-reassurance__card h2,
  .mc-vehicles-cta__content h2,
  .mc-contact-reassurance__card h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .moroccocars-ui-root h3,
  .mc-discover-card h3,
  .mc-car-card h3,
  .mc-type-card h3,
  .mc-step-grid h3,
  .mc-testimonial-grid h3,
  .mc-benefit-card h3,
  .mc-faq-grid h3,
  .mc-group-proof__card h3,
  .mc-agence-city__lists h3,
  .mc-agence-city__seo-sections h3,
  .mc-filter-card__head h3,
  .mc-vehicles-grid .mc-car-card--featured h3,
  .mc-vans-grid .mc-car-card__head h3,
  .mc-vans-rail .mc-car-card__head h3 {
    font-size: 18px;
    line-height: 1.18;
  }

  .moroccocars-ui-root h4,
  .mc-detail-spec strong,
  .mc-rental-terms-summary strong,
  .mc-vehicle-title-card h1,
  .mc-vehicle-title-card strong {
    font-size: 16px;
    line-height: 1.22;
  }

  .mc-hero {
    min-height: clamp(570px, 68vh, 690px);
    padding: clamp(34px, 5vh, 52px) 0 clamp(112px, 13vh, 140px);
  }

  .mc-hero h1 {
    max-width: 780px;
    margin: 10px 0 16px;
  }

  .mc-hero__lead,
  .mc-group-hero__lead,
  .mc-rental-terms-hero__lead,
  .mc-agences-hero__content > p:not(.mc-eyebrow),
  .mc-vehicle-hero-card__content p,
  .mc-vehicles-hero__content span,
  .mc-agences-cta__card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .mc-hero__lead {
    max-width: 740px;
    margin-bottom: 34px;
  }

  .mc-hero__checks {
    gap: 12px 22px;
  }

  .mc-search-panel {
    width: min(1284px, calc(100% - 96px));
    bottom: 22px;
  }

  .mc-search-form {
    grid-template-columns: minmax(220px, 1.45fr) minmax(220px, 1.45fr) minmax(170px, 1fr) minmax(170px, 1fr) minmax(150px, 0.7fr);
    min-height: 104px;
  }

  .mc-search-form label {
    padding: 18px 18px 16px;
  }

  .mc-search-form label > span:first-child {
    margin-bottom: 10px;
  }

  .mc-search-form select,
  .mc-search-form input,
  .mc-search-form strong,
  .mc-field-control,
  .mc-reservation-form input,
  .mc-reservation-form select,
  .mc-reservation-form textarea,
  .mc-reservation-form label {
    font-size: 13px;
    line-height: 1.35;
  }

  .mc-search-form .mc-btn--search {
    min-height: 48px;
    margin: 0 14px;
  }

  .mc-detail-panel,
  .mc-reservation-panel {
    padding: 36px 32px;
  }
}

/* Site-wide 75% visual reference normalization */
@media (min-width: 1181px) {
  .moroccocars-ui-root .mc-shell,
  .mc-home > .mc-section > .mc-shell,
  .mc-fleet > .mc-shell,
  .mc-sell .mc-shell,
  .mc-agency .mc-shell,
  .mc-detail-services .mc-shell,
  .mc-vehicles-hero > .mc-shell,
  .mc-vehicles-listing .mc-shell,
  .mc-city-showcase .mc-shell,
  .mc-agences-hero > .mc-shell,
  .mc-agences-list > .mc-shell,
  .mc-agences-cta > .mc-shell,
  .mc-vehicle-detail-hero .mc-shell,
  .mc-similar-vehicles .mc-shell,
  .mc-vehicle-reassurance .mc-shell {
    width: min(1220px, calc(100% - 96px));
  }

  .moroccocars-ui-root .mc-search-panel,
  .moroccocars-ui-root .mc-search-panel--static,
  .moroccocars-ui-root .mc-search-panel--vehicle-hero {
    width: min(1284px, calc(100% - 96px));
  }

  .moroccocars-ui-root .mc-section,
  .mc-group-intro,
  .mc-group-proof,
  .mc-group-closing,
  .mc-rental-terms-content,
  .mc-agences-list,
  .mc-vehicles-listing,
  .mc-city-showcase,
  .mc-similar-vehicles,
  .mc-vehicle-reassurance,
  .mc-contact-reassurance {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .moroccocars-ui-root .mc-brands {
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .mc-section-head {
    margin-bottom: 26px;
  }

  .mc-section-head h2,
  .mc-sell h2,
  .mc-app-band h2,
  .mc-footer__subscribe h2,
  .mc-seo-intro h2,
  .mc-group-intro__content h2,
  .mc-group-section h2,
  .mc-rental-term h2,
  .mc-detail-services__head h2,
  .mc-agence-city h2,
  .mc-agences-cta__card h2,
  .mc-detail-panel h2,
  .mc-reservation-panel h2,
  .mc-similar-vehicles .mc-section-head h2,
  .mc-vehicle-reassurance__card h2,
  .mc-vehicles-cta__content h2,
  .mc-contact-reassurance__card h2 {
    font-size: 24px;
    line-height: 1.16;
  }

  .mc-section-head p,
  .mc-seo-intro p,
  .mc-group-intro__content p:not(.mc-seo-intro__label),
  .mc-group-section p,
  .mc-rental-term p,
  .mc-agence-city__content > p:not(.mc-agence-city__kicker),
  .mc-agence-city__seo-sections p,
  .mc-agences-cta__card p,
  .mc-contact-reassurance__card p,
  .mc-vehicle-reassurance__card p,
  .mc-vehicles-cta__content p,
  .mc-vehicle-description,
  .mc-detail-services__items span {
    font-size: 13px;
    line-height: 1.5;
  }

  .moroccocars-ui-root .mc-seo-intro {
    padding-top: 76px;
    padding-bottom: 12px;
  }

  .mc-seo-intro__content {
    grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.74fr);
    gap: 68px;
    padding-bottom: 18px;
  }

  .mc-seo-intro__head,
  .mc-seo-intro__body {
    padding-top: 28px;
  }

  .mc-seo-intro__proofs {
    gap: 12px;
    margin-top: 28px;
  }

  .mc-seo-intro__proofs span {
    min-height: 74px;
    gap: 12px;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.22;
  }

  .mc-seo-intro__proofs i {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .mc-brand-logo-card {
    width: 138px;
    height: 82px;
    padding: 16px 22px;
  }

  .mc-brand-logo-card__mark {
    max-width: 92px;
    height: 44px;
    max-height: 44px;
  }

  .mc-car-grid {
    gap: 22px;
  }

  .mc-card-rail {
    grid-auto-columns: calc((100% - 66px) / 4);
    gap: 22px;
    padding-bottom: 14px;
  }

  .mc-car-card__body,
  .mc-car-card--featured .mc-car-card__body,
  .mc-card-rail .mc-car-card--featured .mc-car-card__body,
  .mc-vehicles-grid .mc-car-card--featured .mc-car-card__body {
    padding: 24px 20px 20px;
  }

  .mc-car-card h3,
  .mc-card-rail .mc-car-card--featured h3,
  .mc-car-card--featured h3,
  .mc-vehicles-grid .mc-car-card--featured h3,
  .mc-vans-grid .mc-car-card__head h3,
  .mc-vans-rail .mc-car-card__head h3,
  .mc-type-card h3,
  .mc-benefit-card h3,
  .mc-faq-grid h3,
  .mc-group-proof__card h3,
  .mc-agence-city__lists h3,
  .mc-agence-city__seo-sections h3 {
    font-size: 17px;
    line-height: 1.18;
  }

  .mc-car-card__body > p,
  .mc-car-card--featured .mc-car-card__subtitle,
  .mc-card-foot p,
  .mc-car-card--featured .mc-card-foot p,
  .mc-faq-grid p,
  .mc-benefit-card p,
  .mc-group-proof__card p,
  .mc-agence-city__lists li,
  .mc-vehicles-grid-intro {
    font-size: 12px;
    line-height: 1.42;
  }

  .mc-specs,
  .mc-feature-specs,
  .mc-card-rail .mc-feature-specs,
  .mc-vehicles-grid .mc-feature-specs {
    gap: 8px;
    padding: 16px 0;
  }

  .mc-specs span,
  .mc-feature-specs strong,
  .mc-card-rail .mc-feature-specs strong,
  .mc-vehicles-grid .mc-feature-specs strong {
    font-size: 13px;
  }

  .mc-feature-specs i,
  .mc-seat-icon,
  .mc-card-rail .mc-feature-specs i,
  .mc-card-rail .mc-seat-icon,
  .mc-vehicles-grid .mc-feature-specs i,
  .mc-vehicles-grid .mc-seat-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .mc-card-foot {
    gap: 10px;
    padding-top: 18px;
  }

  .mc-card-foot strong,
  .mc-card-rail .mc-car-card--featured .mc-card-foot strong,
  .mc-car-card--featured .mc-card-foot strong,
  .mc-vehicles-grid .mc-card-foot strong {
    font-size: 18px;
  }

  .mc-car-card--featured .mc-btn--ghost,
  .mc-card-rail .mc-car-card--featured .mc-btn--ghost,
  .mc-vehicles-grid .mc-car-card--featured .mc-btn--ghost,
  .mc-discover-card .mc-btn,
  .mc-btn {
    min-height: 40px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 12px;
  }

  .mc-discover-card {
    gap: 22px;
    padding: 28px;
  }

  .mc-discover-card h3 {
    font-size: 26px;
  }

  .mc-sell__grid,
  .mc-group-intro__grid,
  .mc-agences-hero__grid {
    gap: 48px;
  }

  .mc-video-card {
    height: 460px;
  }

  .mc-logo-card img {
    width: min(460px, 100%);
  }

  .mc-benefit-grid,
  .mc-testimonial-grid,
  .mc-faq-grid,
  .mc-group-proof__grid {
    gap: 18px;
  }

  .mc-benefit-card,
  .mc-testimonial-grid article,
  .mc-faq-grid article,
  .mc-group-section,
  .mc-rental-term,
  .mc-detail-services__card,
  .mc-detail-panel,
  .mc-reservation-panel,
  .mc-contact-reassurance__card,
  .mc-group-closing__card,
  .mc-agences-cta__card,
  .mc-vehicle-reassurance__card {
    padding: 28px 32px;
  }

  .mc-benefit-card {
    min-height: 210px;
  }

  .mc-benefit-card i {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    font-size: 17px;
  }

  .mc-group-hero {
    min-height: 480px;
    padding: 88px 0 62px;
  }

  .mc-group-hero h1,
  .mc-rental-terms-hero h1,
  .moroccocars-ui-root .mc-vehicles-hero__content h1,
  .mc-agences-hero__content h1,
  .mc-vehicle-hero-card__content h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .mc-group-hero__lead,
  .mc-rental-terms-hero__lead,
  .mc-vehicles-hero__content span,
  .mc-agences-hero__content > p:not(.mc-eyebrow),
  .mc-vehicle-hero-card__content p {
    font-size: 13px;
    line-height: 1.45;
  }

  .mc-rental-terms-hero {
    padding: 96px 0 62px;
  }

  .mc-rental-terms-summary {
    padding: 24px 22px;
  }

  .mc-rental-terms-summary strong,
  .mc-rental-term__number,
  .mc-group-section__number,
  .mc-vehicle-title-card h1,
  .mc-vehicle-title-card strong {
    font-size: 18px;
  }

  .mc-rental-term__items li,
  .mc-group-intro__stat {
    min-height: 58px;
    padding: 12px 14px;
  }

  .mc-rental-term__items i,
  .mc-group-intro__stat i {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .mc-rental-term__items span,
  .mc-group-intro__stat span {
    font-size: 13px;
  }

  .mc-vehicles-hero {
    padding: 42px 0 36px;
  }

  .mc-vehicles-hero__card {
    min-height: 500px;
  }

  .mc-vehicles-hero__content {
    min-height: 380px;
    padding: 58px clamp(28px, 6vw, 92px) 128px;
    transform: translateY(24px);
  }

  .mc-search-panel--vehicle-hero {
    margin-top: -72px;
  }

  .mc-vehicles-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 22px;
  }

  .mc-filter-card {
    padding: 22px 18px;
  }

  .mc-vehicles-grid {
    gap: 20px;
  }

  .mc-vehicles-cta {
    padding-bottom: 70px;
  }

  .mc-vehicles-cta__content {
    padding: 28px 32px;
  }

  .mc-city-card {
    min-height: 310px;
  }

  .mc-city-card span {
    font-size: 17px;
  }

  .mc-agences-hero {
    padding: 42px 0 58px;
  }

  .mc-agences-hero__content,
  .mc-agences-hero__media {
    min-height: 420px;
  }

  .mc-agences-hero__content {
    padding: 42px;
  }

  .mc-agence-city {
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    padding: 22px;
  }

  .mc-agence-city--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }

  .mc-agence-city__media {
    min-height: 340px;
  }

  .mc-agence-city__content {
    padding: 24px 20px;
  }

  .mc-agence-city__lists div {
    padding: 16px;
  }

  .mc-vehicle-detail-hero {
    padding: 18px 0 76px;
  }

  .mc-vehicle-hero-card {
    min-height: 400px;
  }

  .mc-vehicle-hero-card__content {
    min-height: 290px;
    max-width: 680px;
    padding: 42px clamp(24px, 6vw, 84px) 110px;
  }

  .mc-vehicle-title-card {
    width: min(940px, calc(100% - 120px));
    min-height: 82px;
    bottom: -36px;
  }

  .mc-vehicle-title-card > div {
    gap: 8px;
    padding: 16px 24px;
  }

  .mc-vehicle-title-card span,
  .mc-vehicle-title-card small {
    font-size: 12px;
  }

  .mc-vehicle-detail-content {
    padding-bottom: 72px;
  }

  .mc-vehicle-detail-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    width: min(1220px, calc(100% - 96px));
  }

  .mc-detail-specs {
    gap: 20px;
  }

  .mc-detail-spec {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .mc-detail-spec > span {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .mc-detail-spec strong {
    font-size: 14px;
  }

  .mc-offer-table {
    font-size: 13px;
  }

  .mc-reservation-form {
    gap: 12px;
    margin-top: 18px;
  }

  .mc-reservation-form label,
  .mc-reservation-form input,
  .mc-reservation-form select,
  .mc-reservation-form textarea {
    font-size: 13px;
  }

  .mc-reservation-form input,
  .mc-reservation-form select {
    height: 44px;
    min-height: 44px;
  }

  .mc-reservation-form textarea {
    min-height: 86px;
  }

  .mc-similar-rail {
    grid-auto-columns: calc((100% - 66px) / 4);
  }

  .mc-footer {
    padding: 44px 0 26px;
  }

  .mc-footer__grid {
    gap: 34px;
    padding: 36px 0;
  }

  .mc-brand--footer,
  .mc-brand--footer .mc-footer__logo {
    width: 320px;
  }

  .mc-whatsapp-floating {
    width: 62px;
    height: 62px;
    right: 28px;
    bottom: 24px;
  }

  .mc-whatsapp-floating::before {
    inset: -12px;
  }

  .mc-whatsapp-floating i {
    font-size: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .moroccocars-ui-root .mc-shell,
  .mc-fleet > .mc-shell,
  .mc-vehicles-hero > .mc-shell,
  .mc-vehicles-listing .mc-shell,
  .mc-agences-hero > .mc-shell,
  .mc-agences-list > .mc-shell,
  .mc-agences-cta > .mc-shell,
  .mc-vehicle-detail-hero .mc-shell,
  .mc-similar-vehicles .mc-shell,
  .mc-vehicle-reassurance .mc-shell {
    width: min(100% - 48px, 1040px);
  }

  .moroccocars-ui-root .mc-section,
  .mc-vehicles-listing,
  .mc-agences-list,
  .mc-rental-terms-content,
  .mc-group-intro,
  .mc-group-proof,
  .mc-group-closing {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .mc-car-card__body,
  .mc-car-card--featured .mc-car-card__body,
  .mc-vehicles-grid .mc-car-card--featured .mc-car-card__body,
  .mc-detail-panel,
  .mc-reservation-panel {
    padding: 24px;
  }

  .mc-seo-intro__proofs span {
    min-height: 68px;
    padding: 14px 16px;
    font-size: 14px;
  }

  .mc-vehicles-hero__card,
  .mc-agences-hero__content,
  .mc-agences-hero__media,
  .mc-vehicle-hero-card {
    min-height: 420px;
  }

  .mc-vehicle-detail-grid {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 1040px);
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .moroccocars-ui-root h1,
  .mc-hero h1,
  .mc-group-hero h1,
  .mc-rental-terms-hero h1,
  .moroccocars-ui-root .mc-vehicles-hero__content h1,
  .mc-agences-hero__content h1,
  .mc-vehicle-hero-card__content h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .moroccocars-ui-root h2,
  .mc-section-head h2,
  .mc-sell h2,
  .mc-app-band h2,
  .mc-seo-intro h2,
  .mc-group-intro__content h2,
  .mc-rental-term h2,
  .mc-detail-services__head h2,
  .mc-agence-city h2,
  .mc-detail-panel h2,
  .mc-reservation-panel h2,
  .mc-similar-vehicles .mc-section-head h2,
  .mc-vehicle-reassurance__card h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  .moroccocars-ui-root h3,
  .mc-car-card h3,
  .mc-type-card h3,
  .mc-step-grid h3,
  .mc-testimonial-grid h3,
  .mc-benefit-card h3,
  .mc-faq-grid h3,
  .mc-agence-city__seo-sections h3,
  .mc-filter-card__head h3,
  .mc-vehicles-grid .mc-car-card--featured h3 {
    font-size: 17px;
    line-height: 1.2;
  }

  .moroccocars-ui-root h4,
  .mc-detail-spec strong,
  .mc-vehicle-title-card h1,
  .mc-vehicle-title-card strong {
    font-size: 15px;
  }

  .mc-hero {
    min-height: 560px;
    padding-bottom: 128px;
  }

  .mc-hero__lead,
  .mc-group-hero__lead,
  .mc-rental-terms-hero__lead,
  .mc-agences-hero__content > p:not(.mc-eyebrow),
  .mc-vehicle-hero-card__content p,
  .mc-vehicles-hero__content span {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 767px) {
  .moroccocars-ui-root h1,
  .mc-hero h1,
  .mc-group-hero h1,
  .mc-rental-terms-hero h1,
  .moroccocars-ui-root .mc-vehicles-hero__content h1,
  .mc-agences-hero__content h1,
  .mc-vehicle-hero-card__content h1 {
    font-size: 26px;
    line-height: 1.12;
  }

  .moroccocars-ui-root h2,
  .mc-section-head h2,
  .mc-sell h2,
  .mc-app-band h2,
  .mc-seo-intro h2,
  .mc-group-intro__content h2,
  .mc-rental-term h2,
  .mc-detail-services__head h2,
  .mc-agence-city h2,
  .mc-detail-panel h2,
  .mc-reservation-panel h2,
  .mc-similar-vehicles .mc-section-head h2,
  .mc-vehicle-reassurance__card h2,
  .mc-footer__cta h2 {
    font-size: 21px;
    line-height: 1.18;
  }

  .moroccocars-ui-root h3,
  .mc-car-card h3,
  .mc-type-card h3,
  .mc-step-grid h3,
  .mc-testimonial-grid h3,
  .mc-benefit-card h3,
  .mc-faq-grid h3,
  .mc-agence-city__seo-sections h3,
  .mc-filter-card__head h3,
  .mc-vehicles-grid .mc-car-card--featured h3 {
    font-size: 17px;
    line-height: 1.2;
  }

  .moroccocars-ui-root h4,
  .mc-detail-spec strong,
  .mc-vehicle-title-card h1,
  .mc-vehicle-title-card strong {
    font-size: 15px;
  }

  .mc-hero {
    min-height: 620px;
  }

  .mc-hero__lead,
  .mc-group-hero__lead,
  .mc-rental-terms-hero__lead,
  .mc-agences-hero__content > p:not(.mc-eyebrow),
  .mc-vehicle-hero-card__content p,
  .mc-vehicles-hero__content span {
    font-size: 13px;
    line-height: 1.42;
  }

  .moroccocars-ui-root p,
  .moroccocars-ui-root li,
  .mc-vehicle-description,
  .mc-rental-term p,
  .mc-agence-city__seo-sections p,
  .mc-group-section p {
    font-size: 12px;
    line-height: 1.48;
  }
}
