:root {
  --primary: #f03828;
  --primary-dark: #d42e1f;
  --primary-soft: rgba(240, 56, 40, 0.12);
  --black: #0b0b0b;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --white: #ffffff;
  --cream: #f5f2ed;
  --cream-2: #ebe6de;
  --text: #1c1c1c;
  --muted: #6d6d6d;
  --border: #e6e1d8;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px rgba(11, 11, 11, 0.08);
  --container: 1320px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --header: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: clip;
  overflow-y: auto;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
select,
input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  padding: 100px 0;
}

.section--cream {
  background: var(--cream);
  width: 100%;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kicker--light {
  color: #ffb4ad;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  color: var(--white);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-head__text {
  max-width: 560px;
  color: var(--muted);
  margin-top: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 13px 22px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--primary);
}

.btn--ghost,
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover,
.btn--ghost:hover {
  background: var(--white);
  color: var(--black);
}

.btn--lg {
  padding: 16px 28px 16px 24px;
}

.btn__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
}

.btn--outline .btn__icon {
  background: var(--white);
  color: var(--black);
}

.notice-bar {
  background: #2a0d0b;
  color: #f7d4d0;
  font-size: 13px;
}

.notice-bar__inner {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.notice-bar i {
  color: var(--primary);
  font-size: 18px;
}

.notice-bar p {
  flex: 1;
}

.notice-bar__close {
  background: none;
  border: 0;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
}

.topbar {
  background: var(--black);
  color: #cfcfcf;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--white);
}

.topbar__left,
.topbar__center,
.topbar__social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__center strong {
  color: var(--white);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.topbar__social a {
  width: 28px;
  height: 28px;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 20px;
}

.logo img {
  height: 54px;
  width: auto;
  mix-blend-mode: lighten;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #ececec;
  font-weight: 600;
  font-size: 15px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 120;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: 0.25s ease;
  display: block;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 50px 0 0;
}

.hero__sky {
  position: absolute;
  inset: 0 0 180px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 56, 40, 0.16), transparent 28%),
    linear-gradient(180deg, #000000 0%, #000000 100%);
  z-index: 0;
}

.hero__ground {
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: var(--cream);
  z-index: 0;
}

.img-wrap {
  margin-top: 18px;
}
.img-wrap img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.hero__top {
  position: relative;
  z-index: 4;
  padding-bottom: 8px;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 70px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  /* max-width: 10ch; */
  margin-bottom: 22px;
}

.hero__intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  max-width: 720px;
}

.hero__pill {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  border-radius: 999px;
  padding: 12px 22px;
}

.hero__intro p {
  color: #d7dde8;
  font-size: 15px;
  max-width: 500px;
  margin: 0;
  line-height: 1.55;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  position: relative;
  width: min(250px, 100%);
  background: rgba(16, 22, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 18px 18px 16px;
  color: var(--white);
  margin-top: 8px;
}

.hero__proof strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin: 10px 0 6px;
}

.hero__proof p {
  color: #c5c9d4;
  font-size: 12px;
  line-height: 1.45;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #1a2236;
  margin-left: -8px;
}

.hero__avatars img:first-child {
  margin-left: 0;
}

.hero__burst {
  position: absolute;
  top: -14px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero__stage {
  position: relative;
  z-index: 2;
  width: min(1000px, 100%);
  margin: -70px auto -48px;
  pointer-events: none;
  animation: carFromRight 1.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero__car-wrap {
  position: relative;
  width: 100%;
}

@keyframes carFromRight {
  0% {
    transform: translateX(52%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stage {
    animation: none;
  }

  .hero__smoke span {
    animation: none;
  }
}

.hero__car {
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.35));
}

.hero__car-wrap::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

.priority__visual {
  display: table;
  margin: 0 auto;
}

.hero__smoke {
    position: absolute;
    right: -16%;
    bottom: -2%;
    width: 40%;
    height: 70%;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.hero__smoke span {
  position: absolute;
  left: 8%;
  bottom: 18%;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78) 0%, rgba(230, 235, 240, 0.35) 42%, transparent 72%);
  filter: blur(18px);
  opacity: 0;
  animation: smokePuff 3.2s ease-out infinite;
}

.hero__smoke span:nth-child(1) {
  width: 90px;
  height: 70px;
  animation-delay: 0s;
}

.hero__smoke span:nth-child(2) {
  width: 140px;
  height: 100px;
  animation-delay: 0.35s;
}

.hero__smoke span:nth-child(3) {
  width: 180px;
  height: 130px;
  animation-delay: 0.7s;
}

.hero__smoke span:nth-child(4) {
  width: 120px;
  height: 90px;
  left: 18%;
  animation-delay: 1.05s;
}

.hero__smoke span:nth-child(5) {
  width: 210px;
  height: 150px;
  animation-delay: 1.4s;
}

.hero__smoke span:nth-child(6) {
  width: 160px;
  height: 110px;
  left: 4%;
  animation-delay: 1.75s;
}

.hero__smoke span:nth-child(7) {
  width: 240px;
  height: 160px;
  animation-delay: 2.1s;
}

.hero__smoke span:nth-child(8) {
  width: 130px;
  height: 95px;
  left: 22%;
  animation-delay: 2.5s;
}

.hero__fog {
  position: absolute;
  right: -4%;
  top: 18%;
  width: 46%;
  height: 70%;
  pointer-events: none;
  z-index: 1;
}

.hero__fog span {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(210, 220, 230, 0.18) 42%, transparent 70%);
  animation: fogDrift 7s ease-in-out infinite;
}

.hero__fog span:nth-child(1) {
  width: 220px;
  height: 140px;
  right: 8%;
  bottom: 28%;
}

.hero__fog span:nth-child(2) {
  width: 280px;
  height: 170px;
  right: -6%;
  bottom: 18%;
  animation-delay: 1.2s;
}

.hero__fog span:nth-child(3) {
  width: 180px;
  height: 120px;
  right: 18%;
  bottom: 42%;
  animation-delay: 2s;
  opacity: 0.7;
}

.hero__fog span:nth-child(4) {
  width: 240px;
  height: 90px;
  right: 0;
  bottom: 8%;
  animation-delay: 0.6s;
}

@keyframes smokePuff {
  0% {
    transform: translate(0, 0) scale(0.35);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  70% {
    opacity: 0.35;
  }
  100% {
    transform: translate(90px, -70px) scale(1.85);
    opacity: 0;
  }
}

@keyframes fogDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(28px, -18px) scale(1.12); opacity: 0.9; }
}

.search {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}

.search-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.search-card__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.search-card__field select {
  width: 100%;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--cream);
  font-weight: 600;
  outline: none;
}

.search-card__field select:focus {
  border-color: var(--primary);
}

.search-card__btn {
  height: 45px;
  padding-inline: 28px;
  width: 100%;
}

.makers {
  overflow: hidden;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.makers__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.makers__track:hover {
  animation-play-state: paused;
}

.makers__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  width: auto;
  height: 48px;
}

.makers__logo img {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 40px;
  filter: grayscale(1);
  opacity: 0.72;
}

.makers__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a948b;
  white-space: nowrap;
  line-height: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .makers__track {
    animation: none;
  }
}

.category-card {
  position: relative;
  display: block;
  height: 100%;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  min-height: 250px;
  padding: 22px 18px 0;
  overflow: hidden;
  isolation: isolate;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(240, 56, 40, 0.35), transparent 70%);
  z-index: -1;
}

.category-card__no {
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.category-card h3 {
  font-size: 24px;
  margin: 8px 0 2px;
}

.category-card p {
  color: #b0b0b0;
  font-size: 13px;
}

.category-card img {
  width: 130%;
  max-width: none;
  margin-left: -12%;
  margin-top: 10px;
  transition: 0.4s ease;
}

.category-card:hover img {
  transform: translateX(8px) scale(1.04);
}

.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
  height: 100%;
}

.section--cream .car-card {
  box-shadow: 0 16px 40px rgba(11, 11, 11, 0.06);
}

.car-card:hover {
  transform: translateY(-8px);
}

.car-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.car-card:hover .car-card__media img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 1;
}

.car-card__body {
  padding: 20px 22px 22px;
}

.car-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  min-height: 46px;
}

.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.car-meta i {
  color: var(--primary);
  margin-right: 4px;
}

.car-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.car-card__foot strong {
  font-size: 22px;
  color: var(--primary);
}

.car-card__foot a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
}

.car-card__foot a:hover {
  background: var(--primary);
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 36px;
}

.about__badge {
  position: absolute;
  left: -24px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 0 0 12px var(--white);
}

.about__badge strong {
  font-size: 42px;
  line-height: 1;
}

.about__badge span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.about__content p {
  color: var(--muted);
  margin: 16px 0 28px;
}

.about__points {
  margin-bottom: 32px;
}

.about__points article {
  display: flex;
  gap: 14px;
}

.about__points i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.about__points h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.about__points p {
  margin: 0;
  font-size: 14px;
}

.featured-strip,
.ranked {
  background: var(--black);
  color: var(--white);
}

.featured-strip {
  padding: 28px 0;
}

.featured-strip article,
.ranked article {
  padding: 8px 8px 8px 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.featured-strip span,
.ranked span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-strip h3,
.ranked h3 {
  font-size: 22px;
  margin: 8px 0 10px;
}

.featured-strip a,
.ranked a {
  color: #cfcfcf;
  font-weight: 600;
  font-size: 14px;
}

.featured-strip a:hover,
.ranked a:hover {
  color: var(--primary);
}

.how__content p {
  color: var(--muted);
  margin: 14px 0 28px;
}

.steps {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.steps span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
}

.steps h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.steps p {
  margin: 0;
  font-size: 14px;
}

.how__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.how__orbit {
  position: absolute;
  width: 88%;
  opacity: 0.8;
}

.how__car {
  position: relative;
  width: 100%;
}

.hire-card {
  background: var(--black);
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
  height: 100%;
  border: 1px solid #d3d3d3;
}

.hire-card img {
  width: 100%;
  border-radius: 0;
  object-fit: contain;
  background: #0f0f0f;
}

.hire-card__body {
  padding: 24px 26px 30px;
}

.hire-card__body span {
  color: var(--primary);
  font-weight: 800;
}

.hire-card h3 {
  font-size: 22px;
  margin: 8px 0 10px;
}

.hire-card p {
  color: #b8b8b8;
  font-size: 15px;
}

.priority {
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 56, 40, 0.16), transparent 28%),
    var(--black);
  color: var(--white);
  padding: 90px 0;
  overflow: hidden;
}

.priority__content p {
  color: #bdbdbd;
  margin: 16px 0 24px;
}

.priority__list {
  display: grid;
  gap: 12px;
}

.priority__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.priority__list i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
}

.slider-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  justify-content: flex-end;
}

.slider-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
}

.slider-nav__btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cta {
  min-height: 460px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.55) 55%, rgba(11, 11, 11, 0.28) 100%);
}

.cta__inner {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta h2 {
  margin: 8px 0 14px;
}

.cta p {
  color: #d7d7d7;
  margin-bottom: 26px;
}

.cta__car {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: min(680px, 52vw);
  z-index: 1;
  pointer-events: none;
}

.cta__car img {
  width: 100%;
  mix-blend-mode: lighten;
}

.hero__fog--cta {
  right: -8%;
  top: 10%;
  width: 55%;
  height: 80%;
}

.ranked {
  padding: 48px 0;
}

/* .faq__visual {
  background: var(--black);
  border-radius: 36px;
  padding: 30px 10px 0;
} */

.faq__visual img {
  width: 100%;
}

.accordion {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.accordion__item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.accordion__btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.accordion__btn::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 22px;
}

.accordion__item.is-open .accordion__btn::after {
  content: "–";
}

.accordion__panel {
  display: none;
  padding: 0 22px 18px;
  color: var(--muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.arrivals-slider .swiper-slide {
  height: auto;
}

.arrival-shot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--black);
  box-shadow: 0 18px 40px rgba(11, 11, 11, 0.08);
  isolation: isolate;
}

.arrival-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.arrival-shot::before,
.arrival-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.arrival-shot::before {
  background: linear-gradient(180deg, rgba(11, 11, 11, 0) 45%, rgba(11, 11, 11, 0.28) 100%);
  opacity: 0.55;
  transition: opacity 0.45s ease;
}

.arrival-shot::after {
  inset: auto;
  top: -40%;
  left: -60%;
  width: 45%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: rotate(22deg);
  opacity: 0;
}

.arrival-shot:hover {
  box-shadow: 0 28px 50px rgba(11, 11, 11, 0.16);
}

.arrival-shot:hover img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.04);
}

.arrival-shot:hover::before {
  opacity: 0.15;
}

.arrival-shot:hover::after {
  animation: arrival-shine 0.85s ease forwards;
}

@keyframes arrival-shine {
  0% {
    opacity: 0;
    left: -60%;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arrival-shot img,
  .arrival-shot::before,
  .arrival-shot::after {
    transition: none;
    animation: none;
  }

  .arrival-shot:hover img {
    transform: none;
  }
}

.accordion__item.is-open {
  border-color: var(--primary);
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-slider .swiper-slide {
  height: auto;
}

.testimonial-slide {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  width: 100%;
}

.testimonials__media {
  min-width: 0;
  overflow: hidden;
  border-radius: 36px;
}

.testimonials__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 0;
}

.testimonial-slide__body {
  min-width: 0;
}

.testimonial-slider .slider-nav {
  position: relative;
  z-index: 2;
}

.stars {
  color: #f5b301;
  letter-spacing: 2px;
  margin: 18px 0 12px;
}

blockquote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.cite {
  margin-top: 22px;
}

.cite strong {
  display: block;
  font-size: 18px;
}

.cite span {
  color: var(--muted);
  font-size: 14px;
}

.blog {
  width: 100%;
}

.blog__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.blog__stack {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card--featured img {
  height: 340px;
  flex: 1;
}

.blog-card__body {
  padding: 22px;
}

.blog-card span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 22px;
  margin: 10px 0 12px;
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.footer {
  background: linear-gradient(180deg, #000000 0%, #000000 100%);
  color: #e8edf5;
  padding-top: 80px;
  position: relative;
  width: 100%;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.15fr 0.95fr;
  gap: 40px 32px;
  padding-bottom: 28px;
  align-items: start;
}

.footer__brand p {
  margin: 18px 0 0;
  max-width: 360px;
  line-height: 1.75;
  color: #d7dde8;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 18px;
}

.footer__follow {
  margin-top: 28px;
}

.footer ul {
  display: grid;
  gap: 10px;
}

.footer a {
  color: #e8edf5;
}

.footer a:hover {
  color: var(--primary);
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--white);
}

.footer__contact {
  display: grid;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer__contact i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__to-top {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 18px;
}

.footer__to-top a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.footer__to-top a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 22px 0;
  font-size: 14px;
  color: #fff;
}

/* .back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 70px;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 40;
} */


.back-top {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 99999 !important;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
    transform: scale(1);
    width: 80px;
    height: 80px;
    background: transparent;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    will-change: bottom, left;
  }
  
  .back-top.is-visible {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }
  
  .back-top:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
  
  .back-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease, filter 0.6s ease;
    filter: brightness(1);
  }
  
  .back-top:hover img {
    transform: translateY(-2px);
    filter: brightness(1.2);
    position: relative;
  }

/* Headlight glow effect - focused upward beam from headlights */
.back-top::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50%;
    height: 60px;
    background: linear-gradient(to top, 
      rgba(255, 255, 200, 0.6) 0%,
      rgba(255, 255, 150, 0.4) 20%,
      rgba(255, 255, 100, 0.2) 50%,
      transparent 100%
    );
    border-radius: 50% 50% 0 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease, height 0.8s ease;
    clip-path: ellipse(50% 100% at 50% 0%);
  }
  
  .back-top:hover::before {
    opacity: 1;
    animation: headlightPulse 2s ease-in-out infinite;
  }
  
  /* Additional focused beam effect */
  .back-top::after {
    content: '';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 35%;
    height: 80px;
    background: linear-gradient(to top, 
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 200, 0.3) 30%,
      transparent 80%
    );
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease, height 1s ease;
    clip-path: ellipse(40% 100% at 50% 0%);
  }
  
  .back-top:hover::after {
    opacity: 1;
    animation: headlightPulse 2s ease-in-out infinite 0.2s;
  }
  
  @keyframes headlightPulse {
    0%, 100% {
      opacity: 0.7;
      transform: translate(-50%, 0) scaleY(1);
    }
    50% {
      opacity: 0.9;
      transform: translate(-50%, 0) scaleY(1.05);
    }
  }
  
  @media (max-width: 768px) {
    .back-top {
      bottom: 15px !important;
      left: 15px !important;
      width: 65px;
      height: 65px;
      padding: 0;
    }
  }

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

body.nav-open .back-top {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .about__media img,
  .testimonials__media img {
    height: 480px;
  }

  .testimonial-slide {
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials__media {
    border-radius: 28px;
  }

  .testimonials__media img {
    height: min(360px, 56vw);
  }

  .testimonial-slider .slider-nav {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .makers {
    padding: 18px 0;
  }

  .makers__track {
    gap: 28px;
    animation-duration: 26s;
  }

  .makers__logo {
    width: auto;
    height: 40px;
    gap: 8px;
  }

  .makers__logo img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    flex-basis: 32px;
  }

  .makers__name {
    font-size: 12px;
  }

  .topbar__social {
    display: none;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header__actions .btn--ghost,
  .header__actions .btn--primary {
    display: none;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 12, 0.72);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(82vw, 340px);
    height: 100dvh;
    padding: 18px 22px 28px;
    background: #0b0b0b;
    color: #f2f2f2;
    z-index: 120;
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0.32s ease;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.45);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav__head .logo img {
    height: 46px;
  }

  .mobile-nav__close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: transparent;
    color: var(--white);
    font-size: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-nav__links {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    color: #f2f2f2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav__links a:hover {
    color: var(--primary);
  }

  .mobile-nav__cta {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }

  .mobile-nav__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .mobile-nav__cta .btn--ghost {
    display: inline-flex;
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
  }

  .hero {
    padding: 16px 0 72px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(32px, 7vw, 48px);
    margin-bottom: 14px;
  }

  .hero__proof {
    display: none;
  }

  .hero__stage {
    width: min(720px, 100%);
    margin: 8px auto -20px;
  }

  .hero__sky {
    inset: 0 0 88px 0;
  }

  .hero__ground {
    height: 88px;
  }

  .hero__intro {
    margin-bottom: 14px;
  }

  .cta__car {
    display: none;
  }

  .about__badge {
    left: 16px;
    width: 120px;
    height: 120px;
  }

  .topbar__center {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .topbar__left a:last-child,
  .header__actions .btn--primary {
    /* display: none; */
  }

  .search-card {
    padding: 14px;
    border-radius: 16px;
  }

  .search-card__btn {
    width: 100%;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 20px 0 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .hero__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }

  .hero__intro p {
    max-width: none;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero__pill {
    font-size: 13px;
    padding: 8px 14px;
  }

  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero__cta .btn--lg {
    padding: 10px 12px 10px 14px;
    font-size: 13px;
  }

  .hero__proof {
    display: none;
  }

  .hero__stage {
    width: 100%;
    margin: 6px auto 0;
  }

  .hero__car {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__sky {
    inset: 0 0 56px 0;
  }

  .hero__ground {
    height: 56px;
  }

  .hero__smoke {
    right: -6%;
    bottom: 4%;
    width: 40%;
    height: 50%;
  }

  .search {
    margin-top: 0;
    padding: 0 0 12px;
  }

  .notice-bar p {
    font-size: 12px;
  }

  .logo img {
    height: 44px;
  }

  .about__media img,
  .blog-card img,
  .blog-card--featured img {
    height: 280px;
  }

  .testimonials__media {
    border-radius: 22px;
  }

  .testimonials__media img {
    height: 300px;
    object-position: top;
  }

  .makers {
    padding: 14px 0;
  }

  .makers__track {
    gap: 20px;
    animation-duration: 22s;
  }

  .makers__logo {
    width: auto;
    height: 32px;
    gap: 6px;
  }

  .makers__logo img {
    width: 26px;
    height: 26px;
    max-width: 26px;
    max-height: 26px;
    flex-basis: 26px;
  }

  .makers__name {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .testimonial-slide__body .kicker {
    margin-bottom: 10px;
  }

  .how__visual {
    min-height: 280px;
  }
}

.page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 56, 40, 0.16), transparent 28%),
    linear-gradient(180deg, #000000 0%, #000000 100%);
  color: var(--white);
  padding: 36px 0 56px;
  overflow: hidden;
}

.page-hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 280px);
  align-items: center;
  gap: 20px;
}

.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  text-transform: uppercase;
  margin: 8px 0 12px;
}

.page-hero p {
  max-width: 560px;
  color: #d7dde8;
}

.page-hero__car {
  justify-self: end;
  max-width: 280px;
  width: 100%;
}

.page-hero__car img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  object-position: right bottom;
  mix-blend-mode: lighten;
  display: block;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: #b7c0ce;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.search-card__field input,
.search-card__field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--cream);
  font-weight: 600;
  outline: none;
  font-family: inherit;
  color: var(--text);
}

.search-card__field input {
  height: 45px;
}

.search-card__field textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.search-card__field input:focus,
.search-card__field textarea:focus {
  border-color: var(--primary);
}

.inner-page {
  background: var(--cream);
  padding: 48px 0 90px;
}

.buy-overview {
  background: var(--white);
  padding: 64px 0 28px;
}

.buy-overview__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.buy-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 999px;
  padding: 10px 16px 10px 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.buy-chip:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.buy-chip b {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.buy-chip__line {
  width: 36px;
  height: 2px;
  background: var(--border);
}

.buy-zig {
  background: var(--cream);
  padding: 48px 0 80px;
}

.zig {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  scroll-margin-top: 120px;
}

.zig:last-child {
  margin-bottom: 0;
}

.zig--flip .zig__media {
  order: 2;
}

.zig__media {
  background: var(--black);
  border-radius: 32px;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: end center;
}

.zig__media img {
  width: 88%;
  max-height: 300px;
  object-fit: contain;
  margin-bottom: -8px;
}

.zig__media--photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 320px;
  object-fit: cover;
  margin: 0;
}

.zig__body {
  position: relative;
}

.zig__no {
  position: absolute;
  top: -28px;
  right: 0;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.8;
  color: rgba(240, 56, 40, 0.1);
  letter-spacing: -0.06em;
  pointer-events: none;
}

.zig__body h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 8px 0 14px;
}

.zig__body p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 480px;
}

.buy-include {
  background: linear-gradient(180deg, #152038 0%, #0b1220 100%);
  color: #d7dde8;
  padding: 80px 0;
}

.buy-include h2 {
  color: var(--white);
}

.buy-include__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 26px;
  height: 100%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.buy-include__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
}

.buy-include__card i {
  color: var(--primary);
  font-size: 28px;
}

.buy-include__card h3 {
  color: var(--white);
  margin: 14px 0 8px;
  font-size: 20px;
}

.auction-intro {
  background: var(--white);
  padding: 64px 0 40px;
}

.auction-phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: phase;
}

.auction-phases article {
  border-radius: 24px;
  padding: 26px 24px 40px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.auction-phases article::after {
  content: "0" counter(phase);
  counter-increment: phase;
  position: absolute;
  right: 12px;
  bottom: -18px;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
  color: rgba(240, 56, 40, 0.12);
  pointer-events: none;
}

.auction-phases article:nth-child(2) {
  background: var(--black);
  color: #d7dde8;
}

.auction-phases article:nth-child(2) h3 {
  color: var(--white);
}

.auction-phases span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auction-phases h3 {
  font-size: 28px;
  margin: 10px 0 8px;
}

.auction-phases p {
  color: var(--muted);
}

.auction-phases article:nth-child(2) p {
  color: #b7c0ce;
}

.auction-phases b {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.auction-timeline {
  /* background: var(--cream); */
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(240, 56, 40, 0.15));
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.tl-item:nth-child(odd) .tl-card {
  grid-column: 1;
  text-align: right;
  border-right: 3px solid var(--primary);
}

.tl-item:nth-child(even) .tl-card {
  grid-column: 3;
  border-left: 3px solid var(--primary);
}

.tl-item .tl-node {
  grid-column: 2;
  grid-row: 1;
}

.tl-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--cream);
}

.tl-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.tl-card em {
  display: block;
  color: var(--primary);
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tl-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.tl-card p {
  color: var(--muted);
  font-size: 15px;
}

.value-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.offer-card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.value-card i,
.offer-card i {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
}

.value-card h3,
.offer-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.prose {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.prose h2 {
  font-size: 28px;
  margin: 28px 0 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  list-style: disc;
}

.prose li {
  padding-left: 4px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.policy-nav {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 108px;
}

.policy-nav h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.policy-nav a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.policy-nav a:hover,
.policy-nav a.is-active {
  color: var(--primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-card,
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary);
  margin-top: 3px;
}

.contact-form .row {
  margin-bottom: 4px;
}

.contact-form .search-card__field {
  margin-bottom: 12px;
}

.form-note {
  margin-top: 12px;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 991px) {
  .page-hero__row,
  .value-grid,
  .offer-grid,
  .policy-layout,
  .contact-layout,
  .zig,
  .auction-phases {
    grid-template-columns: 1fr;
  }

  .zig--flip .zig__media {
    order: 0;
  }

  .timeline::before {
    left: 28px;
  }

  .tl-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .tl-item .tl-node,
  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card {
    grid-column: auto;
    text-align: left;
  }

  .page-hero__car {
    max-width: 220px;
    justify-self: start;
  }

  .policy-nav {
    position: static;
  }
}

@media (max-width: 767px) {
  .page-hero__car {
    display: none;
  }

  .zig__media,
  .zig__media--photo img {
    min-height: 220px;
  }

  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card {
    border-right: 0;
    border-left: 3px solid var(--primary);
  }
}

.stock-page {
  background: var(--cream);
  padding: 28px 0 80px;
}

.stock-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.stock-filter {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-top: -72px;
  position: sticky;
  top: 108px;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.stock-filter__head {
  margin-bottom: 4px;
}

.stock-filter__head h2 {
  font-size: 22px;
}

.stock-filter .search-card__field select {
  height: 46px;
  border-radius: 12px;
  font-size: 13px;
}

.stock-filter__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stock-filter .search-card__btn {
  width: 100%;
  height: 46px;
}

.stock-main {
  min-width: 0;
}

.stock-card .car-card__media {
  aspect-ratio: 16 / 9;
}

.stock-card .car-card__body {
  padding: 12px 14px 14px;
}

.stock-card h3 {
  font-size: 15px;
  line-height: 1.3;
  min-height: 0;
  margin-bottom: 8px;
}

.stock-card .car-meta {
  gap: 6px 10px;
  font-size: 11px;
  padding-bottom: 10px;
}

.stock-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  font-size: 15px;
}

.stock-card .badge {
  top: 10px;
  left: 10px;
  font-size: 10px;
  padding: 4px 8px;
}

.stock-card__ref {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.stock-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  flex-wrap: wrap;
}

.stock-card__foot strong {
  font-size: 16px;
  color: var(--primary);
}

.stock-card__foot .btn {
  padding: 7px 10px;
  font-size: 11px;
}

.stock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stock-toolbar p {
  font-weight: 600;
  color: var(--muted);
}

.stock-toolbar p strong {
  color: var(--text);
  font-size: 22px;
}

.stock-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stock-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--border);
}

.stock-sort span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stock-sort select {
  height: 40px;
  border: 0;
  background: transparent;
  font-weight: 700;
  outline: none;
}

.stock-save {
  color: var(--text);
  border-color: var(--border);
  background: var(--white);
}

.stock-save:hover,
.stock-save.is-saved {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.stock-card__wish.is-active {
  background: var(--primary);
  color: var(--white);
}

.stock-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
  font-weight: 600;
}

.stock-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stock-pager button {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.stock-pager button.is-active,
.stock-pager button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.stock-cta {
  background: linear-gradient(180deg, #152038 0%, #0b1220 100%);
  color: #d7dde8;
  padding: 72px 0;
}

.stock-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stock-cta h2 {
  color: var(--white);
  margin: 8px 0 12px;
}

.stock-cta p {
  max-width: 560px;
}

@media (max-width: 991px) {
  .stock-layout {
    grid-template-columns: 1fr;
  }

  .stock-filter {
    position: static;
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .stock-filter {
    margin-top: -28px;
    padding: 16px;
  }

  .stock-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stock-card__foot .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #stockGrid > .stock-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

.about-story {
  background: var(--white);
  padding: 80px 0 72px;
  overflow: hidden;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-story__media {
  position: relative;
  padding: 12px 28px 36px 0;
}

.about-story__frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 520px;
  background: var(--black);
}

.about-story__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 11, 0.35) 100%);
  pointer-events: none;
}

.about-story__frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-story__origin {
  position: absolute;
  top: 36px;
  left: -8px;
  z-index: 3;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-7deg);
  box-shadow: 0 12px 30px rgba(240, 56, 40, 0.35);
}

.about-story__car {
  position: absolute;
  right: -8%;
  bottom: -8px;
  width: 72%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 22px 28px rgba(11, 11, 11, 0.35));
}

.about-story__badge {
  position: absolute;
  left: -18px;
  bottom: 48px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 0 0 10px var(--white);
  z-index: 3;
}

.about-story__badge strong {
  font-size: 38px;
  line-height: 1;
}

.about-story__badge span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.about-story__copy h2 {
  margin-bottom: 18px;
}

.about-story__copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-story__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-story__facts strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.about-story__facts span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.about-story__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-ticker {
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
  padding: 16px 0;
}

.about-ticker__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: about-ticker 28s linear infinite;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-ticker__track span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 40px;
  border-radius: 50%;
  background: var(--white);
  vertical-align: middle;
}

@keyframes about-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-mv__panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.about-mv__panel b {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: clamp(88px, 12vw, 160px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.about-mv__inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
}

.about-mv__panel--mission {
  background: var(--cream);
  padding: 88px 56px 88px max(32px, calc((100vw - var(--container)) / 2 + 16px));
}

.about-mv__panel--mission b {
  color: rgba(240, 56, 40, 0.12);
}

.about-mv__panel--vision {
  background: linear-gradient(160deg, #152038 0%, #0b1220 100%);
  color: #d7dde8;
  padding: 88px max(32px, calc((100vw - var(--container)) / 2 + 16px)) 88px 56px;
}

.about-mv__panel--vision h2 {
  color: var(--white);
}

.about-mv__panel--vision b {
  color: rgba(255, 255, 255, 0.06);
}

.about-mv__inner h2 {
  margin: 8px 0 16px;
}

.about-mv__inner p {
  max-width: 460px;
}

.about-mv__panel--mission p {
  color: var(--muted);
}

.about-values {
  background: var(--cream);
  padding: 90px 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.about-values__copy .section-head {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
}

.about-values__copy .section-head__text {
  max-width: 420px;
  margin-top: 8px;
}

.about-values__media {
  position: relative;
  padding: 12px 8px 28px 0;
}

.about-values__frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 640px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.about-values__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(11, 11, 11, 0.42) 100%);
  pointer-events: none;
}

.about-values__frame img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: 58% center;
}

.about-values__caption {
  position: absolute;
  left: -8px;
  bottom: 52px;
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-6deg);
  box-shadow: 0 12px 30px rgba(240, 56, 40, 0.35);
}

.about-values__list {
  display: grid;
  gap: 0;
}

.about-values__list article {
  display: grid;
  grid-template-columns: 86px 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  transition: transform 0.25s ease;
}

.about-values__list article:first-child {
  border-top: 1px solid var(--border);
}

.about-values__list article:hover {
  transform: translateX(6px);
}

.about-values__list b {
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  transition: color 0.25s ease, -webkit-text-stroke 0.25s ease;
}

.about-values__list article:hover b {
  color: var(--primary);
  -webkit-text-stroke: 0;
}

.about-values__list i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--white);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--shadow);
}

.about-values__list h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.about-values__list p {
  color: var(--muted);
  margin: 0;
}

.about-stand {
  background: linear-gradient(180deg, #152038 0%, #000000 100%);
  color: #d7dde8;
  padding: 90px 0;
}

.about-stand__bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-stand__lead {
  grid-column: 1 / 3;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 56, 40, 0.28), transparent 34%),
    linear-gradient(160deg, #000000 0%, #101a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
}

.about-stand__lead h2 {
  color: var(--white);
  margin: 8px 0 14px;
}

.about-stand__lead p {
  max-width: 520px;
  margin: 0;
}

.about-stand__bento > article:not(.about-stand__lead) {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 26px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-stand__bento > article:not(.about-stand__lead):hover {
  transform: translateY(-4px);
  background: rgba(240, 56, 40, 0.16);
}

.about-stand__bento > article:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
}

.about-stand__bento > article:last-child i {
  grid-row: 1 / 3;
  margin: 0;
}

.about-stand__bento > article:last-child h3 {
  margin-bottom: 4px;
}

.about-stand i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(240, 56, 40, 0.16);
  color: #ffb4ad;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.about-stand h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}

.about-stand p {
  margin: 0;
  font-size: 15px;
}

.about-offer {
  background: var(--white);
  padding: 90px 0 80px;
}

.about-offer__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.about-offer__rail::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0 10px,
    transparent 10px 18px
  );
}

.about-offer__rail li {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.about-offer__rail span {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.about-offer__rail i {
  display: block;
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 10px;
}

.about-offer__rail h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.about-offer__rail p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.about-pledge {
  background: var(--cream);
  padding: 40px 0 100px;
}

.about-pledge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-pledge__grid > article {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.about-pledge__grid h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 8px 0 16px;
}

.about-pledge__grid p {
  color: var(--muted);
  margin: 0;
}

.about-pledge__quote {
  background: linear-gradient(160deg, #152038 0%, #0b1220 100%);
  color: #d7dde8;
  position: relative;
  overflow: hidden;
}

.about-pledge__quote h2 {
  color: var(--black);
}

.about-pledge__quote p {
  /* color: #d7dde8; */
}

.about-pledge__quote > i {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 120px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.28;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .about-offer__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-offer__rail::before {
    display: none;
  }

  .about-offer__rail li:nth-child(4),
  .about-offer__rail li:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 991px) {
  .about-story__grid,
  .about-mv,
  .about-stand__bento,
  .about-pledge__grid {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    padding: 0 0 28px;
  }

  .about-story__frame,
  .about-story__frame img {
    min-height: 360px;
    height: 360px;
  }

  .about-story__car {
    width: 58%;
    right: -4%;
  }

  .about-story__badge {
    left: 12px;
    bottom: 32px;
    width: 110px;
    height: 110px;
  }

  .about-story__badge strong {
    font-size: 30px;
  }

  .about-mv__panel--mission,
  .about-mv__panel--vision {
    padding: 64px 20px;
  }

  .about-mv__inner {
    max-width: none;
  }

  .about-stand__lead,
  .about-stand__bento > article:last-child {
    grid-column: auto;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values__media {
    padding: 0;
  }

  .about-values__frame,
  .about-values__frame img {
    min-height: 420px;
    height: 420px;
  }

  .about-values__caption {
    left: 12px;
    bottom: 24px;
  }

  .about-values__list article {
    grid-template-columns: 72px 48px minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .about-story,
  .about-values,
  .about-stand,
  .about-offer {
    padding: 64px 0;
  }

  .about-story__car {
    display: none;
  }

  .about-story__origin {
    left: 12px;
  }

  .about-story__facts {
    /* grid-template-columns: 1fr; */
    gap: 12px;
  }

  .about-values__frame,
  .about-values__frame img {
    min-height: 320px;
    height: 320px;
  }

  .about-values__caption {
    transform: none;
    left: 12px;
    bottom: 16px;
  }

  .about-values__list article {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .about-values__list article i {
    display: none;
  }

  .about-offer__rail {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-offer__rail li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    text-align: left;
    padding: 0 0 8px;
  }

  .about-offer__rail span {
    grid-row: 1 / 4;
    margin: 0;
  }

  .about-offer__rail i {
    grid-column: 2;
    margin: 0 0 6px;
  }

  .about-pledge {
    padding: 20px 0 72px;
  }

  .about-pledge__grid > article {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-ticker__track {
    animation: none;
  }
}

.cd-ident {
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 56, 40, 0.2), transparent 32%),
    linear-gradient(180deg, #0b1324 0%, #101a2e 100%);
  color: var(--white);
  padding: 28px 0 72px;
  overflow: hidden;
}

.cd-ident .breadcrumb {
  margin-top: 0;
  margin-bottom: 22px;
}

.cd-ident__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: end;
}

.cd-ident h1 {
  font-size: clamp(30px, 4vw, 50px);
  text-transform: none;
  margin: 6px 0 12px;
}

.cd-ident p {
  max-width: 560px;
  color: #d7dde8;
}

.cd-ident__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cd-ident__chips li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cd-ident__price {
  background: var(--primary);
  color: var(--white);
  border-radius: 24px;
  padding: 22px 24px;
  text-align: right;
  box-shadow: 0 18px 40px rgba(240, 56, 40, 0.28);
}

.cd-ident__price span,
.cd-ident__price small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.84;
}

.cd-ident__price strong {
  display: block;
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 8px 0 10px;
}

.cd-stage {
  background: var(--cream);
  padding: 0 0 48px;
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.cd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 24px;
  align-items: start;
  padding:80px 0 0 0;
}

.cd-studio {
  min-width: 0;
}

.cd-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.cd-main-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #121821;
  box-shadow: var(--shadow);
}

.cd-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
}

.cd-main .swiper-wrapper,
.cd-main .swiper-slide {
  height: 100% !important;
}

.cd-main:not(.swiper-initialized) .swiper-slide + .swiper-slide {
  display: none;
}

.cd-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.cd-thumbs {
  width: 100%;
  height: 88px;
}

.cd-thumbs .swiper-slide {
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.cd-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cd-thumbs .swiper-slide:hover,
.cd-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.cd-thumbs .swiper-slide-thumb-active {
  border-color: var(--primary);
}

.cd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: 0.2s ease;
}

.cd-nav:hover {
  background: var(--primary);
  color: var(--white);
}

.cd-nav--prev {
  left: 16px;
}

.cd-nav--next {
  right: 16px;
}

.cd-main__meta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cd-main__caption,
.cd-main__count {
  background: rgba(11, 19, 36, 0.78);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cd-main__count strong {
  color: #ffb4ad;
}

.cd-main__actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.cd-icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
}

.cd-icon-btn:hover,
.cd-icon-btn.is-active {
  background: var(--primary);
  color: var(--white);
}

.cd-stamp {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

.cd-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.cd-facts li {
  background: var(--white);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(11, 11, 11, 0.04);
}

.cd-facts i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cd-facts strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.cd-facts span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cd-quote {
  background: var(--white);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 108px;
  align-self: start;
  z-index: 1;
}

.cd-quote__head h2 {
  font-size: 28px;
  margin: 0 0 8px;
}

.cd-quote__head p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cd-quote__price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.cd-quote__price > div {
  background: var(--cream);
  border-radius: 16px;
  padding: 12px 14px;
}

.cd-quote__price dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cd-quote__price dd {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 2px;
}

.cd-quote__form .search-card__field {
  margin-bottom: 8px;
}

.cd-quote__form .search-card__field textarea {
  min-height: 88px;
}

.cd-quote__form .btn {
  width: 100%;
  margin-top: 4px;
}

.cd-quote__total {
  background: #10151f;
  color: var(--white);
  border-radius: 18px;
  padding: 14px 16px;
  margin: 8px 0 12px;
}

.cd-quote__total span,
.cd-quote__total small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7c0ce;
}

.cd-quote__total strong {
  display: block;
  font-size: 28px;
  margin: 4px 0 6px;
}

.cd-quote__help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.cd-quote__help a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
}

.cd-quote__help a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cd-opts {
  background: var(--white);
  padding: 72px 0 80px;
}

.cd-opt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cd-opt-grid article {
  border-radius: 20px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid transparent;
}

.cd-opt-grid article.is-yes {
  background: #f4fbf6;
  border-color: #ccebd4;
}

.cd-opt-grid article.is-no {
  background: #fbf4f3;
  border-color: #f0d4d0;
}

.cd-opt-grid i {
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
}

.cd-opt-grid .is-yes i {
  color: #1f8a46;
}

.cd-opt-grid .is-no i {
  color: var(--primary);
}

.cd-opt-grid h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cd-opt-grid span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cd-ask {
  background: var(--cream);
  padding: 80px 0;
}

.cd-ask__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.cd-ask h2 {
  margin: 8px 0 14px;
}

.cd-ask p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 460px;
}

.cd-related {
  padding-top: 72px;
}

.cd-related-slider .swiper-slide {
  height: auto;
}

.cd-related-slider .car-card {
  height: 100%;
}

.cd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 12, 20, 0.94);
  display: grid;
  place-items: center;
  padding: 56px 16px 24px;
}

.cd-lightbox[hidden] {
  display: none;
}

.cd-lightbox-slider {
  width: min(1100px, 100%);
  height: min(78vh, 720px);
  position: relative;
}

.cd-lightbox-slider img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: contain;
}

.cd-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

.cd-lightbox .cd-nav {
  background: var(--white);
}

body.cd-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1199px) {
  .cd-opt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cd-facts {
    grid-template-columns: 1fr 1fr;
  }

  .cd-main {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 991px) {
  .cd-ident__row,
  .cd-layout,
  .cd-ask__grid {
    grid-template-columns: 1fr;
  }

  .cd-ident {
    padding-bottom: 56px;
  }

  .cd-ident__price {
    text-align: left;
    max-width: 280px;
  }

  .cd-gallery,
  .cd-thumbs {
    height: auto;
  }

  .cd-main {
    aspect-ratio: 16 / 11;
  }

  .cd-quote {
    position: static;
  }
}

@media (max-width: 767px) {
  .cd-ident h1 {
    font-size: 28px;
  }

  .cd-main {
    aspect-ratio: 4 / 3;
  }

  .cd-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .cd-nav--prev {
    left: 8px;
  }

  .cd-nav--next {
    right: 8px;
  }

  .cd-stamp {
    display: none;
  }

  .cd-main__actions {
    top: 10px;
    right: 10px;
  }

  .cd-icon-btn {
    width: 36px;
    height: 36px;
  }

  .cd-opt-grid,
  .cd-quote__help {
    grid-template-columns: 1fr 1fr;
  }

  .cd-quote,
  .cd-opt-grid article {
    padding: 16px;
  }

  .cd-related .section-head {
    margin-bottom: 28px;
  }
}

.bank-page {
  background: var(--cream);
  padding: 48px 0 80px;
}

.bank-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.bank-pass {
  background: linear-gradient(160deg, #152038 0%, #0b1220 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 32px 28px;
  min-height: 340px;
  position: sticky;
  top: 108px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bank-pass::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 18px solid rgba(240, 56, 40, 0.18);
  pointer-events: none;
}

.bank-pass__chip {
  display: block;
  width: 48px;
  height: 36px;
  border-radius: 8px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #f5d76e 0%, #d4a017 50%, #f5d76e 100%);
}

.bank-pass__bank {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb4ad;
  margin: 0 0 8px;
}

.bank-pass h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 28px;
  color: var(--white);
}

.bank-pass dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.bank-pass dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7c0ce;
}

.bank-pass dd {
  font-size: 18px;
  font-weight: 800;
  margin-top: 4px;
}

.bank-pass__foot {
  margin: 0;
  color: #b7c0ce;
  font-size: 13px;
  font-weight: 600;
}

.bank-sheet {
  background: var(--white);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.bank-sheet h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 12px;
}

.bank-sheet > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.bank-rows {
  display: grid;
  gap: 10px;
}

.bank-rows li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  background: var(--cream);
  border-radius: 16px;
  padding: 14px 14px 14px 16px;
}

.bank-rows span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.bank-rows strong {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  word-break: break-word;
}

.bank-copy {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
}

.bank-copy:hover,
.bank-copy.is-copied {
  background: var(--primary);
  color: var(--white);
}

.bank-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.bank-note i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

.bank-sheet__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

@media (max-width: 991px) {
  .bank-layout {
    grid-template-columns: 1fr;
  }

  .bank-pass {
    position: static;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .bank-sheet,
  .bank-pass {
    padding: 22px 18px;
  }

  .bank-pass dl {
    grid-template-columns: 1fr;
  }
}

.status-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.status-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 36px;
}

.status-card__icon--ok {
  background: var(--primary);
  color: var(--white);
}

.status-card__code {
  font-size: clamp(88px, 16vw, 140px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--primary);
  margin: 0 0 8px;
}

.status-card h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 12px;
}

.status-card > p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
}

.status-card > p a {
  color: var(--primary);
  font-weight: 700;
}

.status-card > p a:hover {
  text-decoration: underline;
}

.status-steps {
  display: grid;
  gap: 14px;
  text-align: left;
  margin: 32px 0 0;
}

.status-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: var(--cream);
  border-radius: 16px;
  padding: 16px 18px;
}

.status-steps span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.status-steps strong {
  display: block;
  margin-bottom: 4px;
}

.status-steps p {
  color: var(--muted);
  font-size: 14px;
}

.status-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0 0;
  text-align: left;
}

.status-links a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  background: var(--cream);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.status-links a:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.status-links i {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 20px;
  align-self: center;
}

.status-links strong {
  font-size: 15px;
}

.status-links span {
  color: var(--muted);
  font-size: 13px;
}

.status-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.status-card__actions .btn--dark {
  color: var(--white);
}

@media (max-width: 767px) {
  .status-card {
    padding: 32px 20px;
  }

  .status-links {
    grid-template-columns: 1fr;
  }
}
