:root {
  --green-975: #041813;
  --green-950: #061f18;
  --green-900: #0b3328;
  --green-800: #18503e;
  --green-650: #3b8265;
  --green-100: #dbe8e0;
  --paper: #f4f4f0;
  --paper-deep: #ecece6;
  --white: #ffffff;
  --ink: #101a16;
  --muted: #69736e;
  --line: #ced4d0;
  --encar: #d82e38;
  --page: max(24px, calc((100vw - 1440px) / 2));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 66px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.42;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; }
:focus-visible { outline: 3px solid rgba(76, 153, 115, .62); outline-offset: 3px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 66px;
  padding: 6px var(--page);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(6, 31, 24, .13);
  backdrop-filter: blur(16px) saturate(135%);
}
.brand { width: 184px; flex: 0 0 auto; }
.brand img { width: 100%; max-height: 52px; object-fit: contain; object-position: left center; }
.topbar nav { display: flex; gap: 28px; margin-left: auto; }
.topbar nav a {
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}
.topbar nav a:hover { color: var(--green-800); border-bottom-color: var(--green-800); }
.phone-link {
  display: grid;
  gap: 1px;
  min-width: 205px;
  padding: 6px 0 6px 18px;
  border-left: 1px solid var(--line);
  text-align: right;
  text-decoration: none;
}
.phone-link span { color: var(--muted); font-size: 10px; font-weight: 720; }
.phone-link strong { color: var(--green-900); font-size: 15px; line-height: 1.1; letter-spacing: .01em; }

.hero {
  display: grid;
  grid-template-columns: minmax(500px, 44%) minmax(0, 56%);
  min-height: 535px;
  color: var(--white);
  background: var(--green-950);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 48px clamp(38px, 4vw, 66px) 48px var(--page);
  background:
    linear-gradient(145deg, rgba(53, 112, 85, .2), transparent 43%),
    var(--green-950);
}
.hero-copy::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -42px;
  bottom: 0;
  width: 84px;
  background: linear-gradient(90deg, var(--green-950), rgba(6, 31, 24, 0));
  content: "";
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 11px;
  color: var(--green-650);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .045em;
}
.hero .eyebrow { color: #9ac5b0; }
.hero h1 {
  margin: 0;
  font-size: clamp(49px, 4.4vw, 68px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.052em;
}
.hero h1 em { color: #a9ccb9; font-style: normal; font-weight: 660; }
.hero-lead {
  max-width: 540px;
  margin: 20px 0 0;
  color: #d2e0d9;
  font-size: 17px;
  line-height: 1.45;
}
.hero-terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .19);
  border-bottom: 1px solid rgba(255, 255, 255, .19);
}
.hero-terms div { min-width: 0; padding: 11px 15px 11px 0; }
.hero-terms div + div { padding-left: 15px; border-left: 1px solid rgba(255, 255, 255, .19); }
.hero-terms strong, .hero-terms span { display: block; }
.hero-terms strong { font-size: 16px; line-height: 1.05; }
.hero-terms span { margin-top: 3px; color: #9eb7ab; font-size: 10px; font-weight: 690; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 24px; }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 240px;
  min-height: 50px;
  padding: 12px 15px 12px 18px;
  color: var(--green-975);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.primary-button:hover { color: var(--white); background: transparent; }
.primary-button span { font-size: 18px; line-height: 1; }
.hero-phone {
  padding: 9px 0 7px;
  color: #d5e3dc;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.hero-media { position: relative; min-width: 0; min-height: 535px; overflow: hidden; background: #122c24; }
.hero-media > picture { display: block; width: 100%; height: 100%; }
.hero-media > picture img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 58%; transform: scale(1.12); transform-origin: 72% 58%; }
.hero-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 24, .34), transparent 32%),
    linear-gradient(180deg, transparent 65%, rgba(3, 17, 13, .64));
  pointer-events: none;
}
.encar-source {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  min-width: 168px;
  padding: 10px 12px 10px 14px;
  background: rgba(4, 24, 19, .76);
  border: 1px solid rgba(255, 255, 255, .2);
  border-left: 3px solid var(--encar);
  border-radius: 4px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px) saturate(120%);
}
.encar-source span { color: #f07078; font-size: 9px; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.encar-source strong { color: #fff; font-size: 27px; line-height: .95; letter-spacing: -.04em; }
.hero-route {
  position: absolute;
  right: 24px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .015em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.catalog-section {
  padding: 48px var(--page) 44px;
  background: var(--paper-deep);
  border-top: 1px solid #d3d4cf;
  scroll-margin-top: 66px;
}
.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 20px;
}
.catalog-heading .eyebrow { margin-bottom: 7px; }
.catalog-heading h2 {
  margin: 0;
  font-size: clamp(38px, 3.7vw, 54px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
}
.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.catalog-meta strong { color: var(--green-900); font-size: 14px; }
.catalog-meta i { width: 3px; height: 3px; background: #9aa49e; border-radius: 50%; }

.filters {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #c8cfca;
  border-radius: 6px;
  box-shadow: 0 9px 28px rgba(6, 31, 24, .055);
}
.filter-primary {
  display: grid;
  grid-template-columns: 210px minmax(230px, 1.5fr) minmax(140px, .62fr) minmax(140px, .62fr) minmax(185px, .8fr);
  gap: 10px;
  align-items: end;
  padding: 14px;
  color: var(--white);
  background: var(--green-900);
}
.filters label, .term-filter { min-width: 0; }
.filters label > span, .term-filter > span {
  display: block;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.filter-primary label > span, .filter-primary .term-filter > span { color: #c5d8cf; }
.filters input, .filters select {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  color: var(--ink);
  background: #f4f5f3;
  border: 1px solid #e0e4e1;
  border-radius: 4px;
  outline: none;
}
.filter-primary input, .filter-primary select { background: var(--white); border-color: transparent; }
.filters input:focus, .filters select:focus { border-color: #579577; box-shadow: 0 0 0 3px rgba(87, 149, 119, .15); }
.term-filter > div { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.term-button {
  min-height: 44px;
  padding: 8px 10px;
  color: #d8e6df;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 850;
}
.term-button.is-active { color: var(--green-975); background: var(--white); border-color: var(--white); }
.filter-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(108px, 1fr)) minmax(96px, .7fr);
  gap: 9px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
}
.reset-button {
  align-self: end;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid #95a69d;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 820;
}
.reset-button:hover { background: #edf4f0; }
.mobile-filter-toggle { display: none; }

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 19px 0 13px;
}
.catalog-toolbar p { margin: 0; }
#result-count { font-size: 17px; font-weight: 850; }
.catalog-toolbar p:last-child { max-width: 630px; color: var(--muted); font-size: 11px; text-align: right; }

.cars-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.catalog-swipe-hint { display: none; }
.car-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #c8cfca;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(6, 31, 24, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.car-card:hover { border-color: #9caea4; box-shadow: 0 16px 40px rgba(6, 31, 24, .11); transform: translateY(-2px); }
.car-card.is-sold .car-image { filter: grayscale(.55); }
.photo-shell { position: relative; overflow: hidden; aspect-ratio: 16 / 9.6; background: #dfe5e1; }
.gallery-trigger { width: 100%; height: 100%; padding: 0; background: transparent; border: 0; }
.car-image { width: 100%; height: 100%; object-fit: cover; transition: transform .38s ease; }
.gallery-trigger:hover .car-image { transform: scale(1.025); }
.photo-shell.image-missing::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background: #edf1ee;
  content: "Фотография временно недоступна";
  text-align: center;
}
.gallery-count, .status-chip {
  position: absolute;
  z-index: 2;
  top: 10px;
  padding: 6px 8px;
  color: var(--white);
  background: rgba(4, 28, 21, .84);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 830;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.gallery-count { right: 10px; }
.status-chip { left: 10px; }
.is-sold .status-chip { background: #202522; }
.card-body { padding: 14px; }
.card-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: start; }
.car-title { margin: 0; font-size: 22px; font-weight: 820; line-height: 1.05; letter-spacing: -.035em; }
.car-subtitle { margin: 4px 0 0; overflow: hidden; color: var(--muted); font-size: 11px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.year-badge { padding: 4px 6px; color: var(--green-900); border: 1px solid #c3cdc7; border-radius: 3px; font-size: 11px; font-weight: 850; }
.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 9px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts div { min-width: 0; padding: 8px 8px 8px 0; }
.facts div + div { padding-left: 8px; border-left: 1px solid var(--line); }
.facts dt { color: var(--muted); font-size: 10px; font-weight: 720; }
.facts dd { margin: 2px 0 0; font-size: 11px; font-weight: 820; overflow-wrap: anywhere; }
.price-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-box > div { min-width: 0; padding: 9px 8px; }
.price-box > div + div { border-left: 1px solid var(--line); }
.price-box span, .price-box strong, .price-box small { display: block; }
.price-box span { color: var(--muted); font-size: 10px; line-height: 1.15; }
.price-box strong { margin-top: 4px; font-size: 14px; line-height: 1.05; white-space: nowrap; }
.price-box .main-price { padding-left: 0; }
.price-box .main-price strong { color: var(--green-900); font-size: 21px; letter-spacing: -.035em; }
.price-box .main-price small { margin-top: 3px; color: var(--green-650); font-size: 10px; font-weight: 730; }
.gallery-button {
  width: 100%;
  min-height: 43px;
  margin-top: 12px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--green-900);
  border: 1px solid var(--green-900);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 830;
}
.gallery-button:hover { background: var(--green-800); }

.empty-state { padding: 46px 18px; color: var(--muted); background: rgba(255, 255, 255, .6); border: 1px dashed #aebbb4; border-radius: 5px; text-align: center; }
.empty-state h3 { margin: 0; color: var(--ink); font-size: 22px; }
.empty-state p { margin: 8px 0 0; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 18px; }
.load-more-button {
  display: grid;
  grid-template-columns: auto auto 30px;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 9px 8px 20px;
  color: #fff;
  background: var(--green-900);
  border: 1px solid var(--green-900);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(6, 45, 32, .16);
  font-size: 14px;
  font-weight: 840;
}
.load-more-button:hover { background: var(--green-800); }
.load-more-button:disabled {
  cursor: wait;
  opacity: .78;
}
.load-more-button small { color: #bcd0c6; font-size: 10px; font-weight: 700; }
.load-more-button b { display: grid; place-items: center; width: 34px; height: 34px; color: var(--green-950); background: #fff; border-radius: 4px; font-size: 17px; }

.founder-video-slot {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(440px, 1.22fr);
  gap: 0;
  padding: 34px var(--page);
  color: #fff;
  background: #071f19;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.founder-video-copy { display: grid; align-content: center; padding: 20px clamp(24px, 4vw, 58px) 20px 0; }
.founder-video-copy .eyebrow { color: #92bca8; }
.founder-video-copy h2 { margin: 0; font-size: clamp(30px, 3vw, 44px); line-height: .98; letter-spacing: -.045em; }
.founder-video-copy > p:last-child { max-width: 510px; margin: 13px 0 0; color: #bfd0c8; font-size: 13px; }
.founder-video-frame {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: end;
  gap: 16px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background:
    radial-gradient(circle at 80% 12%, rgba(122, 181, 151, .24), transparent 34%),
    linear-gradient(140deg, #143d30 0%, #09251c 58%, #04140f 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.founder-video-frame::before { position: absolute; inset: 18px; border: 1px solid rgba(255, 255, 255, .08); content: ""; pointer-events: none; }
.founder-video-play { position: relative; z-index: 1; flex: 0 0 50px; width: 50px; height: 50px; display: grid; place-items: center; padding-left: 3px; border: 1px solid rgba(255, 255, 255, .54); border-radius: 50%; font-size: 15px; }
.founder-video-frame > div { position: relative; z-index: 1; display: grid; gap: 3px; }
.founder-video-frame strong { font-size: 17px; }
.founder-video-frame small { max-width: 480px; color: #afc8bc; font-size: 11px; line-height: 1.35; }

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 128px;
  padding: 26px var(--page);
  color: var(--white);
  background: var(--green-900);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.closing-cta p { margin: 0 0 4px; color: #9ec1b0; font-size: 11px; font-weight: 780; }
.closing-cta h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); font-weight: 760; line-height: 1; letter-spacing: -.04em; }
.closing-cta > a {
  display: grid;
  grid-template-columns: auto 30px;
  align-items: center;
  min-width: 260px;
  padding: 7px 0 7px 18px;
  border-left: 1px solid rgba(255, 255, 255, .32);
  text-decoration: none;
}
.closing-cta > a span, .closing-cta > a strong { grid-column: 1; }
.closing-cta > a span { color: #9ec1b0; font-size: 10px; font-weight: 720; }
.closing-cta > a strong { margin-top: 2px; font-size: 20px; line-height: 1.1; }
.closing-cta > a b { grid-column: 2; grid-row: 1 / span 2; font-size: 26px; font-weight: 500; }

.gallery-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.gallery-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(3, 18, 13, .87); border: 0; backdrop-filter: blur(12px); }
.gallery-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(1320px, 96vw);
  height: min(860px, 94vh);
  overflow: hidden;
  background: #061b15;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 7px;
  box-shadow: 0 34px 100px rgba(0,0,0,.44);
}
.gallery-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); }
.gallery-header p { margin: 0 0 2px; color: #9bb8aa; font-size: 10px; font-weight: 720; }
.gallery-header h2 { margin: 0; font-size: 21px; line-height: 1.1; }
.gallery-header-actions { display: flex; align-items: center; gap: 9px; }
#gallery-position { min-width: 56px; color: #c8ddd3; font-size: 12px; font-weight: 800; text-align: center; }
.gallery-close { min-height: 44px; padding: 8px 12px; color: var(--white); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.22); border-radius: 4px; font-size: 12px; font-weight: 780; }
.gallery-stage { display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; align-items: center; gap: 9px; min-height: 0; padding: 10px; }
.gallery-stage figure { display: grid; place-items: center; width: 100%; height: 100%; min-height: 0; margin: 0; overflow: hidden; background: #04130f; border-radius: 4px; }
.gallery-stage img { width: 100%; height: 100%; object-fit: contain; }
.gallery-stage figure { touch-action: pan-y; user-select: none; }
.gallery-swipe-hint { display: none; }
.gallery-nav { display: grid; place-items: center; width: 46px; height: 64px; color: var(--white); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: 4px; font-size: 38px; line-height: 1; }
.gallery-nav:disabled { opacity: .35; cursor: default; }
.gallery-thumbnails { display: flex; gap: 7px; min-height: 98px; overflow-x: auto; padding: 8px 14px 12px; border-top: 1px solid rgba(255,255,255,.1); }
.gallery-thumbnails button { flex: 0 0 120px; height: 78px; overflow: hidden; padding: 0; background: #0c2b21; border: 2px solid transparent; border-radius: 3px; }
.gallery-thumbnails button.is-active { border-color: #8fc4aa; }
.gallery-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.gallery-footer { padding: 9px 18px 11px; color: #9db8ab; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.gallery-footer p { margin: 0; }

footer {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(280px, .85fr) minmax(420px, 1.6fr);
  align-items: start;
  gap: 28px;
  padding: 26px var(--page);
  color: #b7c9c0;
  background: var(--green-975);
  font-size: 11px;
}
footer strong { color: var(--white); font-size: 17px; }
footer p { max-width: 720px; margin: 3px 0 0; line-height: 1.42; }
.auto-footer-telegram { display: flex; flex-wrap: wrap; gap: 5px 12px; }
.auto-footer-telegram > span { flex: 0 0 100%; color: #fff; font-size: 12px; font-weight: 850; }
.auto-footer-telegram a { color: #d8e5df; font-size: 11.5px; font-weight: 750; text-underline-offset: 3px; }
.auto-footer-telegram small { flex: 0 0 100%; margin-top: 4px; color: #819c8f; font-size: 10.5px; line-height: 1.35; }
.auto-footer-legal { display: grid; gap: 7px; }
.auto-footer-legal nav { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.auto-footer-legal nav a { color: #fff; font-size: 11px; font-weight: 730; text-underline-offset: 3px; }
.auto-footer-legal > small { color: #93aa9f; font-size: 10.5px; line-height: 1.45; }

@media (max-width: 1360px) {
  .filter-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .reset-button { width: 100%; }
}

@media (max-width: 1240px) {
  .hero { grid-template-columns: minmax(460px, 45%) minmax(0, 55%); }
  .filter-primary { grid-template-columns: 190px minmax(210px, 1.35fr) minmax(130px, .65fr) minmax(130px, .65fr) minmax(175px, .8fr); }
  .filter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --page: 18px; }
  .topbar nav { display: none; }
  .phone-link { margin-left: auto; }
  .hero { grid-template-columns: minmax(390px, 48%) minmax(0, 52%); }
  .hero h1 { font-size: 48px; }
  .hero-copy { padding-right: 34px; }
  .filter-primary { grid-template-columns: 1fr 1fr; }
  .term-filter, .search-field { grid-column: 1 / -1; }
  .sort-field { grid-column: 1 / -1; }
  .filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts div:nth-child(3) { border-left: 0; }
  .facts div:nth-child(n+3) { border-top: 1px solid var(--line); }
  footer { grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); }
  .auto-footer-legal { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --page: 14px; }
  html { scroll-padding-top: 60px; }
  .topbar { min-height: 60px; gap: 8px; padding: 5px var(--page); }
  .brand { width: 142px; }
  .brand img { max-height: 48px; }
  .phone-link { min-width: 0; padding: 6px 0 6px 10px; }
  .phone-link span { display: none; }
  .phone-link strong { font-size: 12px; letter-spacing: -.015em; }

  .hero { display: flex; min-height: 0; flex-direction: column; }
  .hero-copy { padding: 29px var(--page) 24px; }
  .hero-copy::after { display: none; }
  .hero .eyebrow { margin-bottom: 8px; font-size: 10px; }
  .hero h1 { font-size: clamp(39px, 11vw, 47px); line-height: .95; }
  .hero-lead { margin-top: 14px; font-size: 14px; line-height: 1.4; }
  .hero-terms { margin-top: 16px; }
  .hero-terms div { padding: 9px 8px 9px 0; }
  .hero-terms div + div { padding-left: 8px; }
  .hero-terms strong { font-size: 13px; }
  .hero-terms span { font-size: 10px; }
  .hero-actions { margin-top: 17px; }
  .primary-button { width: 100%; min-height: 48px; }
  .hero-phone { display: none; }
  .hero-media { min-height: 224px; height: 224px; flex: 0 0 auto; }
  .hero-media > picture img { object-position: 52% 66%; transform: none; }
  .hero-media-shade { background: linear-gradient(180deg, rgba(3, 17, 13, .02) 52%, rgba(3, 17, 13, .72)); }
  .encar-source { top: 12px; right: var(--page); min-width: 144px; padding: 8px 10px 7px; }
  .encar-source span { font-size: 9px; }
  .encar-source strong { font-size: 25px; }
  .hero-route { right: auto; bottom: 12px; left: var(--page); font-size: 10px; }

  .catalog-section { padding: 37px var(--page) 40px; scroll-margin-top: 60px; }
  .catalog-heading { align-items: start; flex-direction: column; gap: 10px; margin-bottom: 16px; }
  .catalog-heading h2 { font-size: 37px; }
  .catalog-meta { justify-content: start; gap: 8px; margin: 0; font-size: 11px; white-space: normal; }
  .catalog-meta strong { font-size: 12px; }
  .filter-primary { grid-template-columns: 1fr 1fr; gap: 9px; padding: 12px; }
  .term-filter, .search-field { grid-column: 1 / -1; }
  .filters input, .filters select { min-height: 46px; font-size: 16px; }
  .term-button { min-height: 44px; }
  .filter-grid { display: none; grid-template-columns: 1fr 1fr; gap: 9px; padding: 12px; }
  .filter-grid.is-open { display: grid; }
  .reset-button { grid-column: 1 / -1; min-height: 46px; }
  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 47px;
    padding: 10px 12px;
    color: var(--green-900);
    background: var(--white);
    border: 0;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 830;
  }
  .mobile-filter-toggle b { font-size: 21px; font-weight: 500; line-height: 1; }
  .catalog-toolbar { align-items: start; flex-direction: column; gap: 4px; margin: 16px 0 11px; }
  #result-count { font-size: 16px; }
  .catalog-toolbar p:last-child { font-size: 10px; text-align: left; }
  .catalog-swipe-hint { display: flex; align-items: center; justify-content: space-between; margin: 0 0 8px; color: var(--green-800); font-size: 12px; font-weight: 800; }
  .catalog-swipe-hint span { font-size: 18px; }
  .cars-grid {
    display: flex;
    gap: 10px;
    margin-inline: calc(var(--page) * -1);
    padding: 0 var(--page) 9px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-y;
    cursor: grab;
  }
  .cars-grid:active { cursor: grabbing; }
  .cars-grid::-webkit-scrollbar { display: none; }
  .cars-grid .car-card { flex: 0 0 calc(100vw - (var(--page) * 2) - 26px); scroll-snap-align: start; scroll-snap-stop: always; }
  .card-body { padding: 14px; }
  .car-title { font-size: 21px; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts div:nth-child(3) { border-left: 0; }
  .facts div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .price-box { grid-template-columns: 1.15fr .9fr .9fr; }
  .price-box > div { padding: 10px 7px; }
  .price-box strong { font-size: 13px; }
  .price-box .main-price strong { font-size: 20px; }
  .load-more-button { grid-template-columns: 1fr 30px; width: 100%; text-align: left; }
  .load-more-button small { grid-row: 2; }
  .load-more-button b { grid-column: 2; grid-row: 1 / span 2; }

  .closing-cta { align-items: start; min-height: 0; padding: 25px var(--page); flex-direction: column; gap: 20px; }
  .closing-cta h2 { font-size: 31px; }
  .closing-cta > a { width: 100%; min-width: 0; padding: 9px 0 5px; border-top: 1px solid rgba(255, 255, 255, .28); border-left: 0; }

  .gallery-modal { padding: 0; }
  .gallery-panel { width: 100vw; height: 100dvh; border: 0; border-radius: 0; }
  .gallery-header { align-items: start; padding: 11px; }
  .gallery-header h2 { max-width: 190px; font-size: 17px; }
  .gallery-header-actions { gap: 3px; }
  #gallery-position { min-width: 46px; font-size: 11px; }
  .gallery-close { padding-inline: 8px; }
  .gallery-stage { grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 3px; padding: 5px; }
  .gallery-nav { width: 44px; height: 52px; font-size: 31px; }
  .gallery-thumbnails { min-height: 78px; padding: 6px 7px; }
  .gallery-thumbnails button { flex-basis: 92px; height: 60px; }
  .gallery-footer { padding: 7px 11px max(8px, env(safe-area-inset-bottom)); }
  footer { align-items: start; flex-direction: column; gap: 14px; padding: 22px var(--page); }
  footer > p { text-align: left; }
}

@media (max-width: 370px) {
  .brand { width: 132px; }
  .phone-link strong { font-size: 11px; }
  .hero h1 { font-size: 38px; }
  .hero-terms strong { font-size: 12px; }
  .catalog-heading h2 { font-size: 34px; }
  .filter-primary, .filter-grid { grid-template-columns: 1fr; }
  .term-filter, .search-field, .sort-field, .reset-button { grid-column: auto; }
  .price-box { grid-template-columns: 1.2fr 1fr; }
  .price-box .main-price { grid-column: 1 / -1; padding: 9px 0; border-bottom: 1px solid var(--line); }
  .price-box > div:nth-child(2) { padding-left: 0; border-left: 0; }
}

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

/* Unified Умма navigation and production lead intake. */
.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 70px;
}

.umbrella-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  text-decoration: none;
}

.umbrella-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.umbrella-wording {
  display: grid;
  gap: 1px;
  white-space: nowrap;
}

.umbrella-wording strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
}

.umbrella-wording small {
  color: #64736c;
  font-family: Inter, Manrope, Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-size: 8px;
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: .005em;
}

.topbar .family-navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: start;
  gap: 4px;
  margin: 0;
}

.topbar .family-navigation a {
  min-width: 0;
  min-height: 44px;
  display: grid;
  grid-template-columns: 26px minmax(0, auto);
  gap: 5px;
  align-items: center;
  padding: 4px 7px;
  border: 0;
  border-radius: 6px;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 820;
  white-space: nowrap;
}

.topbar .family-navigation a:hover,
.topbar .family-navigation a[aria-current="page"] {
  background: #edf4f0;
}

.topbar .family-navigation a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--green-650);
}

.topbar .family-navigation img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-actions a {
  color: var(--green-900);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.topbar-actions button {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--green-900);
  border-radius: 5px;
  background: var(--green-900);
  color: #fff;
  font-size: 12px;
  font-weight: 820;
}

.hero-phone {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, .64fr);
  gap: 7px;
  margin-top: 12px;
}

.card-actions .gallery-button {
  margin: 0;
}

.car-lead-button {
  min-height: 43px;
  padding: 9px 10px;
  border: 1px solid var(--green-800);
  border-radius: 4px;
  background: #fff;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 830;
}

.car-lead-button:disabled {
  cursor: not-allowed;
  color: #68766f;
  background: #edf0ee;
  border-color: #c9d0cc;
}

.closing-actions {
  min-width: 285px;
  display: grid;
  gap: 6px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.closing-actions button {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: var(--green-950);
  font-weight: 850;
}

.closing-actions a {
  min-height: 46px;
  display: grid;
  place-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  color: #fff;
  text-align: left;
  text-decoration: none;
}

.closing-actions a span,
.closing-actions a strong {
  display: block;
}

.closing-actions a span {
  color: #9ec1b0;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 760;
}

.closing-actions a strong {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
}

.auto-lead-dialog {
  width: min(500px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .44);
}

.auto-lead-dialog::backdrop {
  background: rgba(3, 19, 14, .78);
  backdrop-filter: blur(6px);
}

.auto-dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 5px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.auto-dialog-copy {
  padding: 22px 60px 18px 22px;
  background: var(--green-900);
  color: #fff;
}

.auto-dialog-copy .eyebrow {
  color: #a7c9b8;
}

.auto-dialog-copy h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.03;
}

.auto-dialog-copy > p:not(.eyebrow) {
  margin: 7px 0 0;
  color: #d3e2da;
  font-size: 12px;
}

.auto-dialog-copy .selected-car {
  display: inline-block;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  font-weight: 780;
}

.auto-lead-form {
  display: grid;
  gap: 10px;
  padding: 17px 22px 19px;
}

.auto-lead-form label:not(.auto-consent) {
  display: grid;
  gap: 6px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
}

.auto-lead-form input[type="text"],
.auto-lead-form input[type="tel"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
}

.auto-lead-form [aria-invalid="true"] {
  border-color: #a33a3a;
}

.auto-lead-form small {
  color: #9a3030;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.auto-lead-form small:empty,
.auto-form-status:empty {
  display: none;
}

.auto-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.auto-consent input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--green-650);
}

.auto-consent a {
  color: var(--green-800);
}

.auto-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.auto-lead-submit {
  min-height: 44px;
  border: 1px solid var(--green-900);
  border-radius: 5px;
  background: var(--green-900);
  color: #fff;
  font-weight: 850;
}

.auto-lead-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.auto-form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.auto-form-status.is-success {
  color: var(--green-800);
  font-weight: 780;
}

.auto-form-status.is-error,
.auto-form-status.is-error a {
  color: #8d2929;
}

.auto-cookie-notice {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(720px, calc(100% - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 24px 70px rgba(4, 28, 20, .32);
  transform: translateX(-50%);
  transition: opacity .18s ease, transform .18s ease;
}

.auto-cookie-notice.is-closing {
  opacity: 0;
  transform: translate(-50%, 14px);
}

.auto-cookie-notice strong,
.auto-cookie-notice p {
  display: block;
  margin: 0;
}

.auto-cookie-notice p {
  margin-top: 3px;
  color: #c8d9d1;
  font-size: 11px;
}

.auto-cookie-notice a {
  color: #fff;
  font-size: 10px;
}

.auto-cookie-notice button {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #fff;
  color: var(--green-950);
  font-weight: 850;
}

@media (max-width: 1100px) {
  .topbar .family-navigation a {
    grid-template-columns: 24px minmax(0, 1fr);
    padding-inline: 5px;
    font-size: 10px;
  }

  .topbar .family-navigation img {
    width: 24px;
    height: 24px;
  }

  .topbar-actions > a {
    display: none;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 105px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 44px auto;
    gap: 3px 8px;
    min-height: 104px;
    padding: 4px 10px 7px;
  }

  .umbrella-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    padding-right: 0;
    border-right: 0;
  }

  .umbrella-brand img {
    width: 34px;
    height: 34px;
  }

  .umbrella-wording strong { font-size: 17px; }
  .umbrella-wording small { max-width: 172px; overflow: hidden; font-size: 7.6px; text-overflow: ellipsis; }

  .topbar .family-navigation {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 3px;
  }

  .topbar .family-navigation a {
    min-height: 43px;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 2px;
    justify-content: center;
    padding: 3px;
    overflow: hidden;
    background: #f2f6f3;
    font-size: 9px;
    line-height: 1;
    text-overflow: ellipsis;
  }

  .topbar .family-navigation img {
    width: 18px;
    height: 18px;
  }

  .topbar-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .topbar-actions button {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero-phone {
    display: none;
  }

  .card-actions { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 6px; margin-top: 9px; }
  .card-actions button { min-height: 44px; padding-inline: 7px; font-size: 11px; }

  .founder-video-slot { grid-template-columns: 1fr; gap: 18px; padding: 26px var(--page); }
  .founder-video-copy { padding: 0; }
  .founder-video-copy h2 { font-size: 31px; }
  .founder-video-copy > p:last-child { margin-top: 10px; }
  .founder-video-frame { min-height: 174px; padding: 18px; }
  .founder-video-play { width: 46px; height: 46px; flex-basis: 46px; }

  .closing-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 7px;
    width: 100%;
    min-width: 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-left: 0;
  }

  .closing-actions button,
  .closing-actions a {
    min-height: 52px;
  }

  .closing-actions button {
    padding-inline: 11px;
    font-size: 12px;
  }

  .auto-lead-dialog { width: 100%; max-width: none; max-height: calc(100dvh - 18px); margin: auto 0 0; border-radius: 14px 14px 0 0; }

  .auto-dialog-close { top: 10px; right: 10px; width: 44px; height: 44px; }

  .auto-dialog-copy { padding: 17px 58px 14px 16px; }

  .auto-dialog-copy h2 {
    font-size: 23px;
  }

  .auto-lead-form {
    gap: 9px;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  }

  .auto-lead-form label:not(.auto-consent) { gap: 4px; font-size: 12px; }
  .auto-consent { font-size: 11px; line-height: 1.3; }

  .auto-cookie-notice {
    grid-template-columns: 1fr;
    gap: 9px;
    width: calc(100% - 20px);
    padding: 11px;
  }

  .auto-cookie-notice button {
    width: 100%;
  }

  footer { grid-template-columns: 1fr; gap: 18px; padding: 24px var(--page); }
  .auto-footer-legal nav { gap: 7px 12px; }
}

@media (max-width: 370px) {
  .topbar .family-navigation a {
    grid-template-columns: 1fr;
    grid-template-rows: 16px auto;
    padding-inline: 2px;
    font-size: 9.2px;
  }

  .topbar .family-navigation img {
    width: 16px;
    height: 16px;
  }
}

/* Final phone QA: readable ecosystem tabs and a compact, photo-sized gallery. */
@media (max-width: 700px) {
  html { scroll-padding-top: 110px; }

  .topbar { min-height: 108px; }

  .umbrella-wording small {
    max-width: 176px;
    overflow: visible;
    font-size: 9.5px;
    line-height: 1.05;
    text-overflow: clip;
  }

  .topbar .family-navigation a {
    min-height: 47px;
    grid-template-columns: 1fr;
    grid-template-rows: 18px auto;
    gap: 2px;
    justify-items: center;
    align-content: center;
    padding: 3px 1px;
    overflow: visible;
    font-size: 11px;
    line-height: 1;
    text-align: center;
    text-overflow: clip;
  }

  .gallery-panel {
    width: 100vw;
    height: auto;
    max-height: 100dvh;
    grid-template-rows: auto auto auto auto;
    border: 0;
    border-radius: 0;
  }

  .gallery-stage {
    position: relative;
    display: block;
    padding: 0;
    background: #04130f;
  }

  .gallery-stage figure {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .gallery-stage img {
    width: 100%;
    height: auto;
    max-height: 54dvh;
    margin: 0 auto;
    object-fit: contain;
  }

  .gallery-swipe-hint { display: block; margin: 0; padding: 6px 10px; color: #b9cdc3; background: #061b15; font-size: 11px; font-weight: 740; text-align: center; }

  .gallery-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(4, 25, 19, .78);
    transform: translateY(-50%);
  }

  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}

@media (max-width: 370px) {
  .topbar .family-navigation a { font-size: 10.5px; }
}

/* 2026-08-11 novice-first public UX: clear cabinet entry and readable actions. */
.umbrella-wording small {
  font-size: 12px;
}

.topbar .family-navigation a {
  min-height: 44px;
  font-size: 14px;
}

.topbar-actions a,
.topbar-actions button {
  min-height: 44px;
  font-size: 14px;
}

.topbar-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-cabinet-link {
  padding: 8px 12px;
  border: 1px solid var(--green-800);
  border-radius: 5px;
  background: #fff;
  color: var(--green-900);
  line-height: 1.1;
  font-weight: 850;
  white-space: nowrap;
}

.auto-lead-label-mobile {
  display: none;
}

.primary-button,
.hero-phone,
.car-lead-button,
.card-actions button {
  min-height: 44px;
  font-size: 14px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
}

.auto-dialog-close {
  min-width: 44px;
  width: 44px;
  min-height: 44px;
  height: 44px;
}

.auto-dialog-copy > p:not(.eyebrow),
.auto-lead-form label:not(.auto-consent),
.auto-lead-form small,
.auto-consent,
.auto-form-status {
  font-size: 14px;
}

.auto-consent {
  min-height: 44px;
  align-items: center;
  padding-block: 5px;
  cursor: pointer;
}

.auto-cookie-notice p,
.auto-cookie-notice a,
.auto-cookie-notice button {
  font-size: 14px;
}

.auto-cookie-notice button {
  min-height: 44px;
}

.auto-footer-telegram a,
.auto-footer-legal nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .topbar-actions > .topbar-cabinet-link {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .umbrella-wording small {
    display: none;
  }

  .hero-phone {
    display: none;
  }

  .topbar-actions {
    gap: 6px;
  }

  .topbar-actions > .topbar-cabinet-link {
    min-height: 44px;
    display: inline-flex;
    padding-inline: 9px;
    font-size: 14px;
  }

  .topbar-actions button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 14px;
  }

  .auto-lead-label-desktop {
    display: none;
  }

  .auto-lead-label-mobile {
    display: inline;
  }

  .topbar .family-navigation span {
    font-size: 0;
  }

  .topbar .family-navigation span::after {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 820;
  }

  .topbar .family-navigation a:nth-child(1) span::after { content: "Капитал"; }
  .topbar .family-navigation a:nth-child(2) span::after { content: "Строй"; }
  .topbar .family-navigation a:nth-child(3) span::after { content: "Земля"; }
  .topbar .family-navigation a:nth-child(4) span::after { content: "Авто"; }

  .auto-lead-form label:not(.auto-consent),
  .auto-consent {
    font-size: 14px;
  }
}
