@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --mobi-gold: #d49f00;
  --mobi-gold-dark: #a77d00;
  --mobi-gold-soft: #fbf5e2;
  --mobi-ink: #17191d;
  --mobi-text: #353535;
  --mobi-muted: #6f7379;
  --mobi-line: #e2e3e5;
  --mobi-surface: #f5f5f4;
  --mobi-white: #ffffff;
  --container: 1400px;
  --header-base-height: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mobi-white);
  color: var(--mobi-text);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

button,
select {
  cursor: pointer;
}

.site-frame {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 25, 29, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 35px rgba(23, 25, 29, 0.05);
}

.site-header--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 16px rgba(23, 25, 29, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  visibility: hidden;
  transition:
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease 0.08s,
    visibility 0s linear 0.75s;
  will-change: transform;
}

.site-header--sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    visibility 0s linear 0s;
}

.header-inner {
  width: min(var(--container), calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  transition: min-height 350ms ease;
}

.site-header--sticky .header-inner {
  min-height: 70px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  display: block;
  width: 292px;
  height: auto;
  transition: width 350ms ease;
}

.site-header--sticky .brand img {
  width: 192px;
}

.main-navigation {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  color: #3e4145;
  font-size: 15px;
  font-weight: 700;
}

.nav-primary,
.nav-account {
  display: flex;
  align-items: center;
}

.nav-primary {
  gap: 30px;
}

.nav-account {
  position: relative;
  gap: 22px;
  padding-left: 30px;
}

.nav-account::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 28px;
  background: var(--mobi-line);
  content: "";
}

.main-navigation a,
.nav-dropdown > button {
  position: relative;
  transition: color 180ms ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible {
  color: var(--mobi-gold-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  width: 230px;
  padding: 10px;
  border: 1px solid var(--mobi-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(23, 25, 29, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.dropdown-menu::before {
  position: absolute;
  top: -19px;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--mobi-gold-soft);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.register-link {
  color: var(--mobi-gold-dark) !important;
}

.login-link {
  padding: 11px 19px;
  border-radius: 8px;
  background: var(--mobi-ink);
  color: #fff !important;
}

.login-link:hover,
.login-link:focus-visible {
  background: var(--mobi-gold-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--mobi-line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--mobi-ink);
}

.hero {
  position: relative;
  min-height: 515px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(212, 159, 0, 0.16), transparent 31%),
    linear-gradient(112deg, #111317 0%, #1a1d22 54%, #0b0c0e 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 11, 13, 0.05), transparent 48%, rgba(0, 0, 0, 0.22));
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent 5%, #000 65%, transparent 100%);
  animation: gridMove 14s linear infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.5;
}

.hero-glow-one {
  top: 18%;
  right: 9%;
  width: 430px;
  height: 96px;
  border: 2px solid rgba(212, 159, 0, 0.45);
  transform: rotate(-8deg);
  animation: glowSweep 7s ease-in-out infinite alternate;
}

.hero-glow-two {
  right: -5%;
  bottom: 15%;
  width: 610px;
  height: 150px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  transform: rotate(-8deg);
  animation: glowSweep 9s ease-in-out 800ms infinite alternate-reverse;
}

.road-lines {
  position: absolute;
  right: -8%;
  bottom: 58px;
  width: 57%;
  height: 130px;
  transform: perspective(380px) rotateX(61deg) rotateZ(-4deg);
  transform-origin: right bottom;
}

.road-lines span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 159, 0, 0.72));
  animation: roadDrift 4.8s ease-in-out infinite;
}

.road-lines span:nth-child(2) {
  top: 42px;
  animation-delay: -1.1s;
}

.road-lines span:nth-child(3) {
  top: 84px;
  animation-delay: -2.4s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 180px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 15px;
  color: var(--mobi-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(43px, 5.3vw, 72px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hero h1 span {
  display: block;
  color: var(--mobi-gold);
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.search-wrap {
  position: relative;
  z-index: 5;
  width: min(var(--container), calc(100% - 48px));
  margin: -122px auto 84px;
}

.search-panel {
  padding: 34px;
  border: 1px solid rgba(23, 25, 29, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(23, 25, 29, 0.16);
}

.search-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.search-heading .section-kicker {
  margin-bottom: 5px;
}

.search-heading h2 {
  margin: 0;
  color: var(--mobi-ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.search-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mobi-gold-soft);
  color: #7f6108;
  font-size: 13px;
  font-weight: 700;
}

.search-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mobi-gold);
  box-shadow: 0 0 0 4px rgba(212, 159, 0, 0.14);
  content: "";
}

.vehicle-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 5px;
  border-radius: 13px;
  background: #f0f0ef;
}

.vehicle-tabs button {
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #666a6f;
  font-size: 15px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.vehicle-tabs button:hover,
.vehicle-tabs button:focus-visible {
  color: var(--mobi-ink);
}

.vehicle-tabs button.is-active {
  background: #fff;
  color: var(--mobi-ink);
  box-shadow: 0 4px 13px rgba(23, 25, 29, 0.1);
}

.electric-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #4da86b;
  box-shadow: 0 0 0 3px rgba(77, 168, 107, 0.13);
}

.vehicle-search {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 17px;
  margin-top: 24px;
}

.field {
  grid-column: span 1;
  min-width: 0;
}

.field-wide,
.field-pair {
  grid-column: span 2;
}

.field label,
.field legend {
  display: block;
  margin: 0 0 7px;
  padding: 0;
  color: #373a3e;
  font-size: 13px;
  font-weight: 800;
}

.field-pair {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-pair > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.field input,
.field select {
  width: 100%;
  height: 49px;
  padding: 0 13px;
  border: 1px solid #d6d8da;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #33363a;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.field select {
  padding-right: 34px;
}

.field input::placeholder {
  color: #9a9da1;
}

.field input:focus,
.field select:focus {
  border-color: var(--mobi-gold);
  box-shadow: 0 0 0 3px rgba(212, 159, 0, 0.12);
}

.search-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  padding-top: 5px;
}

.search-actions > a {
  color: #595d62;
  font-size: 14px;
  font-weight: 700;
}

.search-actions > a span {
  display: inline-block;
  margin-left: 6px;
  color: var(--mobi-gold-dark);
  transition: transform 150ms ease;
}

.search-actions > a:hover span {
  transform: translateX(3px);
}

.search-button {
  min-width: 210px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  background: var(--mobi-gold);
  box-shadow: 0 10px 22px rgba(212, 159, 0, 0.22);
  color: #17191d;
  font-weight: 800;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.search-button:hover,
.search-button:focus-visible {
  background: #e3ad08;
  box-shadow: 0 14px 30px rgba(212, 159, 0, 0.29);
  transform: translateY(-1px);
}

.form-notice {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  padding: 11px 14px;
  border-left: 3px solid var(--mobi-gold);
  border-radius: 5px;
  background: var(--mobi-gold-soft);
  color: #68500b;
  font-size: 14px;
}

.intro-section,
.offers-section,
.ad-section,
.dummy-content {
  width: min(var(--container), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding: 42px 0 108px;
}

.intro-copy-block h2,
.section-heading-row h2,
.dummy-copy h2 {
  margin: 0;
  color: var(--mobi-ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.intro-copy-block .lead-copy {
  margin: 26px 0 16px;
  color: #45494e;
  font-size: 19px;
  line-height: 1.75;
}

.intro-copy-block > p:not(.section-kicker):not(.lead-copy) {
  margin: 0;
  color: #777b80;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: var(--mobi-gold-dark);
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.ornament-placeholder {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 52%),
    #17191d;
  box-shadow: 0 24px 55px rgba(23, 25, 29, 0.18);
}

.ornament-placeholder::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.ornament-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 73%;
  min-height: 205px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: #fff;
  transform: translate(-50%, -50%) rotate(-4deg);
  flex-direction: column;
  justify-content: space-between;
}

.ornament-number {
  align-self: flex-end;
  color: var(--mobi-gold);
  font-size: 78px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.ornament-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ornament-ring {
  position: absolute;
  top: 38px;
  right: -80px;
  width: 270px;
  height: 270px;
  border: 38px solid rgba(212, 159, 0, 0.75);
  border-radius: 50%;
}

.ornament-line {
  position: absolute;
  bottom: 54px;
  left: -10%;
  width: 72%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mobi-gold));
  transform: rotate(-17deg);
}

.offers-section {
  padding: 94px 0 106px;
  border-top: 1px solid var(--mobi-line);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-heading-row .section-kicker {
  margin-bottom: 8px;
}

.section-heading-row h2 {
  max-width: 720px;
}

.outline-link {
  flex: 0 0 auto;
  padding: 11px 18px;
  border: 1px solid #c9cbcd;
  border-radius: 9px;
  color: #46494d;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.outline-link:hover,
.outline-link:focus-visible {
  border-color: var(--mobi-gold);
  background: var(--mobi-gold-soft);
  color: #6d5206;
}

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

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--mobi-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 25, 29, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.vehicle-card:hover {
  border-color: #d3c18d;
  box-shadow: 0 20px 44px rgba(23, 25, 29, 0.12);
  transform: translateY(-4px);
}

.vehicle-image {
  position: relative;
  height: 226px;
  overflow: hidden;
  background: #e8e8e7;
}

.vehicle-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.025);
}

.sample-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(23, 25, 29, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-image button {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 15px rgba(23, 25, 29, 0.14);
  color: var(--mobi-ink);
  font-size: 24px;
  line-height: 1;
  place-items: center;
}

.vehicle-image button.is-active {
  background: var(--mobi-gold);
  color: #17191d;
}

.vehicle-content {
  padding: 22px;
}

.vehicle-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13px;
}

.vehicle-title-row h3 {
  margin: 0;
  color: var(--mobi-ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.vehicle-title-row p {
  margin: 5px 0 0;
  color: #7b7e83;
  font-size: 13px;
}

.vehicle-title-row strong {
  flex: 0 0 auto;
  color: var(--mobi-gold-dark);
  font-size: 20px;
  white-space: nowrap;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid #ececed;
  border-bottom: 1px solid #ececed;
  color: #585c61;
  font-size: 13px;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 11px;
}

.spec-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mobi-gold);
  content: "";
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #808388;
  font-size: 13px;
}

.vehicle-footer a {
  color: var(--mobi-ink);
  font-weight: 800;
}

.vehicle-footer a:hover,
.vehicle-footer a:focus-visible {
  color: var(--mobi-gold-dark);
}

.ad-section {
  padding: 38px 0 110px;
}

.compact-heading {
  margin-bottom: 24px;
}

.compact-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.ad-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 22px;
}

.ad-placeholder {
  display: flex;
  min-height: 148px;
  padding: 26px;
  border: 1px dashed #b9bbbe;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(212, 159, 0, 0.05), transparent 55%),
    #f8f8f7;
  color: #777a7e;
  flex-direction: column;
  justify-content: center;
}

.ad-placeholder span {
  color: #55585d;
  font-size: 16px;
  font-weight: 800;
}

.ad-placeholder small {
  margin-top: 4px;
}

.site-footer {
  padding: 74px max(24px, calc((100% - var(--container)) / 2)) 25px;
  background: #14161a;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  padding-bottom: 55px;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.footer-column h2::after {
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 10px;
  background: var(--mobi-gold);
  content: "";
}

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

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a {
  font-size: 14px;
  transition: color 150ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--mobi-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.dummy-main {
  min-height: 72vh;
}

.subpage-hero {
  min-height: 390px;
  padding: 75px max(24px, calc((100% - var(--container)) / 2));
  background-position: center;
  background-size: cover;
  color: #fff;
}

.subpage-hero > div {
  display: flex;
  min-height: 240px;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.subpage-hero p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.dummy-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  gap: clamp(45px, 7vw, 95px);
  align-items: start;
  padding: 96px 0 110px;
}

.dummy-copy h2 {
  font-size: clamp(33px, 3.4vw, 46px);
}

.dummy-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #6d7075;
  line-height: 1.8;
}

.inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 27px;
}

.dummy-blocks {
  display: grid;
  gap: 14px;
}

.dummy-blocks > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 17px;
  align-items: center;
  padding: 23px;
  border: 1px solid var(--mobi-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 25, 29, 0.05);
}

.dummy-blocks span {
  grid-row: 1 / 3;
  color: var(--mobi-gold);
  font-size: 28px;
  font-weight: 800;
}

.dummy-blocks strong {
  color: var(--mobi-ink);
  font-size: 16px;
}

.dummy-blocks p {
  margin: 0;
  color: #85888c;
  font-size: 13px;
}

@keyframes gridMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(58px);
  }
}

@keyframes glowSweep {
  from {
    opacity: 0.22;
    transform: translateX(0) rotate(-8deg) scaleX(0.88);
  }
  to {
    opacity: 0.72;
    transform: translateX(-85px) rotate(-8deg) scaleX(1.08);
  }
}

@keyframes roadDrift {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(80px) scaleX(0.68);
  }
  50% {
    opacity: 0.85;
    transform: translateX(-45px) scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .site-header--sticky {
    transition: none;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-base-height: 90px;
  }

  .header-inner {
    min-height: 90px;
  }

  .brand img {
    width: 240px;
  }

  .main-navigation,
  .nav-primary {
    gap: 20px;
  }

  .nav-account {
    gap: 14px;
    padding-left: 20px;
  }

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

  .field-wide,
  .field-pair {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 32px, var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--mobi-line);
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: 0 22px 46px rgba(23, 25, 29, 0.14);
  }

  .main-navigation.is-open,
  .nav-primary,
  .nav-account {
    display: flex;
  }

  .main-navigation.is-open {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-primary,
  .nav-account {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-primary > a,
  .nav-dropdown > button,
  .nav-account > a {
    width: 100%;
    padding: 11px 12px;
    text-align: left;
  }

  .nav-account {
    padding: 10px 0 0;
    border-top: 1px solid var(--mobi-line);
  }

  .nav-account::before {
    display: none;
  }

  .login-link {
    text-align: center !important;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 0;
    padding: 4px 10px 8px 20px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .hero-inner,
  .search-wrap {
    width: min(100% - 32px, var(--container));
  }

  .hero-inner {
    padding-top: 90px;
  }

  .road-lines {
    right: -20%;
    width: 85%;
  }

  .intro-section,
  .dummy-content {
    grid-template-columns: 1fr;
  }

  .ornament-placeholder {
    min-height: 370px;
  }

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

  .vehicle-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
  }

  .dummy-content {
    gap: 45px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 205px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-inner {
    padding: 78px 0 180px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 53px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .search-wrap {
    margin-top: -132px;
  }

  .search-panel {
    padding: 23px 18px;
    border-radius: 17px;
  }

  .search-heading {
    display: block;
  }

  .search-status {
    margin-top: 14px;
  }

  .vehicle-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

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

  .field,
  .field-wide,
  .field-pair {
    grid-column: 1;
  }

  .search-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 15px;
  }

  .search-actions > a {
    text-align: center;
  }

  .search-button {
    width: 100%;
  }

  .intro-section,
  .offers-section,
  .ad-section,
  .dummy-content {
    width: min(100% - 32px, var(--container));
  }

  .intro-section {
    padding-bottom: 82px;
  }

  .ornament-placeholder {
    min-height: 315px;
  }

  .ornament-card {
    width: 78%;
    min-height: 175px;
  }

  .ornament-number {
    font-size: 62px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .vehicle-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .vehicle-image {
    height: 218px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-hero {
    min-height: 330px;
    padding: 55px 16px;
  }

  .subpage-hero > div {
    min-height: 220px;
  }

  .subpage-hero h1 {
    font-size: 43px;
  }

  .dummy-content {
    padding: 72px 0 85px;
  }
}
