:root {
  --ink: #0d1117;
  --ink-2: #151c27;
  --paper: #f3f1ea;
  --paper-2: #e9e6dc;
  --white: #ffffff;
  --yellow: #f0cf19;
  --yellow-2: #ffe34d;
  --blue: #174679;
  --muted: #657081;
  --line: rgba(13, 17, 23, 0.14);
  --radius: 22px;
  --shadow: 0 22px 60px rgba(13, 17, 23, 0.13);
  --shell: min(1220px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  background: rgba(13, 17, 23, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

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

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

.brand-logo-frame {
  position: relative;
  display: block;
  width: 226px;
  height: 44px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.brand-logo-frame img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 252px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.location-mark {
  display: grid;
  gap: 1px;
  margin-right: auto;
  padding-left: 18px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  line-height: 1.1;
}

.location-mark small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-mark strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  border-radius: 2px;
  transition: 0.2s ease;
}

.hero {
  min-height: 820px;
  display: grid;
  align-items: stretch;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 17%, rgba(23, 70, 121, 0.45), transparent 36%),
    linear-gradient(135deg, #0b0f15 0%, #111824 72%, #0b0f15 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  padding-top: 120px;
  padding-bottom: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.process-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(58px, 7vw, 102px);
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-2);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div {
  display: grid;
  gap: 3px;
}

.hero-proof strong {
  color: var(--white);
  font-size: 18px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: min(670px, 72vh);
  min-height: 570px;
  overflow: hidden;
  background: #27313d;
  border-radius: 180px 24px 180px 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(1.5deg);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 168px 18px 168px 18px;
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  transform: rotate(-1.5deg) scale(1.04);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-car-label {
  position: absolute;
  z-index: 3;
  left: 52px;
  right: 52px;
  bottom: 50px;
  display: grid;
  gap: 4px;
  transform: rotate(-1.5deg);
}

.hero-car-label span {
  width: fit-content;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-car-label strong {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
}

.hero-car-label small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.hero-accent {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -34px;
  padding: 10px 19px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.trust-bar {
  color: var(--ink);
  background: var(--yellow);
  overflow: hidden;
}

.trust-list {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 58px);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-list i {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.operation-context {
  color: var(--white);
  background: var(--blue);
}

.operation-context-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding-block: 22px;
}

.operation-context p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.operation-context p:first-child {
  color: var(--white);
  font-size: 16px;
}

.operation-context strong {
  color: var(--yellow);
}

.platform-home {
  background: var(--paper);
}

.platform-hero {
  min-height: 790px;
}

.platform-hero .hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
}

.platform-hero h1 {
  max-width: 780px;
  font-size: clamp(62px, 7vw, 104px);
}

.platform-proof strong {
  font-size: clamp(17px, 1.8vw, 24px);
}

.platform-feature {
  position: relative;
  width: min(100%, 620px);
  height: 620px;
  display: block;
  margin-left: auto;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  border-radius: 160px 26px 160px 26px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.platform-feature::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 148px 19px 148px 19px;
  pointer-events: none;
}

.platform-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.platform-feature:hover img,
.platform-feature:focus-visible img {
  transform: scale(1.025);
}

.platform-feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 33%, rgba(5, 8, 12, 0.9) 100%);
}

.platform-feature-copy {
  position: absolute;
  z-index: 3;
  left: 48px;
  right: 48px;
  bottom: 48px;
  display: grid;
  gap: 5px;
}

.platform-feature-copy small {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.platform-feature-copy strong {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.platform-feature-copy em {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.platform-feature-copy b {
  color: var(--yellow);
  font-size: 24px;
}

.platform-model {
  background: var(--paper);
}

.platform-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.platform-step-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(13, 17, 23, 0.06);
}

.platform-step-grid article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 1000;
}

.platform-step-grid h3 {
  margin: auto 0 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.platform-step-grid p {
  margin: 0;
  color: var(--muted);
}

.current-operation {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(23, 70, 121, 0.5), transparent 35%),
    var(--ink);
}

.current-operation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.current-operation h2 {
  margin: 0 0 20px;
  font-size: clamp(60px, 8vw, 104px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.current-operation p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.operation-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.25s ease;
}

.operation-card:hover,
.operation-card:focus-visible {
  background: var(--yellow-2);
  outline: none;
  transform: translateY(-6px);
}

.operation-card-index,
.operation-card-state {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.operation-card-state {
  width: fit-content;
  margin-top: 24px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.operation-card strong {
  margin-block: auto;
  font-size: clamp(43px, 5vw, 66px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.operation-card em {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 17, 23, 0.22);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.operation-card em b {
  font-size: 22px;
}

.platform-footer {
  padding-top: 64px;
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.section-heading h2,
.process-copy h2,
.faq-heading h2,
.contact-copy h2 {
  font-size: clamp(43px, 6vw, 74px);
}

.section-heading > p,
.faq-heading > p,
.process-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 230px 230px auto;
  gap: 10px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(13, 17, 23, 0.06);
}

.filters input,
.filters select {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
}

.filters input {
  padding: 0 14px 0 45px;
}

.filters select {
  padding: 0 38px 0 14px;
  cursor: pointer;
}

.filters input:focus,
.filters select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 70, 121, 0.12);
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  width: 19px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.filter-reset {
  min-height: 48px;
  padding-inline: 17px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-reset:hover,
.filter-reset:focus-visible {
  color: var(--ink);
  background: var(--paper-2);
}

.stock-toolbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.stock-toolbar p,
.stock-toolbar span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.stock-toolbar p {
  color: var(--ink);
  font-weight: 800;
}

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

.vehicle-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(13, 17, 23, 0.055);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-2);
}

.vehicle-media-button {
  width: 100%;
  display: block;
  padding: 0;
  color: inherit;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.vehicle-media-button:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vehicle-card:hover .vehicle-media img {
  transform: scale(1.045);
}

.vehicle-card.is-sold .vehicle-media img {
  filter: saturate(0.82) brightness(0.72);
}

.vehicle-card.is-pending .vehicle-status {
  color: #fff;
  background: #9b6516;
  box-shadow: 0 8px 22px rgba(84, 50, 0, 0.24);
}

.sold-ribbon {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 0;
  left: 0;
  padding: 12px 18px;
  color: #fff;
  background: rgba(190, 20, 34, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 28px rgba(90, 0, 8, 0.3);
  transform: translateY(-50%);
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: 0.2em;
}

.sold-ribbon-dialog {
  padding-block: 15px;
  font-size: clamp(22px, 3vw, 34px);
}

.vehicle-photo-count,
.vehicle-status {
  position: absolute;
  z-index: 2;
  top: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-status {
  left: 15px;
  color: var(--ink);
  background: var(--yellow);
}

.vehicle-photo-count {
  right: 15px;
  color: var(--white);
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: blur(10px);
}

.vehicle-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(240, 207, 25, 0.96) 0 4px, transparent 4px 100%),
    radial-gradient(circle at 80% 15%, rgba(240, 207, 25, 0.27), transparent 31%),
    linear-gradient(145deg, #111927, #0b0f15);
}

.vehicle-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.placeholder-word {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.placeholder-word strong {
  color: var(--yellow);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.placeholder-word span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vehicle-body {
  padding: 23px;
}

.vehicle-brand {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.vehicle-summary {
  min-height: 45px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.vehicle-specs span {
  min-width: 0;
  padding: 9px 8px;
  overflow: hidden;
  color: #394455;
  background: var(--paper);
  border-radius: 10px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 750;
}

.vehicle-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.vehicle-price {
  display: grid;
}

.vehicle-price small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.vehicle-price strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.card-action {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 23px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.card-action:hover,
.card-action:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-12deg);
}

.empty-state {
  padding: 60px 24px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.empty-state p {
  margin: 0 0 24px;
  color: var(--muted);
}

.finance-section {
  background: var(--paper-2);
}

.finance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.finance-calculator,
.finance-result {
  padding: clamp(28px, 5vw, 58px);
}

.finance-calculator {
  display: grid;
  align-content: start;
  gap: 20px;
}

.finance-card-heading {
  display: grid;
  gap: 5px;
  margin-bottom: 6px;
}

.finance-card-heading span,
.finance-result-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.finance-card-heading strong {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.finance-calculator label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.finance-calculator input,
.finance-calculator select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 13px;
  outline: none;
}

.finance-calculator input:focus,
.finance-calculator select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 70, 121, 0.12);
}

.finance-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.finance-money-field {
  position: relative;
  display: block;
}

.finance-money-field input {
  padding-right: 44px;
}

.finance-money-field b {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--muted);
  transform: translateY(-50%);
}

.finance-help {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.finance-result {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(23, 70, 121, 0.7), transparent 34%),
    var(--ink);
}

.finance-result-kicker {
  color: var(--yellow);
}

.finance-payment {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 12px 0 14px;
}

.finance-payment strong {
  color: var(--yellow);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.finance-payment span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 800;
}

.finance-range {
  margin: 0 0 26px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 12px;
}

.finance-range strong {
  color: var(--white);
}

.finance-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.finance-summary div {
  display: grid;
  gap: 4px;
  padding: 15px;
  background: #121923;
}

.finance-summary dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-summary dd {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.finance-disclaimer {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.55;
}

#finance-whatsapp:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.service-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.56);
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #151c26;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  background: #1c2634;
  transform: translateY(-4px);
}

.service-number {
  color: var(--yellow);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.service-card h3 {
  margin: auto 0 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.service-card a {
  width: fit-content;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.service-card a span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.service-card a:hover span {
  transform: translateX(5px);
}

.service-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.process-section {
  background: var(--paper-2);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
}

.process-copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

.process-copy > p {
  margin: 24px 0 30px;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-top: 1px solid var(--line);
}

.process-list li > span {
  color: var(--blue);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 37px;
}

.process-list strong {
  font-size: 22px;
  letter-spacing: -0.025em;
}

.process-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.manifesto-section {
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.manifesto-visual {
  position: relative;
}

.manifesto-visual img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  border-radius: 26px 90px 26px 90px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.manifesto-visual span {
  position: absolute;
  right: -38px;
  bottom: 36px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.manifesto-copy blockquote {
  margin: 0 0 28px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.manifesto-copy > p:last-child {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-heading > p {
  margin-top: 22px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-size: 28px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -8px 0 25px;
  color: var(--muted);
}

.faq-list details a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(23, 70, 121, 0.55), transparent 30%),
    var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.contact-points {
  display: grid;
  gap: 13px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.contact-points b {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.contact-card form {
  display: grid;
  gap: 15px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.contact-card input,
.contact-card select,
.contact-card textarea,
.message-result textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  outline: none;
}

.contact-card input,
.contact-card select {
  min-height: 50px;
  padding: 0 13px;
}

.contact-card textarea,
.message-result textarea {
  padding: 13px;
  resize: vertical;
}

.contact-card select option {
  color: var(--ink);
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240, 207, 25, 0.12);
}

.contact-card ::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-note {
  margin: -3px 0 0;
  color: rgba(255, 255, 255, 0.36);
  text-align: center;
  font-size: 10px;
}

.message-result {
  display: grid;
  gap: 14px;
}

.message-result[hidden] {
  display: none;
}

.result-kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message-result textarea {
  min-height: 188px;
  color: rgba(255, 255, 255, 0.82);
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.text-button {
  width: fit-content;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.52);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 74px 0 24px;
  color: var(--white);
  background: #080b10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: clamp(40px, 7vw, 100px);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid > div:first-child > p,
.footer-grid > div:last-child p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid > div:not(:first-child) > strong {
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.floating-contact {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 15px 11px 10px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(13, 17, 23, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(13, 17, 23, 0.22);
  font-size: 12px;
  font-weight: 900;
}

.floating-contact span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 18px;
}

.vehicle-dialog {
  width: min(1120px, calc(100% - 32px));
  max-height: min(840px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 25px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.vehicle-dialog::backdrop {
  background: rgba(5, 8, 12, 0.78);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(13, 17, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.dialog-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  height: min(840px, calc(100vh - 32px));
  min-height: 0;
}

.dialog-gallery {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--ink);
}

.dialog-main-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.dialog-main-image img,
.dialog-main-image .vehicle-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  overflow-x: auto;
  background: var(--ink);
  scrollbar-color: var(--yellow) #202936;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.dialog-thumbs button {
  flex: 0 0 124px;
  aspect-ratio: 1.45 / 1;
  padding: 0;
  overflow: hidden;
  background: #202936;
  border: 2px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  scroll-snap-align: center;
}

.dialog-thumbs button.active {
  border-color: var(--yellow);
}

.dialog-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  color: var(--white);
  background: rgba(13, 17, 23, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  font-size: 37px;
  line-height: 1;
  backdrop-filter: blur(9px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-counter {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(13, 17, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(9px);
}

.dialog-content {
  padding: 52px 42px 38px;
  overflow-y: auto;
}

.dialog-kicker {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-content h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.dialog-summary {
  margin: 16px 0 20px;
  color: var(--muted);
}

.dialog-price {
  display: block;
  margin-bottom: 25px;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.dialog-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.dialog-specs div {
  display: grid;
  gap: 2px;
  padding: 12px 13px;
  background: var(--white);
}

.dialog-specs dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-specs dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.dialog-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 25px;
}

.dialog-highlights span {
  padding: 7px 10px;
  color: #354054;
  background: var(--paper);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.dialog-note {
  margin: 11px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dialog-actions .button-outline {
  color: var(--ink);
  border-color: var(--line);
}

.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 26px;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.23);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.noscript {
  position: fixed;
  z-index: 500;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay {
  transition-delay: 0.1s;
}

.js .reveal-delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 76px);
  }

  .hero-image-wrap {
    height: 610px;
    border-radius: 130px 22px 130px 22px;
  }

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

  .filter-reset {
    grid-column: 1 / -1;
    min-height: 36px;
  }

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

  .platform-hero .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .platform-feature {
    height: 560px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px 16px 22px;
    background: rgba(13, 17, 23, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    padding: 13px 16px;
    text-align: center;
    border: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 130px;
    padding-bottom: 64px;
  }

  .platform-hero .hero-grid,
  .current-operation-grid {
    grid-template-columns: 1fr;
  }

  .platform-feature {
    width: 100%;
    max-width: 680px;
    height: min(700px, 100vw);
    margin: 0;
  }

  .platform-step-grid {
    grid-template-columns: 1fr;
  }

  .platform-step-grid article {
    min-height: 220px;
  }

  .operation-context-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .location-mark {
    display: none;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-image-wrap {
    height: min(680px, 98vw);
    min-height: 510px;
  }

  .hero-accent {
    right: -22px;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading,
  .process-grid,
  .manifesto-grid,
  .faq-grid,
  .contact-grid,
  .finance-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading {
    align-items: start;
  }

  .finance-layout {
    gap: 0;
  }

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

  .service-card {
    min-height: 270px;
  }

  .process-copy {
    position: static;
  }

  .manifesto-visual {
    max-width: 650px;
  }

  .manifesto-copy {
    max-width: 680px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .vehicle-dialog {
    overflow-y: auto;
  }

  .dialog-main-image {
    min-height: min(62vw, 480px);
  }

  .dialog-gallery {
    overflow: visible;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 18px;
  }

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

  .platform-home .header-inner {
    gap: 10px;
  }

  .brand-logo-frame {
    width: 184px;
    height: 38px;
  }

  .brand-logo-frame img {
    width: 208px;
  }

  .home-stock-link {
    padding: 9px 12px;
    font-size: 11px;
  }

  .site-nav {
    inset-block-start: 70px;
  }

  .hero-grid {
    padding-top: 112px;
  }

  .platform-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .platform-feature {
    height: 125vw;
    min-height: 450px;
    border-radius: 90px 18px 90px 18px;
  }

  .platform-feature::before {
    border-radius: 80px 12px 80px 12px;
  }

  .platform-feature-copy {
    left: 31px;
    right: 31px;
    bottom: 34px;
  }

  .platform-step-grid article {
    min-height: 200px;
    padding: 24px;
  }

  .current-operation-grid {
    gap: 42px;
  }

  .current-operation h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .operation-card {
    min-height: 360px;
    padding: 25px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:last-child {
    grid-column: 1 / -1;
  }

  .hero-image-wrap {
    height: 125vw;
    min-height: 470px;
    border-radius: 90px 18px 90px 18px;
  }

  .hero-image-wrap::before {
    border-radius: 80px 12px 80px 12px;
  }

  .hero-car-label {
    left: 33px;
    right: 33px;
    bottom: 37px;
  }

  .hero-accent {
    display: none;
  }

  .trust-list {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-list::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading h2,
  .process-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

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

  .filter-reset {
    grid-column: auto;
  }

  .stock-toolbar span {
    display: none;
  }

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

  .vehicle-summary {
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 55px 1fr;
    gap: 14px;
  }

  .process-list li > span {
    font-size: 30px;
  }

  .manifesto-visual span {
    display: none;
  }

  .field-row,
  .result-actions,
  .finance-field-row,
  .dialog-actions {
    grid-template-columns: 1fr;
  }

  .finance-payment {
    align-items: flex-end;
    flex-wrap: wrap;
  }

  .finance-payment strong {
    font-size: clamp(52px, 17vw, 72px);
  }

  .finance-summary {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 20px;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    display: flex;
  }

  .vehicle-dialog {
    width: 100%;
    max-height: 94vh;
    margin: auto 0 0;
    border-radius: 22px 22px 0 0;
  }

  .dialog-main-image {
    min-height: 88vw;
  }

  .dialog-thumbs button {
    flex-basis: 92px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-counter {
    right: 10px;
    bottom: 10px;
  }

  .dialog-content {
    padding: 34px 22px 30px;
  }

  .dialog-specs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
