@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  --ink: #171917;
  --muted: #737871;
  --paper: #f7f8f5;
  --lime: #d6f85a;
  --line: #dce1d7;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: Manrope, Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
button {
  appearance: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  background: none;
  padding: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button:disabled {
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #7f9b1d;
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
.icon {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.page-width {
  width: min(1360px, calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 112px;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.dark-eyebrow {
  color: #697160;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  font-weight: 750;
}
.muted {
  color: #858b7d;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.section-description {
  font-size: 16px;
  line-height: 1.8;
  color: #697160;
  max-width: 370px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.button {
  min-height: 56px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.button > .icon {
  width: 20px;
  height: 20px;
}
.button-lime {
  background: var(--lime);
  color: #1d2513;
}
.button-lime:hover {
  background: #e1ff7e;
}
.button:active {
  transform: translateY(1px);
}
.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 13px;
  gap: 20px;
}
.button-outline {
  border-color: #cbd3c2;
}
.button-outline:hover {
  border-color: #84966c;
  background: #e9f0df;
}
.icon-button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.icon-button > .icon {
  width: 20px;
  height: 20px;
}
.icon-button:hover {
  background: #e6eddd;
  border-color: #b8c4a8;
}
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #a6b096;
  font-size: 14px;
  font-weight: 750;
}
.text-link > .icon {
  width: 19px;
  height: 19px;
}
.text-link:hover {
  border-color: var(--ink);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--lime);
  padding: 14px;
}
.skip-link:focus {
  top: 12px;
}
.mobile-only {
  display: none;
}
/* Supplied original logo, cropped in layout without redrawing. */
.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 90px;
  aspect-ratio: 831/516;
  flex-shrink: 0;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-caption {
  font-size: 10px;
  letter-spacing: 0.065em;
  line-height: 1.6;
  color: #b4bbb0;
  border-left: 1px solid #ffffff30;
  padding-left: 20px;
}
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid #ffffff24;
  color: #fff;
  background: #11151036;
}
.header.scrolled {
  position: fixed;
  height: 80px;
  background: #10130ff5;
  backdrop-filter: blur(18px);
  animation: header-in 0.3s var(--ease);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e1e7dc;
}
.desktop-nav a:hover {
  color: var(--lime);
}
.desktop-nav sup {
  color: var(--lime);
  font-size: 10px;
  align-self: flex-start;
  margin-top: 8px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 810px;
  height: min(96svh, 990px);
  color: #fff;
  background: #20271e;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: auto 0 0;
  height: min(100%, 54vw);
  z-index: -2;
  overflow: hidden;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 16%,
    #000 82%,
    transparent
  );
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
  animation: hero-in 1.7s var(--ease) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #20271e, transparent 24%),
    linear-gradient(90deg, #10180fd1, #10180f66 47%, #10180f08 85%),
    linear-gradient(180deg, #10170f66, transparent 50%, #10170fec);
}
.hero-content {
  padding-top: 158px;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #dbe3d3;
  font-size: 11px;
}
.short-line {
  width: 26px;
  height: 1px;
  background: var(--lime);
}
.eyebrow-divider {
  color: #718066;
}
.hero h1 {
  font-size: clamp(54px, 6.1vw, 94px);
  line-height: 1.05;
  letter-spacing: -0.057em;
  font-weight: 800;
  margin-top: 27px;
  animation: rise 1s 0.05s var(--ease) both;
}
.hero h1 > span {
  color: var(--lime);
}
.hero-intro {
  margin-top: 28px;
  animation: rise 1s 0.12s var(--ease) both;
}
.hero-intro p {
  color: #e0e7da;
  font-size: 16px;
  line-height: 1.85;
  max-width: 570px;
}
.hero-intro-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 29px;
}
.hero-intro-actions .button {
  min-width: 255px;
}
.hero-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e0e8d7;
  border-bottom: 1px solid #9aae7f70;
}
.hero-secondary .icon {
  width: 18px;
  height: 18px;
}
.hero-secondary:hover {
  color: var(--lime);
}
.hero-bottom {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d6dfce;
  font-size: 13px;
  line-height: 1.7;
}
.hero-proof > .icon {
  width: 29px;
  height: 29px;
  color: var(--lime);
  stroke-width: 1.3;
}
.hero-model {
  display: grid;
  gap: 6px;
  min-width: 260px;
  text-align: left;
  padding-top: 17px;
  border-top: 1px solid #ffffff70;
}
.hero-model-label {
  font-size: 11px;
  letter-spacing: 0.09em;
  color: #d6dece;
}
.hero-model-price {
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.05em;
}
.hero-model-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #d8e2cc;
}
.hero-model-link > .icon {
  width: 20px;
  color: var(--lime);
}
.hero-model:hover .hero-model-link {
  color: var(--lime);
}
.hero-side {
  position: absolute;
  right: 22px;
  top: 45%;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #d3ddcb;
}
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #eef1e9;
}
.trust-strip > .page-width {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 29px;
}
.trust-strip > .page-width > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid #d5dcd0;
}
.trust-strip > .page-width > div:first-child {
  justify-content: flex-start;
}
.trust-strip > .page-width > div:last-child {
  justify-content: flex-end;
  border: 0;
}
.trust-strip .icon {
  width: 26px;
  height: 26px;
  color: #718361;
  stroke-width: 1.4;
}
.trust-strip span {
  font-size: 12px;
  color: #74806a;
  line-height: 1.7;
}
.trust-strip strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: #333d2c;
}
/* Catalog */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 42px 0 26px;
}
.filters {
  display: flex;
  gap: 6px;
}
.filter {
  min-height: 44px;
  padding: 10px 21px;
  border: 1px solid #d3dbca;
  border-radius: 24px;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}
.filter.active {
  background: #1e2618;
  border-color: #1e2618;
  color: #fff;
}
.filter:not(.active):hover {
  background: #e5ecdc;
}
.filter span {
  font-size: 12px;
  margin-left: 10px;
  opacity: 0.7;
}
.catalog-note {
  font-size: 12px;
  color: #7c8b70;
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog-note > .icon {
  width: 20px;
  height: 20px;
}
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.car-card {
  min-width: 0;
  border: 1px solid #dde4d5;
  background: #eef2e8;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
  animation: rise 0.5s var(--card-delay, 0ms) var(--ease) both;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px #26371b0c;
}
.card-top {
  padding: 21px 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: #637354;
}
.card-index {
  font-variant-numeric: tabular-nums;
  color: #8b9980;
}
.car-visual {
  display: block;
  position: relative;
  width: 100%;
  height: 225px;
  isolation: isolate;
  overflow: hidden;
}
.car-watermark {
  position: absolute;
  inset: 36px 0 auto;
  text-align: center;
  font-size: clamp(45px, 5.1vw, 77px);
  letter-spacing: -0.06em;
  line-height: 1;
  font-weight: 800;
  color: #dce5d2;
  z-index: -1;
}
.car-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.car-card:hover .car-visual > img {
  transform: scale(1.045);
}
.view-chip {
  position: absolute;
  bottom: 12px;
  left: 22px;
  border: 1px solid #c9d5bc;
  border-radius: 24px;
  min-height: 29px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #596d46;
  background: #f5f8efce;
  line-height: 1.5;
}
.view-chip .icon {
  width: 16px;
  height: 16px;
}
.card-info {
  padding: 8px 22px 22px;
}
.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.car-brand {
  font-size: 12px;
  color: #647a50;
}
.card-heading h3 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.045em;
  margin-top: 4px;
  font-weight: 750;
}
.card-heading small {
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #6f8160;
  font-weight: 500;
  white-space: nowrap;
}
.body-type {
  font-size: 12px;
  color: #6f8160;
  border: 1px solid #d1dcc7;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.car-mood {
  font-size: 14px;
  color: #758968;
  margin-top: 7px;
}
.card-bottom {
  border-top: 1px solid #d5dfca;
  padding-top: 18px;
  margin-top: 20px;
}
.price-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.045em;
  color: #708163;
  font-weight: 650;
  line-height: 1.6;
}
.card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.card-bottom strong {
  font-size: 25px;
  letter-spacing: -0.04em;
  font-weight: 750;
  white-space: nowrap;
}
.card-bottom .button {
  width: 100%;
  margin-top: 17px;
  min-height: 46px;
  font-size: 13px;
  padding: 11px 15px;
}
.selection-card {
  background: #202c1b;
  color: #fff;
  position: relative;
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 480px;
}
.selection-card .eyebrow {
  color: #a8bc98;
  font-size: 11px;
}
.selection-card h3 {
  font-size: 47px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-top: 44px;
}
.selection-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #c1cfb5;
  margin: 20px 0 35px;
}
.selection-card > .button {
  margin-top: auto;
  align-self: flex-start;
  gap: 22px;
}
.selection-art {
  position: absolute;
  right: -30px;
  top: 100px;
  z-index: -1;
  color: #37492d;
}
.selection-art > .icon {
  width: 265px;
  height: 265px;
  stroke-width: 0.8;
}
.price-note {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #7c8871;
  font-size: 12px;
  line-height: 1.8;
  max-width: 900px;
}
.price-note .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
}
/* Viewer: a single consistent size for every control at every breakpoint. */
.showroom {
  padding: 77px 0 30px;
  background: #141c11;
  color: #f6faef;
  overflow: hidden;
}
.showroom-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.showroom-heading .eyebrow {
  color: #a2b592;
  margin-bottom: 23px;
  font-size: 11px;
}
.showroom-heading h2 {
  font-size: 56px;
}
.showroom-heading h2 > span {
  color: var(--lime);
}
.showroom-heading > p {
  font-size: 14px;
  line-height: 1.8;
  color: #aebb9f;
  max-width: 360px;
  padding-bottom: 6px;
}
.showroom-view {
  margin-top: -12px;
}
.spin-viewer {
  position: relative;
  isolation: isolate;
}
.spin-stage {
  position: relative;
  height: 398px;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  outline-offset: -5px;
}
.spin-stage.dragging {
  cursor: grabbing;
}
.spin-stage[aria-busy="true"] {
  cursor: progress;
}
.spin-image {
  position: absolute;
  inset: 0;
  width: 90%;
  height: 100%;
  margin: auto;
  max-width: 1000px;
  object-fit: contain;
  transform: scale(1.12);
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.4s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.zoomed .spin-image {
  transform: scale(1.46);
}
.spin-word {
  position: absolute;
  inset: 50px 0 auto;
  text-align: center;
  font-size: clamp(95px, 15vw, 205px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #dce5d2;
  pointer-events: none;
}
.spin-floor {
  position: absolute;
  inset: auto 12% 19px;
  height: 100px;
  border: 1px solid #b9caa860;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.spin-dark {
  background: radial-gradient(ellipse at 50% 48%, #83a0580c, transparent 65%);
}
.spin-dark .spin-word {
  color: #25311e;
}
.spin-dark .spin-floor {
  border-color: #657b4330;
  box-shadow: 0 20px 65px #8eae4e15;
}
.spin-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px 24px;
  border-top: 1px solid #b9caa845;
}
.spin-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.spin-angle {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: #7b8e69;
}
.spin-actions {
  display: flex;
  gap: 8px;
  padding: 5px;
  background: #e3ebd9;
  border: 1px solid #d3dfc7;
  border-radius: 30px;
}
.spin-actions > button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d4f2e;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.spin-actions > button .icon {
  width: 20px;
  height: 20px;
}
.spin-actions > button:hover:not(:disabled) {
  background: #f8fff0;
  border-color: #cad9ba;
}
.spin-actions > button[aria-pressed="true"] {
  background: var(--lime);
  color: #263815;
  border-color: #c2db7f;
}
.spin-actions > button:disabled {
  opacity: 0.35;
}
.spin-dark .spin-controls {
  border-color: #ffffff12;
}
.spin-dark .spin-actions {
  background: #26351e;
  border-color: #38492c;
}
.spin-dark .spin-actions > button {
  color: #d5e6c4;
}
.spin-dark .spin-actions > button:hover:not(:disabled) {
  background: #3b4e2e;
  border-color: #526a3f;
}
.spin-dark .spin-actions > button[aria-pressed="true"] {
  background: var(--lime);
  color: #263815;
  border-color: var(--lime);
}
.spin-hint {
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #7e906e;
  line-height: 1.5;
}
.spin-hint > .icon {
  width: 20px;
  height: 20px;
}
.spin-dark .spin-hint {
  color: #a8bc96;
}
.spin-load-track {
  height: 2px;
  background: #8ca5741f;
  margin-inline: 24px;
  overflow: hidden;
}
.spin-load-track > span {
  display: block;
  width: 0;
  height: 100%;
  background: #aacb66;
  transition: width 0.15s;
}
.spin-ready .spin-load-track {
  opacity: 0;
}
.spin-loading {
  display: block;
  min-height: 24px;
  padding: 3px 24px 0;
  color: #7b9068;
  font-size: 12px;
  line-height: 1.6;
}
.spin-retry {
  margin-left: 10px;
  text-decoration: underline;
  color: inherit;
  min-height: 28px;
  font-size: 12px;
}
.showroom-bottom {
  border-top: 1px solid #ffffff1c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  margin-top: 4px;
}
.showroom-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.showroom-tabs > button {
  min-height: 44px;
  padding: 10px 23px;
  border: 1px solid #4c623d;
  border-radius: 25px;
  font-size: 14px;
  color: #c4d4b6;
  transition:
    background 0.2s,
    color 0.2s;
}
.showroom-tabs > button.active {
  background: var(--lime);
  color: #263815;
  border-color: var(--lime);
}
.showroom-tabs > button:not(.active):hover {
  background: #2e4021;
}
.showroom-cta {
  min-height: 48px;
  font-size: 13px;
  gap: 25px;
  padding: 12px 18px;
  flex-shrink: 0;
}
.showroom-note {
  font-size: 12px;
  color: #819672;
  margin-top: 25px;
}
/* Offer, workflow and contact */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 56px;
}
.advantage {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid #ced8c5;
}
.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid #d2ddc6;
  border-radius: 50%;
  background: #edf3e5;
}
.advantage-icon > .icon {
  width: 23px;
  height: 23px;
  color: #566e42;
}
.advantage-number {
  position: absolute;
  right: 0;
  top: 31px;
  color: #98a58a;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.advantage h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  line-height: 1.35;
  margin: 24px 0 15px;
}
.advantage p {
  font-size: 16px;
  color: #6d7f5d;
  line-height: 1.85;
  max-width: 380px;
}
.cost-banner {
  margin-top: 64px;
  border: 1px solid #cfdbbf;
  border-radius: var(--radius);
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  background: #edf3e4;
}
.cost-banner .eyebrow {
  font-size: 11px;
  color: #70865d;
}
.cost-banner h3 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  margin-top: 14px;
}
.cost-banner p {
  font-size: 16px;
  line-height: 1.8;
  color: #60774c;
}
.cost-banner .text-link {
  margin-top: 15px;
}
.approach {
  background: #eef2e9;
  border-block: 1px solid #e0e7d8;
}
.process-list {
  margin-top: 50px;
}
.process-item {
  display: grid;
  grid-template-columns: 44px 40px 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid #ced9c3;
  padding: 29px 0;
}
.process-item:last-child {
  border-bottom: 1px solid #ced9c3;
}
.process-number {
  font-size: 13px;
  color: #8c9c7e;
  font-variant-numeric: tabular-nums;
}
.process-item > .icon {
  width: 25px;
  height: 25px;
  color: #768f61;
}
.process-item h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.4;
  margin-bottom: 8px;
}
.process-item p {
  font-size: 15px;
  color: #748665;
  line-height: 1.8;
  max-width: 640px;
}
.process-detail {
  font-size: 10px;
  letter-spacing: 0.045em;
  color: #91a180;
  max-width: 210px;
  text-align: right;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
}
.faq-heading h2 {
  font-size: 43px;
}
.faq-heading > p {
  font-size: 15px;
  color: #748665;
  line-height: 1.8;
  margin-top: 26px;
}
.faq-heading .text-link {
  margin-top: 8px;
}
.faq-list details {
  border-top: 1px solid #d1dac7;
}
.faq-list details:last-child {
  border-bottom: 1px solid #d1dac7;
}
.faq-list summary {
  list-style: none;
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
  cursor: pointer;
  padding-block: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .icon {
  width: 20px;
  height: 20px;
  color: #748c5f;
  transition: transform 0.25s;
}
.faq-list details[open] summary > .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  padding: 0 36px 26px 0;
  font-size: 15px;
  line-height: 1.85;
  color: #6c805c;
}
.contact-section {
  background: var(--lime);
  padding: 83px 0 86px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-copy .eyebrow {
  font-size: 11px;
  color: #596d28;
}
.contact-copy h2 {
  font-size: clamp(64px, 7vw, 100px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}
.contact-copy h2 > span {
  color: #8da538;
}
.contact-copy > p {
  font-size: 16px;
  line-height: 1.8;
  color: #4f6726;
  margin-top: 27px;
}
.contact-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  font-size: 12px;
  color: #5c732f;
}
.contact-location > .icon {
  width: 17px;
  height: 17px;
}
.contact-label {
  display: block;
  font-size: 11px;
  color: #667e30;
  letter-spacing: 0.07em;
  font-weight: 650;
  margin-bottom: 9px;
}
.contact-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.5;
  white-space: nowrap;
}
.messenger-list {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}
.messenger-list > button {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 78px;
  border: 1px solid #8ca33870;
  background: #e6ff9566;
  border-radius: 6px;
  padding: 14px 19px;
  text-align: left;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.messenger-list > button:hover {
  background: #f0ffbd;
  border-color: #728a22;
  transform: translateX(3px);
}
.channel-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-logo img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}
.channel-logo.telegram {
  background: #2ba7df;
}
.channel-logo.whatsapp {
  background: #26bb65;
}
.channel-logo.telegram img,
.channel-logo.whatsapp img {
  filter: brightness(0) invert(1);
}
.channel-logo.max {
  background: #fff;
}
.channel-logo.max img {
  width: 27px;
  height: 27px;
}
.channel-logo.phone {
  background: #e1e9d8;
  color: #527139;
}
.channel-logo.phone > .icon {
  width: 20px;
  height: 20px;
}
.channel-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.channel-text strong {
  font-weight: 650;
  font-size: 16px;
}
.channel-text small {
  font-size: 12px;
  color: #637b32;
}
.messenger-list > button > .icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #587022;
}
.contact-footnote {
  display: block;
  font-size: 12px;
  color: #6d823d;
  margin-top: 17px;
}
.footer {
  background: #10160d;
  color: #d9e3d0;
  padding: 47px 0 29px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-bottom: 35px;
}
.footer-top .brand-logo {
  width: 108px;
}
.footer-top > p {
  font-size: 14px;
  line-height: 1.8;
  color: #a1b492;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  min-height: 44px;
  font-size: 13px;
}
.back-top > .icon {
  width: 20px;
  height: 20px;
  color: var(--lime);
}
.footer-bottom {
  border-top: 1px solid #ffffff1b;
  padding-top: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 55px;
  font-size: 12px;
  line-height: 1.8;
  color: #839874;
}
.footer-bottom > span {
  white-space: nowrap;
}
.footer-bottom > p {
  max-width: 760px;
}
.footer-legal {
  font-size: 12px;
  min-height: 30px;
  align-self: start;
  white-space: nowrap;
  color: #adbc9f;
}
.mobile-cta {
  display: none;
}
/* Dialogs: sticky close bar, native focus trapping, scroll reset on open. */
.body-locked {
  overflow: hidden;
}
dialog {
  width: 580px;
  max-width: calc(100vw - 40px);
  max-height: min(92svh, 1100px);
  padding: 0;
  border: 1px solid #dce5d1;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  overscroll-behavior: contain;
  box-shadow: 0 25px 100px #0005;
  scrollbar-width: thin;
  scrollbar-color: #b9c9a5 transparent;
}
dialog::backdrop {
  background: #091204c7;
  backdrop-filter: blur(8px);
}
dialog[open] {
  animation: dialog-in 0.25s var(--ease);
}
.dialog-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 66px;
  padding: 11px 20px 11px 28px;
  background: #f7f9f3f5;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #dce5d2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.dialog-topbar > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #657c50;
}
.topbar-divider {
  margin: 0 10px;
  color: #a7b999;
}
.dialog-close {
  background: #fff;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}
.dialog-body {
  padding: 35px 36px 36px;
}
.dialog-body h2 {
  font-size: 39px;
  line-height: 1.14;
}
.dialog-body > .eyebrow {
  font-size: 11px;
  margin-bottom: 18px;
}
.dialog-body > p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b805b;
  margin-top: 19px;
}
.contact-selection:empty {
  display: none;
}
.contact-selection {
  border: 1px solid #d7e3c9;
  border-radius: 6px;
  background: #edf4e4;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  padding: 14px 16px;
  margin-top: 22px;
}
.dialog-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}
.dialog-channels > button {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #d6e1cb;
  background: #f0f5e9;
  border-radius: 6px;
  padding: 13px;
  text-align: left;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.dialog-channels > button > .icon {
  width: 17px;
  height: 17px;
  margin-left: auto;
}
.dialog-channels > button:hover {
  border-color: #9dbd79;
  background: #e6f0d9;
}
.dialog-channels .channel-logo {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-radius: 10px;
}
.dialog-channels .channel-logo img {
  width: 21px;
  height: 21px;
}
.dialog-channels .channel-logo.max img {
  width: 24px;
  height: 24px;
}
.contact-status:empty {
  display: none;
}
.max-contact {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #d6e1cb;
  border-radius: 6px;
  background: #edf3e6;
}
.max-contact[hidden] {
  display: none;
}
.max-contact > strong {
  display: block;
  font-size: 14px;
}
.max-phone {
  display: block;
  margin-top: 10px;
  font-size: clamp(18px, 4.5vw, 25px);
  font-weight: 650;
  white-space: nowrap;
  user-select: all;
}
.max-contact p {
  margin-top: 10px;
  color: #566f40;
  font-size: 13px;
  line-height: 1.6;
}
.max-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
}
.max-contact-actions > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}
.max-contact-actions button {
  background: #d5fc61;
}
.max-contact-actions > *:hover {
  background: #dbe8c9;
}
.max-contact-actions .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.dialog-body > .contact-status {
  font-size: 13px;
  border-left: 2px solid #aac97e;
  padding: 11px 14px;
  background: #eef3e7;
  margin-top: 20px;
  color: #748963;
}
.copy-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  margin-top: 19px;
  font-size: 12px;
  color: #566f40;
  border-radius: 5px;
}
.copy-message > .icon {
  width: 17px;
  height: 17px;
}
.copy-message:hover {
  background: #e7eedf;
}
.info-dialog a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.car-dialog {
  width: 1080px;
}
.detail-view {
  background: #edf3e4;
}
.detail-view .spin-stage {
  height: 320px;
}
.detail-view .spin-word {
  font-size: 145px;
  top: 33px;
}
.detail-view .spin-controls {
  padding: 10px 30px;
}
.detail-content {
  padding: 31px 34px 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
}
.detail-content .eyebrow {
  font-size: 11px;
  margin-bottom: 8px;
}
.detail-content h2 {
  font-size: 40px;
  line-height: 1.2;
}
.detail-content h2 > span {
  font-size: 19px;
  color: #839971;
  letter-spacing: -0.025em;
}
.detail-content h3 {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 17px;
}
.detail-content p {
  font-size: 14px;
  color: #718661;
  line-height: 1.85;
  margin-top: 11px;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}
.detail-tags > span {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #d4e1c7;
  border-radius: 20px;
}
.detail-content .detail-note {
  font-size: 12px;
  color: #8a9c7b;
  line-height: 1.7;
  margin-top: 16px;
}
.detail-offer {
  align-self: center;
  background: #eaf2df;
  border: 1px solid #d4e2c2;
  border-radius: 8px;
  padding: 26px;
}
.detail-offer strong {
  display: block;
  font-size: 31px;
  line-height: 1.4;
  letter-spacing: -0.035em;
  margin-top: 7px;
}
.detail-offer .price-label {
  font-size: 11px;
}
.detail-offer .button {
  width: 100%;
  font-size: 13px;
  gap: 14px;
  margin-top: 20px;
  min-height: 52px;
  padding-inline: 16px;
}
.detail-offer p {
  font-size: 13px;
  line-height: 1.7;
}
.detail-offer-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 17px;
  color: #6c8356;
  font-size: 12px;
  line-height: 1.7;
}
.detail-offer-note > .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.reveal {
  opacity: 1;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.js-motion .reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-in {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}
@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: none;
  }
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1700px) {
  .hero-content {
    padding-top: 188px;
  }
  .hero {
    height: 970px;
  }
}
@media (max-width: 1250px) {
  .page-width {
    width: calc(100% - 72px);
  }
  .header {
    padding-inline: 36px;
  }
  .brand-caption {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .desktop-nav {
    gap: 23px;
  }
  .header-actions {
    gap: 18px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-description {
    font-size: 15px;
    max-width: 320px;
  }
  .car-grid {
    gap: 18px;
  }
  .card-top {
    padding-inline: 19px;
  }
  .card-info {
    padding-inline: 19px;
  }
  .car-visual {
    height: 205px;
  }
  .card-heading h3 {
    font-size: 28px;
  }
  .card-heading small {
    font-size: 12px;
  }
  .body-type {
    font-size: 11px;
    padding-inline: 6px;
  }
  .card-bottom strong {
    font-size: 23px;
  }
  .selection-card {
    padding: 27px;
    min-height: 470px;
  }
  .selection-card h3 {
    font-size: 42px;
  }
  .process-detail {
    display: none;
  }
  .process-item {
    grid-template-columns: 40px 36px 1fr;
  }
  .contact-layout {
    gap: 50px;
  }
  .contact-phone {
    font-size: 27px;
  }
  .faq-section {
    gap: 55px;
  }
}
@media (max-width: 980px) {
  .section-pad {
    padding-block: 84px;
  }
  .page-width {
    width: calc(100% - 52px);
  }
  .header {
    padding-inline: 26px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .header .button-small {
    font-size: 12px;
    gap: 14px;
  }
  .hero {
    min-height: 810px;
  }
  .hero-content {
    padding-top: 158px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .trust-strip > .page-width {
    padding-block: 24px;
  }
  .trust-strip > .page-width > div {
    gap: 12px;
  }
  .trust-strip strong {
    font-size: 13px;
  }
  .trust-strip span {
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 47px;
  }
  .section-description {
    max-width: 265px;
    font-size: 14px;
  }
  .car-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .car-visual {
    height: 229px;
  }
  .car-watermark {
    font-size: 74px;
  }
  .card-heading h3 {
    font-size: 32px;
  }
  .body-type {
    font-size: 12px;
  }
  .card-bottom strong {
    font-size: 26px;
  }
  .card-heading small {
    font-size: 14px;
  }
  .selection-card {
    min-height: 490px;
  }
  .selection-card h3 {
    font-size: 49px;
  }
  .catalog-note {
    display: none;
  }
  .showroom-heading h2 {
    font-size: 48px;
  }
  .showroom-heading > p {
    max-width: 300px;
    font-size: 13px;
  }
  .showroom-heading .eyebrow {
    font-size: 10px;
  }
  .spin-stage {
    height: 350px;
  }
  .spin-controls {
    gap: 14px;
    padding-inline: 8px;
  }
  .spin-hint {
    font-size: 11px;
    max-width: 140px;
  }
  .spin-counter {
    font-size: 18px;
    gap: 8px;
  }
  .spin-angle {
    font-size: 11px;
  }
  .showroom-tabs {
    gap: 5px;
  }
  .showroom-tabs > button {
    font-size: 13px;
    padding-inline: 16px;
  }
  .showroom-cta {
    gap: 15px;
    font-size: 12px;
  }
  .showroom-bottom {
    gap: 18px;
  }
  .advantage-grid {
    gap: 25px;
  }
  .advantage h3 {
    font-size: 21px;
  }
  .advantage p {
    font-size: 15px;
  }
  .cost-banner {
    padding: 32px;
    gap: 35px;
  }
  .cost-banner h3 {
    font-size: 27px;
  }
  .cost-banner p {
    font-size: 15px;
  }
  .faq-section {
    gap: 36px;
    grid-template-columns: 0.9fr 1.2fr;
  }
  .faq-heading h2 {
    font-size: 37px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .contact-layout {
    gap: 38px;
  }
  .contact-copy h2 {
    font-size: 70px;
  }
  .contact-copy .eyebrow {
    font-size: 10px;
  }
  .contact-phone {
    font-size: 25px;
  }
  .contact-copy > p {
    font-size: 15px;
  }
  .contact-location {
    font-size: 11px;
  }
  .messenger-list > button {
    padding: 13px 15px;
    min-height: 76px;
  }
  .channel-logo {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .footer-bottom {
    gap: 30px;
  }
  .detail-content {
    gap: 23px;
    padding: 27px;
  }
  .detail-offer {
    padding: 23px;
  }
  .detail-offer strong {
    font-size: 28px;
  }
}
@media (max-width: 760px) {
  .page-width {
    width: calc(100% - 40px);
  }
  .header {
    height: 82px;
    padding-inline: 20px;
  }
  .header.scrolled {
    height: 74px;
  }
  .brand-logo {
    width: 81px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    gap: 12px;
  }
  .header .button-small {
    min-height: 42px;
  }
  .menu-toggle {
    display: inline-flex;
    border-color: #ffffff25;
    border-radius: 6px;
    width: 40px;
    height: 42px;
    flex-basis: 40px;
  }
  .menu-toggle:hover {
    background: #ffffff12;
  }
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 12px 24px 25px;
    background: #11180efc;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.2s,
      visibility 0.2s,
      transform 0.2s;
    border-bottom: 1px solid #ffffff20;
  }
  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .mobile-nav > a {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff1f;
    font-size: 19px;
    font-weight: 600;
  }
  .mobile-nav > a > span {
    font-size: 12px;
    color: var(--lime);
  }
  .mobile-nav > p {
    font-size: 12px;
    color: #94aa83;
    margin-top: 20px;
  }
  .hero {
    height: 94svh;
    min-height: 830px;
  }
  .hero h1 {
    font-size: clamp(46px, 8.6vw, 68px);
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero-intro p {
    font-size: 15px;
  }
  .hero-eyebrow {
    font-size: 10px;
    gap: 10px;
  }
  .hero-intro-actions {
    gap: 24px;
  }
  .hero-intro-actions .button {
    min-width: 230px;
    font-size: 13px;
  }
  .hero-secondary {
    font-size: 13px;
  }
  .hero-image {
    object-position: 32% center;
  }
  .hero-side {
    display: none;
  }
  .hero-bottom {
    bottom: 30px;
  }
  .hero-proof {
    font-size: 12px;
    gap: 11px;
  }
  .hero-proof > .icon {
    width: 25px;
    height: 25px;
  }
  .hero-model {
    min-width: 210px;
  }
  .hero-model-price {
    font-size: 24px;
  }
  .hero-model-link {
    font-size: 12px;
  }
  .hero-model-label {
    font-size: 10px;
  }
  .trust-strip > .page-width {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 9px;
  }
  .trust-strip > .page-width > div,
  .trust-strip > .page-width > div:first-child,
  .trust-strip > .page-width > div:last-child {
    justify-content: flex-start;
    padding: 15px 4px;
    border-right: 0;
    border-bottom: 1px solid #d5dcd0;
    gap: 15px;
  }
  .trust-strip > .page-width > div:last-child {
    border-bottom: 0;
  }
  .trust-strip span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    font-size: 12px;
  }
  .trust-strip strong {
    font-size: 13px;
  }
  .trust-strip .icon {
    width: 22px;
    height: 22px;
  }
  .section-pad {
    padding-block: 68px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-description {
    font-size: 16px;
    max-width: 450px;
    margin-top: 23px;
    padding: 0;
  }
  .section-description br {
    display: none;
  }
  .catalog-toolbar {
    margin-top: 29px;
  }
  .car-grid {
    gap: 16px;
  }
  .card-top {
    padding: 20px 17px 0;
    font-size: 11px;
  }
  .car-visual {
    height: 184px;
  }
  .car-watermark {
    font-size: 58px;
    top: 31px;
  }
  .card-info {
    padding: 10px 17px 20px;
  }
  .card-heading {
    display: block;
  }
  .body-type {
    display: none;
  }
  .card-heading h3 {
    font-size: 28px;
  }
  .card-heading small {
    font-size: 12px;
  }
  .card-bottom strong {
    font-size: 22px;
  }
  .view-chip {
    left: 17px;
    font-size: 11px;
  }
  .car-mood {
    font-size: 13px;
  }
  .selection-card {
    padding: 25px;
    min-height: 459px;
  }
  .selection-card h3 {
    font-size: 39px;
    margin-top: 35px;
  }
  .selection-card p {
    font-size: 14px;
  }
  .selection-card .button {
    font-size: 12px;
    gap: 15px;
  }
  .showroom {
    padding-top: 62px;
  }
  .showroom-heading {
    display: block;
  }
  .showroom-heading h2 {
    font-size: 47px;
  }
  .showroom-heading > p {
    margin-top: 22px;
    max-width: 420px;
    font-size: 14px;
  }
  .showroom-view {
    margin-top: 0;
  }
  .spin-stage {
    height: 330px;
  }
  .spin-word {
    font-size: 100px;
    top: 73px;
  }
  .spin-controls {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: 8px;
  }
  .spin-actions {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
  }
  .spin-hint {
    max-width: none;
    justify-self: end;
    font-size: 12px;
  }
  .spin-counter {
    font-size: 19px;
  }
  .showroom-bottom {
    display: block;
    padding-top: 24px;
  }
  .showroom-tabs {
    gap: 7px;
  }
  .showroom-tabs > button {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    padding-inline: 14px;
  }
  .showroom-cta {
    margin-top: 22px;
    font-size: 14px;
    min-height: 50px;
    width: 100%;
    padding-inline: 20px;
  }
  .showroom-note {
    font-size: 12px;
    line-height: 1.8;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
    gap: 29px;
  }
  .advantage {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 20px;
    padding-top: 24px;
  }
  .advantage-icon {
    grid-row: 1/3;
  }
  .advantage h3 {
    font-size: 22px;
    margin: 2px 0 12px;
  }
  .advantage p {
    font-size: 16px;
    max-width: none;
    padding-right: 8px;
  }
  .advantage-number {
    display: none;
  }
  .cost-banner {
    margin-top: 43px;
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }
  .cost-banner h3 {
    font-size: 30px;
  }
  .cost-banner p {
    font-size: 16px;
  }
  .process-list {
    margin-top: 37px;
  }
  .process-item {
    grid-template-columns: 24px 30px 1fr;
    gap: 15px;
    padding-block: 26px;
  }
  .process-item h3 {
    font-size: 21px;
  }
  .process-item p {
    font-size: 16px;
  }
  .process-item > .icon {
    width: 23px;
    height: 23px;
    align-self: start;
    margin-top: 4px;
  }
  .process-number {
    align-self: start;
    padding-top: 6px;
  }
  .faq-section {
    display: block;
  }
  .faq-heading h2 {
    font-size: 41px;
  }
  .faq-heading p {
    font-size: 15px;
  }
  .faq-list {
    margin-top: 35px;
  }
  .faq-list summary {
    font-size: 16px;
  }
  .faq-list details > p {
    font-size: 16px;
  }
  .contact-section {
    padding-block: 60px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-copy h2 {
    font-size: clamp(62px, 12vw, 90px);
  }
  .contact-copy > p {
    font-size: 16px;
  }
  .contact-location {
    font-size: 12px;
  }
  .contact-links {
    max-width: 480px;
    width: 100%;
  }
  .contact-phone {
    font-size: 31px;
  }
  .messenger-list > button {
    padding: 15px 18px;
    min-height: 80px;
  }
  .channel-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .contact-copy .eyebrow {
    font-size: 11px;
  }
  .footer-top {
    gap: 27px;
  }
  .footer-top .brand-logo {
    width: 91px;
  }
  .footer-top > p {
    font-size: 12px;
  }
  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 17px;
  }
  .footer-bottom > p {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .footer-legal {
    justify-self: end;
  }
  .detail-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 26px;
  }
  .detail-offer {
    padding: 23px;
  }
  .detail-offer strong {
    font-size: 30px;
  }
  .detail-content h2 {
    font-size: 38px;
  }
  .detail-view .spin-stage {
    height: 285px;
  }
  .detail-view .spin-word {
    font-size: 113px;
    top: 59px;
  }
  .detail-view .spin-controls {
    padding: 12px 22px;
  }
  .detail-offer .button {
    font-size: 14px;
    min-height: 52px;
  }
  .detail-offer p {
    font-size: 14px;
  }
  .detail-content p {
    font-size: 15px;
  }
  .detail-content .detail-note {
    font-size: 12px;
  }
  .dialog-topbar {
    padding: 10px 17px 10px 24px;
  }
}
@media (max-width: 480px) {
  html {
    scroll-padding-top: 85px;
  }
  .page-width {
    width: calc(100% - 36px);
  }
  .header {
    padding-inline: 18px;
    height: 80px;
  }
  .brand-logo {
    width: 74px;
  }
  .header-actions {
    gap: 9px;
  }
  .header .button-small {
    font-size: 11px;
    padding-inline: 12px;
    gap: 10px;
  }
  .header .button-small > .icon {
    width: 17px;
    height: 17px;
  }
  .hero {
    height: 100svh;
    min-height: 810px;
    max-height: 920px;
  }
  .hero-content {
    padding-top: 126px;
  }
  .hero h1 {
    font-size: clamp(32px, 8.3vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.05em;
    margin-top: 25px;
  }
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 0.04em;
    gap: 7px;
  }
  .short-line {
    width: 17px;
  }
  .hero-intro {
    margin-top: 24px;
  }
  .hero-intro p {
    font-size: 14px;
    line-height: 1.85;
  }
  .mobile-only {
    display: block;
  }
  .hero-intro-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
    margin-top: 24px;
  }
  .hero-intro-actions .button {
    min-height: 50px;
    min-width: 237px;
  }
  .hero-secondary {
    font-size: 12px;
    min-height: 38px;
  }
  .hero-secondary > .icon {
    width: 16px;
    height: 16px;
  }
  .hero-media {
    inset: auto 0 100px;
    height: 58vw;
  }
  .hero-image {
    object-position: 32% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #20271e,
      #20271e08 24%,
      transparent 50%,
      #10170ff5 98%
    );
  }
  .hero-bottom {
    bottom: 24px;
    gap: 18px;
  }
  .hero-proof {
    max-width: 130px;
    align-items: flex-start;
    font-size: 11px;
    gap: 8px;
  }
  .hero-proof > .icon {
    width: 20px;
    height: 20px;
  }
  .hero-model {
    min-width: 166px;
    max-width: 195px;
    gap: 7px;
    padding-top: 13px;
  }
  .hero-model-price {
    font-size: 21px;
  }
  .hero-model-label {
    font-size: 9px;
  }
  .hero-model-link {
    font-size: 11px;
    gap: 15px;
  }
  .hero-model-link > .icon {
    width: 18px;
    height: 18px;
  }
  .trust-strip span {
    font-size: 11px;
    gap: 9px;
  }
  .trust-strip strong {
    font-size: 12px;
  }
  .trust-strip > .page-width > div {
    padding-block: 14px;
  }
  .section-pad {
    padding-block: 58px;
  }
  .dark-eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: 36px;
    letter-spacing: -0.055em;
  }
  .section-description {
    font-size: 15px;
    margin-top: 21px;
  }
  .filter {
    font-size: 13px;
    padding: 10px 17px;
  }
  .filter span {
    font-size: 11px;
    margin-left: 8px;
  }
  .catalog-toolbar {
    margin-bottom: 22px;
  }
  .car-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .card-top {
    padding: 22px 22px 0;
    font-size: 12px;
  }
  .car-visual {
    height: 230px;
  }
  .car-watermark {
    font-size: 78px;
  }
  .card-info {
    padding: 9px 22px 22px;
  }
  .card-heading {
    display: flex;
  }
  .body-type {
    display: block;
  }
  .card-heading h3 {
    font-size: 32px;
  }
  .card-heading small {
    font-size: 13px;
  }
  .view-chip {
    left: 22px;
    font-size: 12px;
  }
  .car-mood {
    font-size: 14px;
  }
  .card-bottom strong {
    font-size: 26px;
  }
  .card-bottom .button {
    font-size: 14px;
    min-height: 48px;
  }
  .selection-card {
    min-height: 400px;
    padding: 28px;
  }
  .selection-card h3 {
    font-size: 46px;
    margin-top: 31px;
  }
  .selection-card p {
    font-size: 15px;
  }
  .selection-card .button {
    font-size: 14px;
    min-height: 52px;
    width: 100%;
  }
  .price-note {
    font-size: 12px;
    gap: 8px;
  }
  .showroom {
    padding: 53px 0 28px;
  }
  .showroom-heading h2 {
    font-size: 42px;
  }
  .showroom-heading .eyebrow {
    font-size: 10px;
  }
  .showroom-heading > p {
    font-size: 14px;
  }
  .showroom-view {
    margin-inline: -18px;
    margin-top: 14px;
  }
  .spin-stage {
    height: 256px;
  }
  .spin-image {
    width: 104%;
    max-width: 104%;
    transform: scale(1.04);
  }
  .zoomed .spin-image {
    transform: scale(1.32);
  }
  .spin-word {
    font-size: 81px;
    top: 53px;
  }
  .spin-floor {
    height: 68px;
    bottom: 26px;
    inset-inline: 4%;
  }
  .spin-controls,
  .detail-view .spin-controls {
    padding: 14px 18px 10px;
    gap: 14px;
  }
  .spin-counter {
    font-size: 18px;
    gap: 10px;
  }
  .spin-hint {
    font-size: 11px;
    gap: 5px;
  }
  .spin-hint > .icon {
    width: 18px;
    height: 18px;
  }
  .spin-actions {
    gap: 8px;
    padding: 5px;
  }
  .spin-actions > button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .spin-loading {
    font-size: 11px;
    padding-inline: 18px;
    min-height: 23px;
    line-height: 1.8;
  }
  .spin-load-track {
    margin-inline: 18px;
  }
  .spin-angle {
    font-size: 11px;
  }
  .showroom-tabs {
    gap: 5px;
    flex-wrap: nowrap;
  }
  .showroom-tabs > button {
    font-size: 12px;
    padding: 10px 11px;
    min-height: 44px;
  }
  .showroom-cta {
    margin-top: 19px;
  }
  .showroom-note {
    font-size: 11px;
  }
  .advantage {
    grid-template-columns: 43px 1fr;
    column-gap: 16px;
  }
  .advantage-icon {
    width: 43px;
    height: 43px;
  }
  .advantage-icon > .icon {
    width: 21px;
    height: 21px;
  }
  .advantage h3 {
    font-size: 21px;
  }
  .advantage p {
    font-size: 15px;
    padding: 0;
  }
  .cost-banner {
    padding: 24px;
  }
  .cost-banner h3 {
    font-size: 27px;
  }
  .cost-banner .eyebrow {
    font-size: 10px;
  }
  .cost-banner p {
    font-size: 15px;
  }
  .process-item {
    grid-template-columns: 22px 1fr;
    gap: 13px;
  }
  .process-item > .icon {
    display: none;
  }
  .process-item h3 {
    font-size: 20px;
  }
  .process-item p {
    font-size: 15px;
  }
  .faq-heading h2 {
    font-size: 36px;
  }
  .faq-list summary {
    font-size: 15px;
    min-height: 80px;
    gap: 18px;
  }
  .faq-list details > p {
    font-size: 15px;
    padding-right: 10px;
  }
  .contact-copy h2 {
    font-size: clamp(62px, 19vw, 82px);
  }
  .contact-copy .eyebrow {
    font-size: 10px;
  }
  .contact-copy > p {
    font-size: 15px;
  }
  .contact-location {
    font-size: 11px;
    gap: 7px;
  }
  .contact-phone {
    font-size: clamp(24px, 7vw, 31px);
  }
  .contact-label {
    font-size: 10px;
  }
  .contact-footnote {
    font-size: 11px;
  }
  .footer {
    padding-top: 37px;
    padding-bottom: 103px;
  }
  .footer-top {
    gap: 23px;
    flex-wrap: wrap;
    padding-bottom: 28px;
  }
  .footer-top > .brand {
    order: 0;
  }
  .footer-top > p {
    order: 3;
    width: 100%;
    font-size: 13px;
  }
  .back-top {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 11px;
    line-height: 1.85;
  }
  .footer-legal {
    font-size: 11px;
  }
  .footer-bottom > p {
    font-size: 11px;
  }
  .mobile-cta {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 19;
    background: #10170fed;
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: 1fr 1.13fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform 0.25s;
    border-top: 1px solid #ffffff1f;
  }
  .mobile-cta.show {
    transform: none;
  }
  .mobile-cta > a,
  .mobile-cta > button {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
  }
  .mobile-cta > a {
    border: 1px solid #ffffff40;
    color: #e9f2e1;
  }
  .mobile-cta > button {
    background: var(--lime);
    gap: 10px;
    justify-content: space-between;
    padding-inline: 13px;
  }
  .mobile-cta > button > .icon {
    width: 17px;
    height: 17px;
  }
  dialog {
    max-width: calc(100vw - 24px);
    max-height: 92svh;
    border-radius: 10px;
  }
  .dialog-topbar {
    padding: 9px 12px 9px 18px;
    min-height: 61px;
    gap: 10px;
  }
  .dialog-topbar > span {
    font-size: 9px;
    letter-spacing: 0.035em;
  }
  .topbar-divider {
    margin-inline: 6px;
  }
  .dialog-body {
    padding: 29px 22px;
  }
  .dialog-body h2 {
    font-size: 31px;
  }
  .dialog-body > .eyebrow {
    font-size: 10px;
  }
  .dialog-body > p {
    font-size: 14px;
  }
  .dialog-channels {
    grid-template-columns: 1fr;
    margin-top: 21px;
    gap: 8px;
  }
  .dialog-channels > button {
    min-height: 65px;
    padding: 12px 15px;
    font-size: 15px;
    gap: 15px;
  }
  .dialog-channels .channel-logo {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .contact-selection {
    font-size: 14px;
    padding: 12px 14px;
  }
  .copy-message {
    font-size: 12px;
  }
  .detail-view .spin-stage {
    height: 239px;
  }
  .detail-view .spin-word {
    font-size: 76px;
    top: 53px;
  }
  .detail-content {
    padding: 25px 21px;
    gap: 24px;
  }
  .detail-content h2 {
    font-size: 36px;
  }
  .detail-content h2 > span {
    font-size: 17px;
  }
  .detail-content h3 {
    font-size: 18px;
  }
  .detail-content .eyebrow {
    font-size: 10px;
  }
  .detail-offer {
    padding: 20px;
  }
  .detail-offer strong {
    font-size: 28px;
  }
  .detail-offer .price-label {
    font-size: 10px;
  }
  .detail-offer .button {
    font-size: 13px;
    padding-inline: 14px;
  }
}
@media (max-width: 350px) {
  .hero h1 {
    font-size: 31px;
  }
  .hero-eyebrow {
    font-size: 8px;
  }
  .hero-proof {
    font-size: 10px;
    max-width: 112px;
  }
  .hero-proof > .icon {
    display: none;
  }
  .hero-model {
    min-width: 157px;
  }
  .hero-intro p {
    font-size: 13px;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .header .button-small {
    padding-inline: 10px;
    font-size: 10px;
  }
  .header .button-small > .icon {
    width: 16px;
  }
  .brand-logo {
    width: 65px;
  }
  .header-actions {
    gap: 8px;
  }
  .menu-toggle {
    width: 36px;
    flex-basis: 36px;
  }
  .hero-model-price {
    font-size: 20px;
  }
  .trust-strip span {
    font-size: 10px;
  }
  .trust-strip strong {
    font-size: 11px;
  }
  .car-watermark {
    font-size: 68px;
  }
  .card-heading small {
    font-size: 12px;
  }
  .card-heading h3 {
    font-size: 29px;
  }
  .card-top {
    padding-inline: 19px;
  }
  .card-info {
    padding-inline: 19px;
  }
  .body-type {
    font-size: 11px;
  }
  .spin-hint {
    font-size: 10px;
  }
  .spin-hint > .icon {
    display: none;
  }
  .spin-word {
    font-size: 72px;
  }
  .showroom-tabs > button {
    padding-inline: 8px;
    font-size: 11px;
  }
  .contact-copy h2 {
    font-size: 62px;
  }
  .contact-location {
    font-size: 10px;
  }
  .mobile-cta > a,
  .mobile-cta > button {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
}
