:root {
  --brand: #00818e;
  --dark: #030712;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --st-radius-ui: 12px;
  --st-radius-card: 16px;
  --st-mobile-content-top: 24px;
  --surface: #fff;
  --st-font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
button,
input,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
html {
  font-family: var(--st-font-sans);
  font-synthesis: none;
}
body {
  margin: 0;
  font-family: var(--st-font-sans);
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.header-topbar {
  display: none;
  background: #111827;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 0;
}
@media (min-width: 640px) {
  .header-topbar { display: block; }
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-topbar-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.header-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.header-topbar-icon {
  flex-shrink: 0;
  color: var(--brand);
}

.header-city-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  border: 1px solid #374151;
  background: #1f2937;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: var(--st-font-sans);
  max-width: min(220px, 42vw);
}
.header-city-trigger:hover {
  border-color: #4b5563;
}
.header-city-trigger:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}
.header-city-trigger-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-city-trigger-icon {
  flex-shrink: 0;
  color: #9ca3af;
}

.header-mobile-city-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  margin: 0;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--st-font-sans);
}
.header-mobile-city-btn-cap {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}
.header-mobile-city-btn-val {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.st-city-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.st-city-modal.is-open {
  display: flex;
}
body.is-st-city-modal-open {
  overflow: hidden;
}
.st-city-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 0;
}
.st-city-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin-top: min(5vh, 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
}
.st-city-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 12px;
  border-bottom: 1px solid #f3f4f6;
}
.st-city-modal-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.st-city-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font-family: var(--st-font-sans);
}
.st-city-modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.st-city-modal-search {
  padding: 16px 22px 12px;
}
.st-city-search-wrap {
  position: relative;
}
.st-city-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 44px 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--st-font-sans);
  color: #0f172a;
  background: #f8fafc;
}
.st-city-search-input::placeholder {
  color: #94a3b8;
}
.st-city-search-input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 129, 142, 0.12);
}
.st-city-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
}
.st-city-modal-body {
  padding: 4px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.st-city-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(20px, 4vw, 48px);
  row-gap: 4px;
  align-items: start;
}
.st-city-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
/* Города: как обычный текст темы, без подчёркивания; hover — только цвет бренда */
.st-city-modal .st-city-link,
.st-city-modal .st-city-link:link,
.st-city-modal .st-city-link:visited {
  display: block;
  padding: 6px 0;
  margin: 0;
  border: 0;
  border-bottom: none;
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--st-font-sans);
  color: #0f172a;
  text-align: left;
  text-decoration: none;
  text-underline-offset: unset;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.15s ease;
}
.st-city-modal .st-city-link:hover,
.st-city-modal .st-city-link:focus {
  color: var(--brand);
  text-decoration: none;
  border-bottom: none;
}
.st-city-modal .st-city-link:focus-visible {
  outline: 2px solid rgba(0, 129, 142, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}
.st-city-modal .st-city-link:focus:not(:focus-visible) {
  outline: none;
}
.st-city-modal .st-city-link.is-active {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.st-city-modal--filtering .st-city-link.is-filter-hidden {
  opacity: 0.12;
  pointer-events: none;
}
.st-city-modal--filtering .st-city-link.is-filter-match {
  opacity: 1;
}
.st-city-empty {
  margin: 4px 0 0;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}
@media (max-width: 720px) {
  .st-city-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
}
@media (max-width: 480px) {
  .st-city-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  min-height: 64px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.header-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 200px;
}
.header-logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  white-space: nowrap;
}
.footer-logo-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f8fafc;
}
.df-aux-content {
  margin: 48px auto 64px;
  max-width: 900px;
  color: #0f172a;
}
.df-aux-lead {
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.df-aux-body {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.df-aux-h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 28px 0 12px;
}
.df-aux-pre {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.df-aux-meta {
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.df-aux-cta-note {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 24px;
}
.df-aux-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.df-aux-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.df-aux-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}
.df-aux-specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.df-aux-specs th,
.df-aux-specs td {
  border: 1px solid #e2e8f0;
  padding: 8px 10px;
  text-align: left;
}
.df-aux-specs--rows {
  margin: 0 0 24px;
}
.df-aux-specs-table th {
  width: 38%;
  font-weight: 600;
  color: #64748b;
}
@media (min-width: 640px) {
  .header-logo img { height: 40px; max-width: 220px; }
}

.header-nav-desktop {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
@media (min-width: 1024px) {
  .header-nav-desktop { display: flex; }
}

.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown-wrap:focus-within .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-wrap:hover > .nav-dropdown,
.nav-dropdown-wrap:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-top-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #0f172a;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav-top-link--plain:hover,
.nav-top-link:hover {
  color: var(--brand);
}
.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: currentColor;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 12px;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 60;
}
.nav-dropdown-panel {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  padding: 8px;
  min-width: 200px;
}
.nav-dropdown-panel--wide {
  min-width: 230px;
}

.nav-dropdown-panel a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
  transition: background 0.12s ease, color 0.12s ease;
}
.nav-dropdown-panel a:hover {
  background: #f9fafb;
  color: var(--brand);
}

/* Выпадающее «Сервис» — как React: без uppercase от шапки, «Сервис» + бренд капсом */
.nav-dropdown-panel.nav-dropdown-panel--servis {
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
}
.nav-dropdown-panel.nav-dropdown-panel--servis a {
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 13px;
  color: #111827;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.35;
}
.nav-dropdown-panel.nav-dropdown-panel--servis a:hover {
  background: #f9fafb;
  color: var(--brand);
}
.nav-dropdown-brand {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: #030712;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header-phone { display: inline-flex; }
}
.header-phone-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 0.15s ease;
}
.header-phone:hover .header-phone-number {
  color: var(--brand);
}
.header-phone-caption {
  font-size: 8px;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.header-phone-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: var(--brand);
}
@media (min-width: 768px) {
  .header-phone-mobile { display: none; }
}

.header-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #030712;
  cursor: pointer;
  padding: 0;
  font-family: var(--st-font-sans);
}
@media (min-width: 1024px) {
  .header-menu-toggle { display: none; }
}

.header-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.4);
}
.header-mobile-backdrop[hidden] {
  display: none !important;
}

.header-mobile-panel {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  height: 100%;
  width: min(92vw, 420px);
  max-width: 100%;
  background: #fff;
  box-shadow: 12px 0 40px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.25s ease;
}
.header-mobile-panel[hidden] {
  display: none !important;
}
.site-header.is-mobile-menu-open .header-mobile-panel {
  transform: translateX(0);
}
.site-header.is-mobile-menu-open .header-mobile-backdrop {
  display: block !important;
}

.header-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.header-mobile-close {
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  color: #374151;
}
.header-mobile-logo {
  height: 32px;
  width: auto;
}
.header-mobile-head-phone {
  color: var(--brand);
  display: flex;
  align-items: center;
}

.header-mobile-nav {
  overflow-y: auto;
  padding: 12px 20px 32px;
  flex: 1;
}
.header-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 700;
  font-size: 15px;
  color: #111827;
  text-decoration: none;
}
.header-mobile-link--accent {
  color: var(--brand);
}

.header-mobile-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
  color: #111827;
  cursor: pointer;
  text-align: left;
}
.header-mobile-accordion-btn.is-open .header-mobile-accordion-icon {
  transform: rotate(180deg);
}
.header-mobile-accordion-icon {
  transition: transform 0.2s ease;
  color: #9ca3af;
}

.header-mobile-accordion-panel {
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}
.header-mobile-accordion-panel[hidden] {
  display: none !important;
}
.header-mobile-accordion-panel a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 12px 8px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
}

.header-mobile-group {
  padding: 8px 0 16px;
  border-bottom: 1px solid #f3f4f6;
}
.header-mobile-group a {
  display: flex;
  padding: 12px 0;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
}

/* Блок сервиса в моб. меню — тот же акцент, что и в React */
.header-mobile-group--servis a {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.01em;
}
.header-mobile-group--servis a .nav-dropdown-brand {
  margin-left: 2px;
}

.header-mobile-accordion-panel a .nav-dropdown-brand {
  margin-left: 2px;
}

.header-mobile-link--last {
  border-bottom: none;
}

.header-mobile-cta-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.header-mobile-cta-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.header-mobile-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.header-mobile-contact svg {
  flex-shrink: 0;
  color: var(--brand);
}

.header-mobile-contact:hover {
  color: var(--brand);
}

.header-mobile-cta {
  display: block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

body.is-header-menu-open {
  overflow: hidden;
}

.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo img { display: block; height: 40px; width: auto; max-width: 220px; }
.nav-wrap { display: none; }

/* —— Каталог «Авто в наличии» (как React CatalogPage) —— */
.catalog-page {
  min-height: 100vh;
  background: #fff;
  padding-top: 96px;
  padding-bottom: 80px;
}
.catalog-page-inner {
  max-width: 1280px;
}
.catalog-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9ca3af;
  padding-bottom: 32px;
}
.catalog-breadcrumbs a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}
.catalog-breadcrumbs a:hover {
  color: var(--brand);
}
.catalog-bc-icon {
  flex-shrink: 0;
  opacity: 0.55;
}
.catalog-bc-strong {
  color: #030712;
}
.catalog-bc-trail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-head {
  padding-bottom: 56px;
}
.catalog-h1 {
  margin: 0;
  font-size: clamp(38px, 8vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #030712;
}
.catalog-h1-accent {
  color: var(--brand);
}

.catalog-filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px 32px;
  margin-bottom: 40px;
}
.catalog-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.catalog-pills--brands {
  flex: 1 1 280px;
}
.catalog-type-field {
  flex: 0 1 320px;
  min-width: min(100%, 260px);
}
.catalog-type-field__label {
  display: block;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}
.catalog-type-field__select {
  width: 100%;
  appearance: none;
  border: 1px solid #e5e7eb;
  border-radius: var(--st-radius-ui);
  padding: 12px 40px 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.catalog-type-field__select:hover,
.catalog-type-field__select:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 129, 142, 0.12);
}
@media (max-width: 767px) {
  .catalog-filters-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .catalog-pills--brands,
  .catalog-type-field {
    flex: 1 1 auto;
    min-width: 0;
  }
}
.catalog-pill {
  appearance: none;
  border-radius: var(--st-radius-ui);
  padding: 12px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #f3f4f6;
  background: #fff;
  color: #9ca3af;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.catalog-pill:hover {
  border-color: var(--brand);
  color: #030712;
}
.catalog-pill--active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.catalog-pill--outline {
  background: #fff;
}
.catalog-pills--categories .catalog-pill {
  padding: 10px 16px;
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.35;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.catalog-pills-divider {
  width: 1px;
  height: 28px;
  background: #f3f4f6;
  margin: 0 10px;
  display: none;
}
@media (min-width: 768px) {
  .catalog-pills-divider {
    display: inline-block;
  }
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}
.catalog-main {
  min-width: 0;
  width: 100%;
}
/* Сайдбар фильтров — в drawer (#catalogFilterDrawer), не в сетке страницы */
@media (min-width: 1024px) {
  .catalog-layout:has(> .catalog-sidebar) {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }
  .catalog-layout:has(> .catalog-sidebar) .catalog-sidebar {
    position: sticky;
    top: 112px;
  }
}

.catalog-sidebar-inner {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  padding: 24px;
}
.catalog-sidebar-heading {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111827;
}
.catalog-sidebar-group {
  margin-bottom: 32px;
}
.catalog-sidebar-group:last-child {
  margin-bottom: 0;
}
.catalog-filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #374151;
  cursor: pointer;
}
.catalog-filter-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  border-radius: 4px;
}
.catalog-filter-count {
  color: #9ca3af;
  font-size: 15px;
}

.catalog-toolbar {
  margin-bottom: 28px;
}

.catalog-filter-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid #e5e7eb;
  border-radius: var(--st-radius-ui);
  background: #fff;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--st-font-sans);
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.catalog-filter-open svg {
  color: var(--brand);
}

.catalog-filter-open:hover,
.catalog-filter-open[aria-expanded="true"] {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 129, 142, 0.1);
}

.catalog-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.catalog-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  justify-content: flex-end;
}

.catalog-filter-drawer[hidden] {
  display: none !important;
}

.catalog-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.catalog-filter-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: 100vh;
  max-height: 100dvh;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
}

.catalog-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.catalog-filter-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.catalog-filter-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  border-radius: 999px;
}

.catalog-filter-close:hover {
  background: #f8fafc;
  color: #0f172a;
}

.catalog-filter-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 20px;
}

.catalog-filter-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.catalog-filter-apply {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 12px;
}

.catalog-filter-reset {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--st-font-sans);
}

.catalog-filter-reset:hover {
  color: var(--brand);
}

.catalog-filter-empty {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
}

body.is-catalog-filter-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .catalog-filter-panel {
    width: 100%;
    max-width: none;
  }
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.catalog-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--st-radius-card);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.catalog-card:hover {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.catalog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.catalog-card:hover .catalog-card-media img {
  transform: scale(1.08);
}
.catalog-card-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.catalog-card-body {
  padding: 32px;
}
.catalog-card-brand {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.catalog-card-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.catalog-card-title a {
  color: #030712;
  text-decoration: none;
  transition: color 0.15s ease;
}
.catalog-card:hover .catalog-card-title a {
  color: var(--brand);
}
.catalog-card-meta {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.catalog-card-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 10px;
}
.catalog-card-meta svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}
.catalog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid #f9fafb;
}
.catalog-card-price {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #030712;
}
.catalog-card-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #030712;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease;
}
.catalog-card-arrow:hover {
  background: var(--brand);
}

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}
.catalog-empty--static {
  border: 1px dashed #e5e7eb;
  border-radius: 28px;
}
.catalog-empty-icon {
  color: #f3f4f6;
  margin: 0 auto 24px;
}
.catalog-empty-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #d1d5db;
}
.catalog-empty-text {
  margin: 0;
  font-size: 15px;
  color: #9ca3af;
}
.catalog-reset-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 4px;
}

@media (max-width: 1023px) {
  .catalog-page {
    padding-top: 72px;
  }
  .catalog-sidebar-inner {
    border-radius: 22px;
  }
}

.not-found-page {
  padding: 80px 0 120px;
  text-align: center;
}
.not-found-inner {
  max-width: 520px;
  margin: 0 auto;
}
.not-found-code {
  margin: 0;
  font-size: clamp(56px, 12vw, 88px);
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
}
.not-found-title {
  margin: 20px 0 12px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #030712;
}
.not-found-text {
  margin: 0 0 28px;
  font-size: 16px;
  color: #64748b;
  line-height: 1.5;
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #030712;
  color: #030712;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-outline-dark:hover {
  background: #030712;
  color: #fff;
}

/* —— Карточка техники single st_product (как React ProductPage) —— */
.product-page {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 32px;
}
.product-page-inner {
  max-width: 1280px;
}
.product-not-found {
  text-align: center;
  padding: 96px 20px 120px;
}
.product-not-found-title {
  margin: 0 0 28px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.15s ease;
}
.product-back-link svg {
  transition: transform 0.2s ease;
}
.product-back-link:hover {
  color: var(--brand);
}
.product-back-link:hover svg {
  transform: translateX(-4px);
}

.product-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 112px;
}
.product-main-grid > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .product-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-bottom: 128px;
  }
  .product-gallery {
    position: sticky;
    top: 124px;
  }
}

.product-gallery {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--st-radius-card);
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #f3f4f6;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}
.product-gallery-main img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.product-gallery-thumbs-wrap {
  position: relative;
  margin-top: 16px;
  width: 100%;
  overflow: hidden;
}

.product-gallery-thumbs {
  --pg-thumb-gap: 10px;
  --pg-thumb-visible: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - (var(--pg-thumb-gap) * (var(--pg-thumb-visible) - 1))) / var(--pg-thumb-visible)
  );
  gap: var(--pg-thumb-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 40px;
  margin: 0;
  width: 100%;
}

.product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery-thumb {
  scroll-snap-align: start;
  aspect-ratio: 1;
  width: 100%;
  min-width: 0;
  border-radius: var(--st-radius-ui);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  padding: 0;
  background: #f9fafb;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
  opacity: 1;
  border-color: var(--brand);
}
.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #fff;
  color: #374151;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.product-gallery-nav:hover:not(:disabled) {
  border-color: var(--brand);
  color: var(--brand);
}
.product-gallery-nav:disabled,
.product-gallery-nav[hidden] {
  display: none;
}
.product-gallery-nav--prev {
  left: 0;
}
.product-gallery-nav--next {
  right: 0;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.product-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
}
.product-badge--brand {
  background: var(--brand);
}
.product-badge--dark {
  background: #030712;
}

.product-title {
  margin: 0 0 12px;
  font-size: clamp(36px, 7vw, 42px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #030712;
}
.product-price {
  margin: 0 0 32px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--brand);
}

.product-quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.product-quick-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}
.product-quick-val {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #030712;
  line-height: 1.35;
}

.product-features-wrap {
  padding-top: 8px;
}
.product-features-heading {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9ca3af;
}
.product-features-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .product-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.product-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #374151;
}
.product-feature-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
}
.product-btn-primary {
  flex: 1;
  min-width: 200px;
  justify-content: center;
  border-radius: 999px;
  padding: 20px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 129, 142, 0.35);
  transition: transform 0.12s ease, filter 0.12s ease;
}
.product-btn-primary:hover {
  filter: brightness(1.05);
}
.product-btn-outline {
  flex: 1;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 20px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid #030712;
  color: #030712;
  text-decoration: none;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.product-btn-outline:hover {
  background: #030712;
  color: #fff;
}

.product-mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 32px;
}
@media (min-width: 640px) {
  .product-mini-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.product-mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: var(--st-radius-card);
}
.product-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  color: var(--brand);
}
.product-mini-title {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #030712;
}
.product-mini-desc {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

.product-bundle-section {
  padding: 0 0 96px;
}
.product-bundle-eyebrow {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
}
.product-bundle-title {
  margin: 0 0 20px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.product-bundle-lead {
  margin: 0 0 40px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: #6b7280;
}
.product-bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .product-bundle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-bundle-card {
  display: block;
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}
.product-bundle-card:hover {
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}
.product-bundle-media {
  height: 176px;
  overflow: hidden;
}
.product-bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.product-bundle-card:hover .product-bundle-media img {
  transform: scale(1.05);
}
.product-bundle-card-body {
  padding: 20px;
}
.product-bundle-card-meta {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.product-bundle-card-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.product-bundle-card-text {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}
.product-bundle-card-payload {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
}
.product-bundle-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.product-bundle-ghost {
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #030712;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.product-bundle-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.product-specs-section {
  background: #030712;
  color: #fff;
  padding: 112px 0 120px;
}
.product-specs-eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
}
.product-specs-h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.product-specs-line {
  width: 96px;
  height: 4px;
  background: var(--brand);
  margin-bottom: 56px;
}
.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
}
@media (min-width: 768px) {
  .product-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .product-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.product-spec-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}
.product-spec-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}
.product-spec-value {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.product-advantages {
  padding: 112px 0;
  background: #f9fafb;
}
.product-advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .product-advantages-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 48px;
    align-items: start;
  }
}
.product-adv-h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.product-adv-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.55;
}
.product-adv-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .product-adv-cards {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
.product-adv-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.product-adv-card-icon {
  flex-shrink: 0;
  color: var(--brand);
}
.product-adv-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.product-adv-card-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.5;
}

.product-dongfeng-ss {
  padding: 0 0 80px;
}
.product-dongfeng-h2 {
  margin: 0 0 32px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.product-dongfeng-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (min-width: 768px) {
  .product-dongfeng-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .product-dongfeng-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.product-dongfeng-item {
  display: block;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.product-dongfeng-item:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 129, 142, 0.12);
}
.product-dongfeng-thumb {
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}
.product-dongfeng-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-dongfeng-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-related {
  padding: 112px 0;
}
.product-related-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
}
.product-related-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.product-related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}
.product-related-link:hover {
  color: var(--brand);
}
.product-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .product-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.product-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-related-media {
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 22px;
}
.product-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.product-related-card:hover .product-related-media img {
  transform: scale(1.08);
}
.product-related-name {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.product-related-card:hover .product-related-name {
  color: var(--brand);
}
.product-related-price {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}

/* Zoomlion: карточка товара — компактный заголовок, фиксированная галерея */
.zl-product-page .zl-product-page-title {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}
.zl-product-page .product-gallery {
  position: sticky;
  top: 108px;
  align-self: start;
  z-index: 2;
}
.zl-product-page .product-main-grid {
  align-items: start;
}
@media (min-width: 1024px) {
  .zl-product-page .product-gallery {
    top: 120px;
  }
}

@media (max-width: 1023px) {
  .product-page {
    padding-top: 72px;
  }
  .zl-product-page .product-gallery {
    position: static;
  }
}

.hero { position: relative; overflow: hidden; color: #fff; }
.hero .container { position: relative; z-index: 3; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(3,7,18,.95) 0%, rgba(3,7,18,.9) 36%, rgba(3,7,18,.62) 58%, rgba(3,7,18,.45) 100%); }
.hero-radial { position: absolute; inset: 0; z-index: 2; background: radial-gradient(circle at 18% 22%, rgba(0,194,216,.12), transparent 46%); pointer-events: none; }

.hero-main { background: var(--dark); min-height: calc(100vh - 112px); align-items: center; }
.hero-home .hero-home-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 48px;
  padding-top: 24px;
  padding-bottom: 64px;
}
.hero-home-main { max-width: 768px; margin-left: 0; }
.hero-home .hero-media {
  width: 58%;
  left: auto;
  right: 8%;
  object-fit: contain;
  object-position: right center;
  transform: none;
}
.hero-home .hero-overlay { background: linear-gradient(90deg, rgba(3,7,18,.95) 0%, rgba(3,7,18,.9) 36%, rgba(3,7,18,.62) 58%, rgba(3,7,18,.45) 100%); }
.hero h1 { margin: 0 0 16px; font-size: clamp(38px, 5.8vw, 78px); line-height: .94; text-transform: uppercase; letter-spacing: -.03em; max-width: 860px; font-weight: 700; }
.hero p { margin: 0 0 20px; color: #9ca3af; max-width: 700px; font-size: clamp(14px, 1.1vw, 18px); line-height: 1.42; font-weight: 500; }
.hero-home h1 {
  font-size: 48px;
  line-height: .92;
  letter-spacing: -.04em;
}
.hero-home p {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.625;
  max-width: 576px;
}
.text-brand { color: var(--brand); }
.eyebrow { display: inline-block; margin: 0 0 16px; color: var(--brand); font-size: 10px; text-transform: uppercase; letter-spacing: .34em; font-weight: 700; }
.hero-pill {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  letter-spacing: .3em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
p.eyebrow.hero-pill {
  min-width: 100%;
  font-size: 10px;
}
.hero-pill-text {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  opacity: 1;
  text-transform: uppercase;
}
.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 2px rgba(0, 129, 142, .2);
  flex-shrink: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  padding: 15px 30px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--st-font-sans);
  cursor: pointer;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn:hover { opacity: .92; }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.14); display: inline-flex; align-items: center; }
.btn-with-icon { display: inline-flex; align-items: center; gap: 12px; }
.hero-home .btn {
  font-size: 14px;
  letter-spacing: .1em;
  padding: 16px 32px;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: transparent;
  line-height: 1;
}
.btn-icon svg { display: block; }
.btn-icon-play { padding-left: 1px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 760px; margin-top: 40px; }
.hero-stats article { padding: 12px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); backdrop-filter: blur(12px); }
.hero-stats p { margin: 0 0 4px; font-size: 10px; color: var(--brand); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-stats strong { font-size: 20px; letter-spacing: -.03em; text-transform: uppercase; }

.hero-brand { min-height: calc(100vh - 112px); background: #0f1423; }
.hero-content { height: 100%; min-height: inherit; display: flex; align-items: flex-end; padding-bottom: 56px; }
.hero-brand-inner { max-width: 840px; }
.hero-brand .eyebrow { margin-bottom: 18px; }
.hero-brand h1 { margin-bottom: 16px; font-size: clamp(34px, 4.8vw, 68px); line-height: 1; max-width: 900px; }
.hero-brand p { margin-bottom: 16px; color: rgba(255,255,255,.82); max-width: 700px; font-size: clamp(14px, 1.05vw, 17px); }
.hero-breadcrumbs { margin-bottom: 30px; display: inline-flex; gap: 8px; align-items: center; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.hero-breadcrumbs a { color: inherit; text-decoration: none; }

.section { padding: 74px 0; }
.section h2 { margin: 0 0 22px; font-size: clamp(30px, 3.6vw, 56px); line-height: .98; text-transform: uppercase; letter-spacing: -.025em; font-weight: 700; color: #030712; }
.section-dark { background: #0f1322; color: #fff; }
.section-dark p { color: #bfc7d7; max-width: 760px; margin-bottom: 20px; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  display: block;
  border: 1px solid #eceff4;
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  background: #f8fafc;
  overflow: hidden;
}
.card-image { margin: -24px -24px 18px; height: 180px; overflow: hidden; background: #e7edf6; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card-image img { transform: scale(1.06); }
.card h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.05; text-transform: uppercase; letter-spacing: -.02em; font-weight: 700; }
.card p { margin: 0; color: #64748b; font-size: 15px; line-height: 1.45; font-weight: 500; }
.card:hover { border-color: #d9e0ea; box-shadow: 0 18px 42px rgba(15,23,42,.08); }

.card-grid-brands { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.brand-card { position: relative; border: 1px solid #e5e7eb; border-radius: 36px; background: #fff; height: 288px; padding: 0; }
.brand-card .card-image { margin: 0; height: 100%; }
.brand-card-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(3,7,18,.85), rgba(3,7,18,.2)); z-index: 2; }
.brand-card-content { position: absolute; inset: 0; z-index: 3; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.brand-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.brand-card-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.brand-card h3 { margin: 0; font-size: clamp(36px, 3.4vw, 48px); color: #fff; line-height: 1; font-weight: 700; letter-spacing: -.02em; }
.brand-card-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.brand-card:hover .brand-card-arrow { transform: translateX(4px); }

/* Страница /catalog/ — линейка брендов (как React CatalogBrandsPage) */
.catalog-brands-page {
  background: #fff;
  padding: 96px 0 112px;
}
.catalog-brands-breadcrumbs {
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}
.catalog-brands-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.catalog-brands-breadcrumbs a:hover {
  color: var(--brand);
}
.catalog-brands-breadcrumbs span.sep {
  opacity: 0.45;
}
.catalog-brands-breadcrumbs .current {
  color: #030712;
}
.catalog-brands-head {
  margin-bottom: 56px;
}
.catalog-brands-head .eyebrow {
  margin-bottom: 16px;
}
.catalog-brands-head h1 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #030712;
}

/* ========== HOWO / SDAC / прицепы — паритет с React SPA ========== */
.hero-howo-react .hero-overlay--howo,
.hero-sdak-react .hero-overlay--howo {
  background: rgba(3, 7, 18, 0.55);
}
.hero-brand .hero-lead {
  color: rgba(255, 255, 255, 0.82);
}
.hero-actions--single {
  margin-top: 8px;
}
.hero-actions--single .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.howo-categories-strip {
  padding: 48px 0 36px;
  background: #fff;
}
.howo-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.howo-cat-tile {
  position: relative;
  display: block;
  height: 176px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}
.howo-cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.howo-cat-tile:hover img {
  transform: scale(1.05);
}
.howo-cat-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.8), rgba(3, 7, 18, 0.22), transparent);
  z-index: 1;
  pointer-events: none;
}
.howo-cat-tile__title {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.howo-models-section {
  padding: 0 0 96px;
  background: #fff;
}
.howo-models-heading {
  margin: 0 0 40px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #030712;
}
.howo-models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.howo-model-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 28px;
  padding: 32px;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.howo-model-card:hover {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
  border-color: #e2e8f0;
}
.howo-model-card__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.howo-model-card__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.howo-model-card:hover .howo-model-card__title {
  color: var(--brand);
}
.howo-model-card__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #64748b;
  font-weight: 500;
}
.howo-model-card__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #030712;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.howo-model-card:hover .howo-model-card__arrow {
  background: var(--brand);
}

.sdac-products-section {
  padding: 56px 0 96px;
  background: #f9fafb;
}
.sdac-range-heading {
  margin: 0 0 40px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #030712;
}
.sdac-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.sdac-product-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.35s ease;
}
.sdac-product-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.sdac-product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.sdac-product-card__head h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #030712;
}
.sdac-product-card__ico {
  color: #64748b;
  flex-shrink: 0;
}
.sdac-product-card:hover .sdac-product-card__ico {
  color: var(--brand);
}
.sdac-product-card__visual {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
  margin-bottom: 20px;
}
.sdac-product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.sdac-product-card:hover .sdac-product-card__visual img {
  transform: scale(1.05);
}
.sdac-product-card__text {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #4b5563;
  font-weight: 500;
}
.sdac-product-card__lines {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sdac-product-card__line {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #374151;
  display: flex;
  gap: 16px;
}
.sdac-product-card__line-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  flex-shrink: 0;
}
.sdac-product-card__line-value {
  font-weight: 500;
  color: #111827;
}
.sdac-model-card-lines--hero {
  margin: 0 0 20px;
  padding: 16px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.sdac-model-mass-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
  margin: 0 0 24px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-size: 18px;
  line-height: 1.3;
}
.sdac-model-mass-badge__label,
.sdac-model-mass-badge__value {
  font-weight: 700;
  color: #030712;
  letter-spacing: -0.02em;
}
.sdac-product-card__weight {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #030712;
}

.trail-react-page {
  background: #fff;
  padding: 96px 0 96px;
}
.trail-react-inner {
  max-width: 1280px;
}
.trail-react-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}
.trail-react-bc a {
  color: inherit;
  text-decoration: none;
}
.trail-react-bc a:hover {
  color: var(--brand);
}
.trail-react-bc__sep {
  width: 6px;
  height: 6px;
  border-right: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  transform: rotate(-45deg);
  opacity: 0.6;
}
.trail-react-bc__here {
  color: #030712;
}

.trail-hero-banner {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 64px;
  min-height: 320px;
}
.trail-hero-banner__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .trail-hero-banner__img {
    height: 520px;
  }
}
.trail-hero-banner__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.9) 0%, rgba(3, 7, 18, 0.55) 48%, rgba(3, 7, 18, 0.28) 100%);
  z-index: 1;
}
.trail-hero-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .trail-hero-banner__content {
    padding: 48px;
  }
}
.trail-hero-banner .eyebrow {
  margin-bottom: 14px;
}
.trail-hero-banner__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.trail-hero-banner__lead {
  margin: 0;
  max-width: 768px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
@media (min-width: 768px) {
  .trail-hero-banner__lead {
    font-size: 16px;
  }
}

.trail-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.trail-feature-card {
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 24px;
}
.trail-feature-card__check {
  display: flex;
  color: var(--brand);
  margin-bottom: 14px;
}
.trail-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #374151;
  font-weight: 500;
}

.trail-models-block__eyebrow {
  margin-bottom: 10px;
}
.trail-models-block__title {
  margin: 0 0 36px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #030712;
}
.trail-types-block {
  margin-bottom: 64px;
}
.trail-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 20px;
}
@media (max-width: 1280px) {
  .trail-type-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .trail-type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
  }
}
@media (max-width: 640px) {
  .trail-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
}
.trail-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 360px;
  padding: 36px 18px 32px;
  background: #f2f2f2;
  border-radius: 0;
}
.trail-type-card__title {
  margin: 0 0 28px;
  padding: 0 8px;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0;
  color: #1a1a1a;
  min-height: 0;
  display: block;
}
.trail-type-card__media {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin: 0 0 32px;
  padding: 0 6px;
}
.trail-type-card__media img {
  display: block;
  width: 100%;
  max-width: 280px;
  max-height: 200px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.16));
}
.trail-type-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 148px;
  padding: 13px 28px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: background 0.2s ease;
}
.trail-type-card__btn:hover {
  background: #1a1a1a;
  color: #fff;
}
.trail-category-lead {
  margin: -12px 0 28px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7280;
}
.trail-models-block__title--h1 {
  font-size: clamp(28px, 3.5vw, 48px);
}
.trail-brand-filters {
  margin-bottom: 28px;
}
.trail-brand-section {
  margin-bottom: 48px;
}
.trail-brand-section__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: #030712;
}
.trail-models-empty {
  color: #666;
  font-size: 15px;
}
.trail-models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.trail-model-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 30px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.35s ease;
}
.trail-model-card:hover {
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}
.trail-model-card__media {
  height: 240px;
  overflow: hidden;
}
.trail-model-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.trail-model-card:hover .trail-model-card__media img {
  transform: scale(1.05);
}
.trail-model-card__body {
  padding: 28px;
}
.trail-model-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 163, 173, 0.12);
  color: var(--brand);
  margin-bottom: 12px;
}
.trail-model-card__body h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.trail-model-card__tag {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  font-weight: 500;
}
.trail-model-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
}
.trail-model-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Листинг товаров на /pricepy/{тип}/ — 4 в ряд, компактный заголовок */
.trail-models-block--category .trail-models-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}
.trail-models-block--category .trail-model-card {
  border-radius: 20px;
}
.trail-models-block--category .trail-model-card__media {
  height: 168px;
}
.trail-models-block--category .trail-model-card__body {
  padding: 14px 16px 18px;
}
.trail-models-block--category .trail-model-card__body h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.trail-models-block--category .trail-model-card__tag {
  margin: 0 0 12px;
  font-size: 12px;
}
.trail-models-block--category .trail-model-card__specs {
  margin-bottom: 12px;
  font-size: 10px;
}
@media (max-width: 1280px) {
  .trail-models-block--category .trail-models-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .trail-models-block--category .trail-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========== DONGFENG (React DongfengPage / Model / Superstructure) ========== */
.df-landing { background: #fff; }
.df-landing-hero .hero-overlay--howo { background: rgba(3, 7, 18, 0.55); }
.df-landing-body { padding: 64px 0 96px; }
.df-range-title {
  margin: 0 0 8px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.df-range-rule { width: 96px; height: 4px; background: var(--brand); margin-bottom: 40px; }
.df-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.df-model-tile {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.35s ease;
}
.df-model-tile:hover { box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08); }
.df-model-tile-brand {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}
.df-model-tile-name {
  margin: 6px 0 4px;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--brand);
}
.df-model-tile-meta { margin: 0; font-size: 14px; font-weight: 500; color: #6b7280; }
.df-model-tile-visual {
  display: block;
  height: 176px;
  margin: 16px 0 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.df-model-tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.df-model-tile:hover .df-model-tile-visual img { transform: scale(1.05); }
.df-model-tile-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.df-model-tile-from {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}
.df-model-tile-price {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #030712;
}
.df-model-tile-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.df-model-tile:hover .df-model-tile-arrow {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.df-about { padding: 48px 0 64px; }
.df-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 48px;
  align-items: start;
}
.df-about-h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.df-about-text { margin: 0; display: flex; flex-direction: column; gap: 22px; }
.df-about-text p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 500;
  color: #374151;
}

.df-stats-block { padding: 20px 0 72px; }
.df-stats-layout {
  display: grid;
  grid-template-columns: 1fr 2.15fr;
  gap: 24px;
}
.df-stats-col { display: flex; flex-direction: column; gap: 24px; }
.df-stats-card {
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 28px;
  padding: 32px;
}
.df-stats-eyebrow {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9ca3af;
}
.df-stats-rows { display: flex; flex-direction: column; gap: 18px; }
.df-stat-row { display: flex; align-items: center; gap: 14px; }
.df-stat-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.df-stat-val { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: #030712; }
.df-stat-lab { margin: 2px 0 0; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9ca3af; }

.df-partner-card {
  background: var(--brand);
  border-radius: 28px;
  padding: 32px;
  color: #fff;
}
.df-partner-h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.df-partner-text { margin: 0 0 22px; font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.92); font-weight: 500; }
.df-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.df-partner-link:hover { opacity: 0.92; }

.df-stats-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.df-ip-card {
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 28px;
  padding: 32px;
}
.df-ip-card h4 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.df-ip-card p { margin: 0; font-size: 15px; line-height: 1.55; color: #6b7280; font-weight: 500; }
.df-ip-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--brand);
}
.df-ip-card--wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .df-ip-card--wide {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.df-ip-img { max-height: 192px; width: auto; object-fit: contain; }

.df-adv-section { padding: 48px 0 80px; }
.df-adv-head { text-align: center; margin-bottom: 44px; }
.df-adv-eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brand);
}
.df-adv-h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.df-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.df-adv-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.df-adv-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--brand);
}
.df-adv-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #030712;
}
.df-adv-card p { margin: 0; font-size: 14px; line-height: 1.5; color: #6b7280; font-weight: 500; }

/* Подстраницы модели / надстройки */
.df-model-page { background: #fff; padding-bottom: 64px; }
.df-model-back-wrap { padding-top: 28px; padding-bottom: 12px; }
.df-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
}
.df-back-link:hover { color: var(--brand); }
.df-model-hero { padding-bottom: 48px; }
.df-model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.df-model-gallery { position: sticky; top: 120px; }
.df-model-gallery .product-gallery {
  width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .df-model-gallery .product-gallery {
    position: static;
    top: auto;
  }
}
.df-model-gallery .product-gallery-main {
  border-radius: 40px;
  border-color: #f1f5f9;
  box-shadow: none;
}
.df-model-main-visual {
  aspect-ratio: 4 / 3;
  border-radius: 40px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #f1f5f9;
  margin-bottom: 16px;
}
.df-model-main-visual img { width: 100%; height: 100%; object-fit: cover; }
.df-model-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.df-model-thumb {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #f1f5f9;
  opacity: 0.65;
}
.df-model-thumb img { width: 100%; height: 100%; object-fit: cover; }
.df-model-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.df-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.df-badge--brand { background: var(--brand); color: #fff; }
.df-badge--dark { background: #030712; color: #fff; }
.df-model-h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #030712;
}
.df-model-h1--super { font-size: clamp(32px, 3.8vw, 52px); }
.df-model-price { margin: 0 0 28px; font-size: 28px; font-weight: 700; color: var(--brand); }
.df-model-hero-lead {
  margin: -12px 0 24px;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4b5563;
}
.df-model-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.df-model-spec-label {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}
.df-model-spec-val { margin: 0; font-size: 17px; font-weight: 800; color: #030712; }
.df-model-features-title {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9ca3af;
}
.df-model-features-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.df-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #374151;
}
.df-check { flex-shrink: 0; color: var(--brand); margin-top: 2px; }
.df-model-cta { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 28px; }
.df-btn-wide { flex: 1; min-width: 200px; justify-content: center; }
.df-btn-outline {
  flex: 1;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  border: 2px solid #030712;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #030712;
  text-decoration: none;
}
.df-btn-outline:hover { background: #030712; color: #fff; }
.df-model-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 24px; }
.df-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 28px;
}
.df-mini-ico {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.df-mini-t { margin: 0; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #030712; }
.df-mini-d { margin: 4px 0 0; font-size: 12px; font-weight: 500; color: #6b7280; }

.df-super-section { padding: 48px 0 80px; background: #fff; }
.df-super-h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #030712;
}
.df-super-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.df-super-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.df-super-card:hover { border-color: var(--brand); box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08); }
.df-super-imgwrap {
  position: relative;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
}
.df-super-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  color: #0d9488;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.df-super-badge--cold { color: #0284c7; }
.df-super-badge--cold svg { display: block; }
.df-super-badge--temp { color: #2563eb; letter-spacing: -0.04em; }
.df-super-imgwrap img { width: 100%; height: 100%; object-fit: cover; }
.df-super-title { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: #030712; }

.df-related-section { padding: 56px 0 80px; background: #f9fafb; }
.df-related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.df-related-h2 { margin: 0; font-size: clamp(28px, 3.5vw, 38px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.03em; color: #030712; }
.df-related-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
}
.df-related-all:hover { color: var(--brand); }
.df-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.df-related-card { text-decoration: none; color: inherit; }
.df-related-visual {
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 18px;
}
.df-related-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.df-related-card:hover .df-related-visual img { transform: scale(1.08); }
.df-related-name { margin: 0 0 6px; font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.03em; color: #030712; }
.df-related-card:hover .df-related-name { color: var(--brand); }
.df-related-price { margin: 0; font-size: 16px; font-weight: 800; color: var(--brand); }

.df-super-page { background: #fff; padding-top: 88px; padding-bottom: 80px; }
.df-super-inner { max-width: 1280px; }
.df-super-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}
.df-super-bc a { color: inherit; text-decoration: none; }
.df-super-bc a:hover { color: var(--brand); }
.df-bc-sep {
  width: 6px;
  height: 6px;
  border-right: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  transform: rotate(-45deg);
  opacity: 0.55;
}
.df-bc-here { color: #030712; }
.df-super-main { padding-bottom: 48px; }

.df-stock-section { padding-top: 16px; }
.df-stock-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.df-stock-h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #030712;
}
.df-stock-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.df-stock-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;
  transition: box-shadow 0.35s ease;
}
.df-stock-card:hover { box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08); }
.df-stock-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.df-stock-media {
  height: 176px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 16px;
}
.df-stock-media img { width: 100%; height: 100%; object-fit: cover; }
.df-stock-title { margin: 0 0 8px; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; text-transform: uppercase; color: #030712; }
.df-stock-meta { margin: 0 0 18px; font-size: 13px; font-weight: 500; color: #6b7280; }
.df-stock-foot { display: flex; align-items: center; justify-content: space-between; }
.df-stock-price { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.df-stock-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.df-stock-card:hover .df-stock-arrow {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---------- Zoomlion — паритет с React ZoomlionPage.tsx + вложенные маршруты ---------- */
.zl-landing {
  background: #fff;
}

.zl-landing .zl-hero {
  position: relative;
  height: 800px;
  min-height: 800px;
  padding: 0;
  overflow: hidden;
}

.zl-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zl-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 7, 18, 0.85), rgba(3, 7, 18, 0.55), rgba(3, 7, 18, 0.35));
}

.zl-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  .zl-hero-inner {
    padding-bottom: 80px;
  }
}

.zl-hero-stack {
  width: 100%;
  max-width: 48rem;
}

.zl-hero-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.zl-hero-bc a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.zl-hero-bc a:hover {
  color: #fff;
}

.zl-bc-current {
  color: #fff;
}

.zl-hero-bc .zl-bc-chev {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}

.zl-hero-eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--brand);
}

.zl-hero-h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
  max-width: 48rem;
}

.zl-hero-lead {
  margin: 0 0 32px;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 500;
  line-height: 1.625;
  color: #fff;
  max-width: 48rem;
}

.zl-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--brand);
  text-decoration: none;
  transition: background 0.2s ease;
}

.zl-hero-cta:hover {
  background: #b91c1c;
}

.zl-categories-section {
  padding: 40px 0 56px;
}

@media (min-width: 768px) {
  .zl-categories-section {
    padding: 48px 0 80px;
  }
}

.zl-cat-head {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .zl-cat-head {
    margin-bottom: 56px;
  }
}

.zl-cat-range-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #030712;
}

.zl-cat-range-sub {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  max-width: 42rem;
}

.zl-cat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .zl-cat-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .zl-cat-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.zl-cat-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.zl-cat-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.zl-cat-card-media {
  position: relative;
  height: 176px;
  background: #f9fafb;
}

.zl-cat-card-media-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 16px;
}

.zl-cat-card-img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.zl-cat-card:hover .zl-cat-card-img {
  transform: scale(1.05);
}

.zl-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d1d5db;
  text-align: center;
}

.zl-cat-card-body {
  padding: 20px 24px;
  border-top: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
  .zl-cat-card-body {
    padding: 24px;
  }
}

.zl-cat-card-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.zl-cat-card-title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111827;
}

.zl-cat-card-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.625;
  color: #6b7280;
}

.zl-cat-card-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #6b7280;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.zl-cat-card:hover .zl-cat-card-arrow-btn {
  border-color: var(--brand);
  color: var(--brand);
}

.zl-bottom-split {
  padding: 16px 0 80px;
}

@media (min-width: 768px) {
  .zl-bottom-split {
    padding: 32px 0 112px;
  }
}

.zl-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .zl-split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.zl-split-visual-frame {
  height: 100%;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.zl-split-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.zl-split-panel {
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 32px;
}

@media (min-width: 768px) {
  .zl-split-panel {
    padding: 40px;
  }
}

.zl-split-h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #030712;
}

.zl-split-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.625;
  color: #4b5563;
}

.zl-split-text p {
  margin: 0 0 16px;
}

.zl-split-text p:last-of-type {
  margin-bottom: 0;
}

.zl-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--brand);
  text-decoration: none;
  transition: background 0.2s ease;
}

.zl-split-cta:hover {
  background: #b91c1c;
}

/* ---------- Гео-лендинг (LandingPage.tsx) и бренд в городе (CityBrandPage.tsx) ---------- */
.geo-landing-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030712;
}

.geo-landing-hero-media {
  position: absolute;
  inset: 0;
}

.geo-landing-hero-video,
.geo-landing-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  object-position: center bottom;
}

.geo-landing-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 7, 18, 0.92) 0%, rgba(3, 7, 18, 0.55) 55%, transparent 100%);
}

.geo-landing-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(48px, 10vh, 100px);
  padding-bottom: clamp(56px, 12vh, 120px);
}

.geo-landing-hero-copy {
  max-width: 42rem;
}

.geo-landing-eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand);
}

.geo-landing-h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  max-width: 52rem;
}

.geo-landing-lead {
  margin: 0 0 40px;
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(243, 244, 246, 0.92);
  max-width: 36rem;
}

.geo-landing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
}

.geo-landing-btn-primary {
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.geo-landing-phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.geo-landing-phone-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--brand);
}

.geo-landing-phone-cap {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.95);
}

.geo-landing-phone-num {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.geo-landing-phone-num:hover {
  color: var(--brand);
}

.geo-brands-section {
  padding: clamp(64px, 12vw, 100px) 0 clamp(72px, 14vw, 120px);
  background: #fff;
}

.geo-brands-head {
  margin-bottom: clamp(36px, 6vw, 52px);
}

.geo-brands-kicker {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand);
}

.geo-brands-title {
  margin: 0;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #030712;
}

.geo-brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 34px);
}

@media (min-width: 768px) {
  .geo-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.geo-brand-card {
  position: relative;
  display: block;
  height: 288px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}

.geo-brand-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.geo-brand-card:hover .geo-brand-card-media img {
  transform: scale(1.05);
}

.geo-brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 7, 18, 0.85) 0%, rgba(3, 7, 18, 0.28) 100%);
  z-index: 1;
}

.geo-brand-card-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(22px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.geo-brand-card-pill {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.geo-brand-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.geo-brand-card-name {
  display: block;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

.geo-brand-card-city {
  display: block;
  margin-top: 6px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--brand);
}

.geo-brand-card-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  transition: transform 0.2s ease;
}

.geo-brand-card:hover .geo-brand-card-arrow {
  transform: translateX(4px);
}

.city-brand-hero {
  position: relative;
  min-height: min(620px, calc(100vh - 96px));
  overflow: hidden;
  background: #030712;
}

.city-brand-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-brand-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.55);
}

.city-brand-hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(620px, calc(100vh - 96px));
  padding-bottom: clamp(40px, 7vh, 72px);
}

.city-brand-hero-stack {
  max-width: 52rem;
  padding-top: clamp(72px, 14vh, 140px);
}

.city-brand-eyebrow {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand);
}

.city-brand-h1 {
  margin: 0 0 22px;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.city-brand-h1-line {
  display: inline-block;
}

.city-brand-lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
}

.city-brand-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.city-brand-bc a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.city-brand-bc a:hover {
  color: #fff;
}

.city-brand-bc-chev {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.45);
}

.city-brand-bc-current {
  color: #fff;
}

.city-brand-cta {
  margin-top: 4px;
}

.city-brand-btn-models {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zl-category-page,
.zl-sub-page {
  min-height: 100vh;
  background: #fff;
  padding-bottom: 80px;
}

.zl-category-page .zl-inner,
.zl-sub-page .zl-inner {
  padding-top: 96px;
}

.zl-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.zl-bc a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.zl-bc a:hover {
  color: var(--brand);
}

.zl-bc-here {
  color: #030712;
  font-weight: 700;
}

.zl-bc .zl-bc-chev {
  display: inline-flex;
  flex-shrink: 0;
  color: #d1d5db;
}

.zl-bc--sub {
  margin-bottom: 40px;
}

.zl-cat-h1 {
  margin: 0 0 40px;
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #030712;
}

.zl-cat-h1--compact {
  margin-bottom: 28px;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: -0.03em;
}

.zl-empty-note {
  margin: 0 0 48px;
  font-size: 15px;
  color: #6b7280;
}

.zl-product-excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

.zl-spec-line--price {
  font-weight: 600;
}

.zl-sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 8vw, 88px);
}

@media (min-width: 768px) {
  .zl-sub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .zl-sub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.zl-sub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.25s ease;
}

.zl-sub-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 129, 142, 0.1);
}

.zl-sub-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 208px;
  padding: 16px;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

.zl-sub-card-media img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.zl-sub-card:hover .zl-sub-card-media img {
  transform: scale(1.05);
}

.zl-sub-card-body {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.zl-sub-title {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #030712;
}

.zl-sub-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #9ca3af;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.zl-sub-card:hover .zl-sub-more {
  border-color: var(--brand);
  color: var(--brand);
}

.zl-sub-card-media .zl-ph {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d1d5db;
}

.zl-all-products {
  margin-top: 48px;
}

@media (min-width: 768px) {
  .zl-all-products {
    margin-top: 64px;
  }
}

.zl-section-h2 {
  margin: 0 0 32px;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #030712;
}

.zl-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .zl-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .zl-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.zl-product-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.25s ease;
}

.zl-product-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 129, 142, 0.1);
}

.zl-product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #f9fafb;
  overflow: hidden;
}

.zl-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.zl-product-card:hover .zl-product-visual img {
  transform: scale(1.05);
}

.zl-product-title {
  margin: 0 0 16px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #111827;
}

.zl-product-specs {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #6b7280;
}

.zl-spec-line {
  margin: 8px 0;
}

.zl-spec-val {
  font-weight: 700;
}

.zl-single-product {
  max-width: 24rem;
}

.zl-single-card {
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  padding: 24px;
  transition: box-shadow 0.25s ease;
}

.zl-single-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 129, 142, 0.1);
}

.zl-single-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #f9fafb;
  overflow: hidden;
}

.zl-single-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zl-single-title {
  margin: 0 0 24px;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111827;
}

.zl-single-specs {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #6b7280;
}

.zl-single-specs .zl-spec-line {
  margin: 8px 0;
}
@media (max-width: 980px) {
  .zl-split-grid {
    grid-template-columns: 1fr;
  }
  .zl-hero {
    min-height: 520px;
  }
}

.products-section { background: #fff; padding-top: 88px; }
.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.products-head-main .eyebrow { margin-bottom: 14px; }
.products-head h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: .92;
  letter-spacing: -.03em;
}
.products-title-accent {
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}
.products-head-text {
  margin: 0;
  max-width: 380px;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  border: 1px solid #edf1f6;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #dbe3ee;
  box-shadow: 0 20px 35px rgba(15, 23, 42, .11);
}
.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}
.product-media {
  position: relative;
  height: 198px;
  background: #f8fafc;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s ease;
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1;
}
.product-badge-brand { background: var(--brand); color: #fff; text-transform: uppercase; }
.product-badge-sub { background: #0f172a; color: #fff; text-transform: uppercase; }
.product-card-body { padding: 18px; }
.product-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: 700;
  color: #030712;
}
.product-specs {
  border-top: 1px solid #eceff4;
  border-bottom: 1px solid #eceff4;
  padding: 10px 0;
  margin-bottom: 10px;
}
.product-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.product-spec-row span {
  color: #9ca3af;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.product-spec-row strong {
  margin: 0;
  color: #374151;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}
.product-features { margin-bottom: 14px; }
.product-features p {
  margin: 0 0 6px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-features p span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.product-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.product-card-foot p {
  margin: 0 0 3px;
  color: #9ca3af;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.product-card-foot strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #030712;
  line-height: 1;
}
.product-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #030712;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
}
.product-card:hover .product-card-arrow {
  background: var(--brand);
  transform: translateX(2px);
}
.products-cta-wrap {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.products-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #0f172a;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--st-font-sans);
}
.products-cta span {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .3s ease, border-color .3s ease, transform .3s ease;
}
.products-cta:hover { color: var(--brand); }
.products-cta:hover span {
  border-color: var(--brand);
  transform: translateX(2px);
}

.section-light { background: #fff; }
.partners-section {
  padding: 96px 0;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  overflow: hidden;
}
.partners-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.partners-head h2 {
  font-size: 40px;
  line-height: 1;
  margin: 0;
}
.partners-marquee { position: relative; display: flex; overflow-x: hidden; }
.partners-track {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  padding: 40px 0;
  width: max-content;
  animation: partners-marquee 30s linear infinite;
}
.partner-card {
  width: 240px;
  height: 140px;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: box-shadow .3s ease;
}
.partner-card:hover { box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08); }
.partner-card img {
  max-height: 56px;
  max-width: 180px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
@keyframes partners-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-advantages { background: #f8fafc; }
.section-advantages { padding: 128px 0; }
.section-advantages .eyebrow { text-align: center; display: block; margin-bottom: 16px; }
.section-advantages h2 { text-align: center; margin-bottom: 80px; font-size: clamp(48px, 6vw, 72px); line-height: 1; letter-spacing: -.03em; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.feature-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 20px 35px rgba(148, 163, 184, 0.16);
  transition: box-shadow .3s ease, transform .3s ease;
}
.feature-card:hover { box-shadow: 0 20px 35px rgba(0, 129, 142, 0.18); transform: translateY(-2px); }
.feature-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: background .3s ease, color .3s ease;
}
.feature-card:hover .feature-icon-wrap { background: var(--brand); color: #fff; }
.feature-card h3 { margin: 0 0 16px; font-size: 20px; font-weight: 700; text-transform: uppercase; line-height: 1.05; letter-spacing: -.02em; color: #030712; }
.feature-card p { margin: 0; color: #6b7280; font-size: 14px; line-height: 1.6; font-weight: 500; }

.sinotruk-section {
  padding: 128px 0;
  background: #111827;
  color: #fff;
  overflow: visible;
}
.sin-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 96px;
  align-items: center;
}
.sin-intro h2 {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.sin-intro p {
  margin: 0;
  max-width: 560px;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}
.sin-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.sin-mini-card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 24px;
  min-width: 0;
  overflow: visible;
}
.sin-mini-icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.sin-mini-card h4 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-weight: 700;
}
.sin-mini-card p {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.55;
  font-weight: 500;
}

.sin-wide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 96px;
}
.sin-wide-card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  min-width: 0;
  overflow: visible;
}
.sin-wide-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 700;
}
.sin-wide-card h4 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-weight: 700;
}
.sin-wide-card p {
  margin: 0;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.65;
}

.sin-tech-list { display: grid; gap: 128px; }
.sin-tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.sin-tech-row.is-reverse .sin-tech-media { order: 2; }
.sin-tech-row.is-reverse .sin-tech-content { order: 1; }
.sin-tech-media {
  border-radius: 60px;
  overflow: hidden;
  min-height: 320px;
}
.sin-tech-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sin-tech-content { display: flex; flex-direction: column; justify-content: center; }
.sin-tech-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .35em;
  font-weight: 700;
  margin-bottom: 20px;
}
.sin-tech-label::before {
  content: "";
  width: 64px;
  height: 4px;
  background: var(--brand);
}
.sin-tech-content h3 {
  margin: 0 0 24px;
  font-size: 48px;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-weight: 700;
}
.sin-tech-content p {
  margin: 0;
  color: #9ca3af;
  font-size: 20px;
  line-height: 1.65;
  max-width: 620px;
}
.sin-tech-icon {
  margin-top: 32px;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.sin-tech-row .sin-tech-media.reveal-on-scroll {
  transform: translateX(-42px);
}
.sin-tech-row .sin-tech-content.reveal-on-scroll {
  transform: translateX(42px);
}
.sin-tech-row.is-reverse .sin-tech-media.reveal-on-scroll {
  transform: translateX(42px);
}
.sin-tech-row.is-reverse .sin-tech-content.reveal-on-scroll {
  transform: translateX(-42px);
}
.sin-tech-row .sin-tech-media.reveal-on-scroll.is-visible,
.sin-tech-row .sin-tech-content.reveal-on-scroll.is-visible {
  transform: translateX(0);
}

.leasing-section { background: #fff; padding: 128px 0; overflow: hidden; }
.leasing-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 60px;
  min-height: 600px;
  background: #030712;
  display: flex;
  align-items: center;
}
.leasing-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.leasing-overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(3,7,18,.96) 0%, rgba(3,7,18,.9) 46%, rgba(3,7,18,.72) 100%); }
.leasing-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.leasing-content .eyebrow {
  margin: 0 0 24px;
  font-size: 10px;
  letter-spacing: .4em;
}
.leasing-content h2 {
  color: #fff;
  max-width: 680px;
  margin: 0 0 32px;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 700;
}
.leasing-content p {
  color: #9ca3af;
  max-width: 440px;
  font-size: 18px;
  line-height: 1.56;
  font-weight: 500;
  margin: 0 0 48px;
}
.leasing-content .btn {
  font-size: 14px;
  letter-spacing: .12em;
  padding: 20px 40px;
  line-height: 1;
}
.leasing-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.leasing-stats article { border: 1px solid rgba(255,255,255,.1); border-radius: 32px; background: rgba(255,255,255,.05); padding: 32px; }
.leasing-stats p { margin: 0 0 4px; font-size: 10px; color: #6b7280; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.leasing-stats strong { font-size: 36px; color: #fff; font-weight: 700; letter-spacing: -.03em; line-height: 1; text-transform: uppercase; }

.home-service-section {
  position: relative;
  background: #030712;
  color: #fff;
  padding: 128px 0;
  overflow: hidden;
}
.home-service-glow {
  position: absolute;
  top: -10%;
  right: -15%;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 129, 142, .14) 0%, transparent 68%);
  pointer-events: none;
}
.home-service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.home-service-copy .eyebrow {
  margin: 0 0 24px;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--brand);
}
.home-service-copy h2 {
  margin: 0 0 48px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.home-service-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home-service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.home-service-check {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.home-service-check svg { display: block; }
.home-service-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}
.home-service-item p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}
.btn-service-cta {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #030712;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--st-font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1.2;
}
.btn-service-cta:hover {
  background: var(--brand);
  color: #fff;
}
.home-service-visual { position: relative; }
.home-service-photo-wrap {
  position: relative;
  border-radius: 60px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #0f172a;
}
.home-service-photo-wrap > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 60px;
}
.home-service-badge {
  position: absolute;
  left: -28px;
  bottom: -28px;
  background: var(--brand);
  padding: 28px 36px;
  border-radius: 36px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, .35);
}
.home-service-badge-icon {
  display: flex;
  color: #fff;
  margin-bottom: 12px;
}
.home-service-badge-num {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.home-service-badge-cap {
  margin: 10px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}

.news-section { background: #fff; padding: 128px 0; overflow: hidden; }
.news-head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.news-head-main { max-width: 42rem; }
.news-head-main .eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--brand);
}
.news-head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #030712;
}
.news-all-link {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 4px;
}
.news-all-link span { display: inline-flex; }
.news-all-link:hover { color: var(--brand); }
.news-all-link:hover svg { transform: translateX(3px); }
.news-all-link svg { transition: transform .25s ease; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.news-card {
  position: relative;
  text-align: left;
}
.news-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.news-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1f5f9;
  margin-bottom: 24px;
}
.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
  display: block;
  transition: transform .7s ease;
}
.news-card:hover .news-card-media img { transform: scale(1.05); }
.news-card-body { position: relative; z-index: 1; }
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.news-card-meta svg { flex-shrink: 0; color: var(--brand); }
.news-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #030712;
}
.news-card:hover h3 { color: var(--brand); }
.news-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 768px) {
  .news-all-link { display: inline-flex; }
}

.home-cta {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  text-align: center;
  color: #fff;
  padding: 120px 0;
}
.home-cta-texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  background-repeat: repeat;
  pointer-events: none;
}
.home-cta-inner {
  position: relative;
  z-index: 1;
}
.home-cta h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.home-cta h2 br { display: block; }
.home-cta p {
  margin: 0 auto 40px;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(13px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.home-cta-btn {
  min-width: 220px;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--st-font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.home-cta-btn-dark {
  background: #030712;
  color: #fff;
}
.home-cta-btn-light {
  background: #fff;
  color: #030712;
}

.btn-dark { background: #030712; color: #fff; }
.btn-white { background: #fff; color: #030712; }

.page-content { padding: 32px 0 72px; }

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

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 72px 0 32px;
  background: #050a12;
  color: #8a8a8a;
  overflow: hidden;
}
.site-footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -42deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.028) 10px,
    rgba(255, 255, 255, 0.028) 11px
  );
  pointer-events: none;
}
.site-footer-inner {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-brand .footer-logo-link img {
  display: block;
  width: min(220px, 100%);
  height: auto;
}
.footer-desc {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #b8bcc4;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.footer-heading {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.footer-contact-icon {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 2px;
}
.footer-contact-dot {
  font-size: 20px;
  line-height: 1;
  margin-top: -2px;
}
.footer-contacts a {
  color: inherit;
  text-decoration: none;
}
.footer-contacts a:hover {
  color: #fff;
}
.footer-newsletter-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
}
.footer-newsletter-form {
  display: flex;
  align-items: stretch;
  max-width: 340px;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 4px 4px 4px 18px;
}
.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #e2e8f0;
  font-size: 14px;
  outline: none;
}
.footer-newsletter-form input::placeholder {
  color: #64748b;
}
.footer-newsletter-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.footer-newsletter-btn:hover {
  filter: brightness(1.08);
}
.footer-disclaimer {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 920px;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}
.footer-copy {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.footer-legal a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #fff;
}

.site-floats {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.site-scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 10, 18, 0.75);
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--st-font-sans);
  backdrop-filter: blur(8px);
  transition: background 0.15s ease, color 0.15s ease;
}
.site-scroll-top:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.site-chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--st-font-sans);
  box-shadow: 0 10px 30px rgba(0, 163, 173, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.site-chat-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.lead-modal { position: fixed; inset: 0; z-index: 1100; display: none; }
.lead-modal.is-open { display: block; }
.lead-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.58); z-index: 1; }
.lead-dialog {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: 6vh auto;
  max-width: 640px;
  width: calc(100% - 32px);
  max-height: 88vh;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}
.lead-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  padding: 20px 20px 12px;
  position: relative;
  z-index: 20;
  background: #fff;
  border-radius: 16px 16px 0 0;
}
.lead-dialog-title {
  margin: 0;
  padding-right: 8px;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.lead-close {
  position: relative;
  z-index: 30;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.lead-close:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #f8fafc;
}
.lead-close svg {
  display: block;
  pointer-events: none;
}
.lead-dialog-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 16px 20px;
  -webkit-overflow-scrolling: touch;
}
.lead-form-panel[hidden] {
  display: none !important;
}
.lead-form-panel {
  min-height: 120px;
}
/* Заголовок Bitrix24 внутри embed — дублирует наш, скрываем */
.lead-dialog-body .b24-form-header,
.lead-dialog-body .b24-form-title {
  display: none !important;
}
.lead-dialog .b24-form,
.lead-dialog iframe {
  max-width: 100%;
}
/* Кнопка закрытия Bitrix24 внутри формы — дублирует нашу в шапке */
.lead-dialog-body .b24-form-btn-close {
  display: none !important;
}

@media (max-width: 1200px) {
  .header-nav-desktop { gap: 16px; letter-spacing: .07em; font-size: 10px; }
  .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners-head h2 { font-size: 34px; }
  .section-advantages h2 { margin-bottom: 56px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .feature-card { border-radius: 30px; padding: 30px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 34px; }
  .products-head h2 { font-size: 54px; }
  .products-head-text { max-width: 680px; font-size: 16px; }
  .sin-top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .sin-intro h2 { font-size: 60px; }
  .sin-intro p { font-size: 16px; max-width: 100%; }
  .sin-wide-grid { grid-template-columns: 1fr; margin-bottom: 64px; }
  .sin-tech-row { grid-template-columns: 1fr; gap: 32px; }
  .sin-tech-row.is-reverse .sin-tech-media,
  .sin-tech-row.is-reverse .sin-tech-content { order: initial; }
  .sin-tech-media { min-height: 320px; border-radius: 36px; }
  .sin-tech-content h3 { font-size: 48px; }
  .sin-tech-content p { font-size: 17px; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-newsletter {
    grid-column: 1 / -1;
  }
  .footer-newsletter-form {
    max-width: 420px;
  }
}

@media (max-width: 980px) {
  .header-topbar { display: none; }
  .hero-main, .hero-brand { min-height: 78vh; }
  .hero-home .hero-home-container { padding-top: 16px; padding-bottom: 40px; }
  .hero-home-main { max-width: 100%; }
  .hero-home .hero-media { width: 70%; right: 0; }
  .hero-content { padding-bottom: 48px; }
  .hero-stats { grid-template-columns: 1fr; max-width: 340px; margin-top: 22px; }
  .section { padding: 58px 0; }
  .card-grid, .card-grid-brands { grid-template-columns: 1fr; }
  .howo-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .howo-models-grid { grid-template-columns: 1fr; }
  .sdac-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trail-features-grid { grid-template-columns: 1fr; }
  .trail-models-grid { grid-template-columns: 1fr; }
  .trail-models-block--category .trail-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trail-hero-banner__img { height: 360px; }
  .trail-react-page { padding: 72px 0 80px; }
  .df-models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .df-about-grid { grid-template-columns: 1fr; gap: 28px; }
  .df-stats-layout { grid-template-columns: 1fr; }
  .df-adv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .df-model-grid { grid-template-columns: 1fr; }
  .df-model-gallery { position: static; }
  .df-model-features-grid { grid-template-columns: 1fr; }
  .df-super-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .df-related-grid { grid-template-columns: 1fr; }
  .df-stock-grid { grid-template-columns: 1fr; }
  .catalog-brands-page { padding: 72px 0 88px; }
  .catalog-brands-head { margin-bottom: 40px; }
  .catalog-brands-head h1 { font-size: clamp(36px, 9vw, 52px); }
  .products-section { padding-top: 54px; }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-media { height: 220px; }
  .leasing-section { padding: 74px 0; }
  .leasing-wrap { min-height: 520px; border-radius: 36px; }
  .leasing-content { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .leasing-content h2 { font-size: 32px; margin-bottom: 20px; }
  .leasing-content p { margin-bottom: 28px; font-size: 16px; }
  .leasing-stats article { border-radius: 24px; padding: 22px; }
  .leasing-stats strong { font-size: 30px; }
  .news-section { padding: 74px 0; }
  .news-grid { grid-template-columns: 1fr; gap: 28px; }
  .news-head { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .news-head h2 { font-size: 46px; }
  .news-all-link { display: inline-flex; }
  .home-service-section { padding: 74px 0; }
  .home-service-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-service-photo-wrap { overflow: hidden; }
  .home-service-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -56px 12px 0;
    display: inline-block;
  }
  .home-cta {
    padding: 88px 0;
  }
  .site-footer {
    padding: 56px 0 28px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .howo-cat-grid { grid-template-columns: 1fr; }
  .trail-models-block--category .trail-models-grid {
    grid-template-columns: 1fr;
  }
  .sdac-products-grid { grid-template-columns: 1fr; }
  .df-models-grid { grid-template-columns: 1fr; }
  .df-adv-grid { grid-template-columns: 1fr; }
  .df-stats-cards { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .hero-actions .btn-ghost {
    width: auto;
    min-width: min(100%, 280px);
  }
  .header-main { min-height: 60px; padding: 10px 0; }
  .header-logo img { height: 28px; max-width: 160px; }
  .logo img { height: 28px; max-width: 160px; }
  .hero-main, .hero-brand { min-height: 72vh; }
  .hero-home .hero-home-container { padding-top: 12px; padding-bottom: 28px; }
  .hero-home .hero-media { width: 90%; opacity: .45; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; margin-bottom: 16px; }
  .hero-breadcrumbs { margin-bottom: 20px; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-newsletter {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-cta {
    padding: 64px 0;
  }
  .home-cta-btn {
    width: 100%;
    min-width: 0;
  }
  .site-floats {
    right: 12px;
    bottom: 16px;
  }
  .card h3 { font-size: 22px; }
  .products-head h2 { font-size: 40px; }
  .products-head-text { font-size: 14px; }
  .product-card h3 { font-size: 24px; }
  .product-card-foot strong { font-size: 20px; }
  .products-cta { font-size: 10px; letter-spacing: .18em; gap: 10px; }
  .products-cta span { width: 30px; height: 30px; }
  .home-service-section { padding: 58px 0; }
  .home-service-copy h2 { font-size: 30px; margin-bottom: 28px; }
  .home-service-list { gap: 20px; margin-bottom: 28px; }
  .home-service-item { gap: 16px; }
  .home-service-check { width: 42px; height: 42px; }
  .btn-service-cta { width: 100%; justify-content: center; padding: 18px 24px; font-size: 12px; }
  .home-service-photo-wrap > img { border-radius: 36px; }
  .home-service-photo-wrap { border-radius: 36px; }
  .home-service-badge { padding: 20px 24px; border-radius: 28px; margin: -40px 8px 0; }
  .home-service-badge-num { font-size: 24px; }
  .news-section { padding: 58px 0; }
  .news-head h2 { font-size: 34px; }
  .news-card-media { margin-bottom: 18px; }
  .news-card-media img { padding: 22px; }
  .news-card h3 { font-size: 16px; }
  .section-advantages { padding: 72px 0; }
  .section-advantages h2 { font-size: 40px; margin-bottom: 36px; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { border-radius: 24px; padding: 24px; }
  .sinotruk-section { padding: 72px 0; }
  .sin-cards-grid { grid-template-columns: 1fr; }
  .sin-mini-card { border-radius: 18px; padding: 16px; }
  .sin-wide-card { border-radius: 24px; padding: 20px; gap: 16px; }
  .sin-wide-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 18px; }
  .sin-wide-card h4 { font-size: 22px; }
  .sin-wide-card p { font-size: 14px; }
  .sin-tech-list { gap: 56px; }
  .sin-tech-label { font-size: 10px; letter-spacing: .2em; }
  .sin-tech-label::before { width: 40px; height: 3px; }
  .sin-tech-content h3 { font-size: 44px; margin-bottom: 14px; }
  .sin-tech-content p { font-size: 15px; }
  .sin-tech-icon { width: 60px; height: 60px; border-radius: 16px; font-size: 24px; margin-top: 20px; }
  .leasing-section { padding: 58px 0; }
  .leasing-wrap { min-height: 0; border-radius: 28px; }
  .leasing-content { padding: 24px; gap: 14px; }
  .leasing-content .eyebrow { margin-bottom: 14px; }
  .leasing-content h2 { font-size: 30px; margin-bottom: 14px; }
  .leasing-content p { font-size: 15px; margin-bottom: 22px; }
  .leasing-content .btn { padding: 16px 24px; font-size: 12px; }
  .leasing-stats { gap: 10px; }
  .leasing-stats article { border-radius: 20px; padding: 16px; }
  .leasing-stats strong { font-size: 24px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 768px) {
  .hero-home h1 { font-size: 72px; }
  .leasing-content { padding: 96px; }
  .leasing-content h2 { font-size: 60px; }
}

@media (min-width: 1024px) {
  .hero-home h1 { font-size: 96px; }
  .hero-home .hero-home-container { padding-top: 8px; padding-bottom: 0; }
  .sin-tech-media { min-height: 460px; }
}

@media (min-width: 768px) {
  .sin-intro h2 { font-size: 60px; }
  .sin-tech-content h3 { font-size: 72px; }
}

@media (min-width: 1280px) {
  .sin-intro h2 { font-size: 72px; }
}

/* —— SITRAK landing (/sitrak) & category child pages —— */
.sitrak-landing-hero {
  min-height: max(620px, calc(100vh - 96px));
}
.sitrak-landing-hero .hero-overlay {
  background: rgba(3, 7, 18, 0.55);
}
.sitrak-cats-section {
  padding: 48px 0 64px;
}
.sitrak-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.sitrak-cat-grid--csv {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (max-width: 1023px) {
  .sitrak-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sitrak-cat-grid--csv {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 639px) {
  .sitrak-cat-grid {
    grid-template-columns: 1fr;
  }
}
.sitrak-cat-tile {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  height: 176px;
  text-decoration: none;
}
.sitrak-cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.sitrak-cat-tile:hover img {
  transform: scale(1.05);
}
.sitrak-cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.82), rgba(3, 7, 18, 0.22), transparent);
  pointer-events: none;
}
.sitrak-cat-tile-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
.sitrak-models-section {
  padding-bottom: 96px;
}
.sitrak-models-head {
  margin-bottom: 40px;
}
.sitrak-models-head h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #030712;
}
.sitrak-models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 767px) {
  .sitrak-models-grid {
    grid-template-columns: 1fr;
  }
}
.sitrak-model-card {
  display: block;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease;
}
.sitrak-model-card:hover {
  box-shadow: 0 24px 48px rgba(0, 129, 142, 0.08);
}
.sitrak-model-card-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.sitrak-model-card h3 {
  margin: 0 0 12px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #030712;
  transition: color 0.2s ease;
}
.sitrak-model-card:hover h3 {
  color: var(--brand);
}
.sitrak-model-card p {
  margin: 0;
  color: #6b7280;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.sitrak-model-card-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #030712;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.sitrak-model-card:hover .sitrak-model-card-arrow {
  background: var(--brand);
}

.sitrak-category-page {
  padding-bottom: 64px;
}
.sitrak-cat-banner-wrap {
  margin-bottom: 40px;
}
.sitrak-cat-banner {
  position: relative;
  min-height: min(72vh, 720px);
  overflow: hidden;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.sitrak-cat-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sitrak-cat-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 7, 18, 0.78) 0%,
    rgba(3, 7, 18, 0.48) 55%,
    transparent 100%
  );
  z-index: 1;
}
.sitrak-cat-banner-inner {
  position: relative;
  z-index: 2;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  padding-top: 48px;
}
.sitrak-cat-banner-inner .eyebrow {
  color: var(--brand);
  margin-bottom: 16px;
}
.sitrak-cat-banner-inner h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.sitrak-cat-banner-inner .lead {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.2vw, 17px);
  max-width: 640px;
  font-weight: 500;
}
.sitrak-cat-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.sitrak-cat-banner-actions .btn {
  border-radius: 999px;
}
.sitrak-cat-banner-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.sitrak-cat-banner-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}
.sitrak-cat-banner-nav a {
  color: inherit;
  text-decoration: none;
}
.sitrak-cat-banner-nav a:hover {
  color: #fff;
}
.sitrak-cat-banner-nav span.sep {
  opacity: 0.6;
}

.sitrak-formula-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.sitrak-formula-btn {
  min-width: 76px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: #374151;
}
.sitrak-formula-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.sitrak-formula-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.sitrak-cat-main h2.sitrak-cat-models-title {
  margin: 0 0 40px;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sitrak-cat-empty {
  margin: 0 0 48px;
  font-size: 16px;
  color: #6b7280;
}

.sitrak-cat-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  .sitrak-cat-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 639px) {
  .sitrak-cat-products {
    grid-template-columns: 1fr;
  }
}
.sitrak-cat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.sitrak-cat-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
}
.sitrak-cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sitrak-cat-card:hover .sitrak-cat-card-media img {
  transform: scale(1.05);
}
.sitrak-cat-card-body {
  padding: 24px;
}
.sitrak-cat-card-body h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--brand);
}
.sitrak-cat-card-specs {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: #374151;
  white-space: pre-line;
}
.sitrak-cat-card-price {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.sitrak-cat-why {
  background: #f9fafb;
  border-radius: 40px;
  padding: 48px 24px 56px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .sitrak-cat-why {
    padding: 64px 40px 72px;
  }
}
.sitrak-cat-why-head {
  text-align: center;
  margin-bottom: 48px;
}
.sitrak-cat-why-head .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.sitrak-cat-why-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.sitrak-cat-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1023px) {
  .sitrak-cat-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 639px) {
  .sitrak-cat-why-grid {
    grid-template-columns: 1fr;
  }
}
.sitrak-cat-why-card {
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.sitrak-cat-why-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand);
}
.sitrak-cat-why-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.sitrak-cat-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

.sitrak-cat-leasing-dark {
  background: #030712;
  border-radius: 40px;
  padding: 40px 28px;
  margin-bottom: 0;
  overflow: hidden;
}
.sitrak-cat-leasing-dark .eyebrow {
  color: var(--brand);
  margin-bottom: 16px;
}
.sitrak-cat-leasing-dark h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sitrak-cat-leasing-dark .lead {
  margin: 0 0 32px;
  color: #9ca3af;
  font-size: 17px;
  max-width: 520px;
}
.sitrak-cat-leasing-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.sitrak-cat-leasing-stats article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
}
.sitrak-cat-leasing-stats p.label {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}
.sitrak-cat-leasing-stats p.val {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
@media (min-width: 1024px) {
  .sitrak-cat-leasing-dark {
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

/* --- Сервис (/servis/, /servis/sitrak/ …) — паритет с React ServicePage / ServiceDirectionPage --- */
.st-svc-page {
  padding-top: clamp(72px, 10vw, 96px);
  padding-bottom: 56px;
  background: #fff;
  color: #111827;
}

.st-svc-inner {
  max-width: 1280px;
}

.st-svc-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.st-svc-crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.st-svc-crumb a:hover {
  color: var(--brand);
}

.st-svc-crumb .st-svc-chevron {
  color: #9ca3af;
  flex-shrink: 0;
}

.st-svc-section {
  padding-bottom: 48px;
}

.st-svc-kicker {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--brand);
}

.st-svc-home-head {
  text-align: center;
  margin-bottom: 56px;
}

.st-svc-h1 {
  margin: 0 0 32px;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #030712;
}

.st-svc-h1-break br {
  display: none;
}

@media (min-width: 768px) {
  .st-svc-h1-break br {
    display: inline;
  }
}

.st-svc-lead {
  margin: 0 auto;
  max-width: 56rem;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.65;
  color: #6b7280;
}

.st-svc-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .st-svc-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-svc-stat-card {
  border-radius: 28px;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  padding: 32px;
}

.st-svc-stat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 129, 142, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.st-svc-stat-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  color: #030712;
}

.st-svc-stat-desc {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.st-svc-split2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .st-svc-split2 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.st-svc-panel {
  border: 1px solid #f3f4f6;
  border-radius: 30px;
  padding: 32px 36px;
  background: #fff;
}

.st-svc-panel--dark {
  background: #030712;
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.st-svc-block-title {
  margin: 0 0 32px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #030712;
}

.st-svc-block-title--light {
  color: #fff;
}

.st-svc-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.st-svc-checkrow {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.st-svc-checkrow p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #4b5563;
}

.st-svc-checkrow--sm p {
  font-size: 14px;
}

.st-svc-checkrow .st-svc-check {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brand);
}

.st-svc-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.st-svc-step {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
}

.st-svc-step-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.st-svc-step-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.st-svc-brands-head {
  margin-bottom: 40px;
}

.st-svc-brands-title {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #030712;
}

.st-svc-brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 72px;
}

@media (min-width: 768px) {
  .st-svc-brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-svc-brand-card {
  border-radius: 30px;
  border: 1px solid #f3f4f6;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.st-svc-brand-card:hover {
  box-shadow: 0 24px 48px rgba(0, 129, 142, 0.12);
}

.st-svc-brand-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.st-svc-brand-media {
  height: 208px;
  overflow: hidden;
}

.st-svc-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.st-svc-brand-link:hover .st-svc-brand-media img {
  transform: scale(1.05);
}

.st-svc-brand-body {
  padding: 24px;
}

.st-svc-brand-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #030712;
}

.st-svc-brand-text {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #6b7280;
}

.st-svc-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.st-svc-brand-cta .st-svc-arrow {
  transition: transform 0.2s ease;
}

.st-svc-brand-link:hover .st-svc-brand-cta .st-svc-arrow {
  transform: translateX(4px);
}

.st-svc-trust {
  border-radius: 36px;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  padding: 40px 36px;
}

.st-svc-trust-title {
  margin: 0 0 24px;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #030712;
}

.st-svc-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .st-svc-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-svc-trust-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.st-svc-trust-row .st-svc-ico {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

.st-svc-trust-row p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #4b5563;
}

.st-svc-trust-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.st-svc-btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--brand);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.st-svc-btn-brand:hover {
  background: #006a75;
  color: #fff !important;
}

.st-svc-btn-brand--lg {
  padding: 18px 36px;
}

.st-svc-trust-phone {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}

/* Страница направления */
.st-svc-hero {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  margin-bottom: 48px;
}

.st-svc-hero-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .st-svc-hero-img {
    height: 520px;
  }
}

.st-svc-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.9) 0%, rgba(3, 7, 18, 0.35) 100%);
  pointer-events: none;
}

.st-svc-hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

@media (min-width: 768px) {
  .st-svc-hero-copy {
    padding: 48px;
  }
}

.st-svc-hero-eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--brand);
}

.st-svc-hero-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.st-svc-hero-lead {
  margin: 0;
  max-width: 48rem;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.st-svc-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .st-svc-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-svc-mini-card {
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px;
  background: #f9fafb;
}

.st-svc-mini-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 129, 142, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.st-svc-mini-title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #030712;
}

.st-svc-mini-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.st-svc-panel-lead {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: #6b7280;
  text-align: left;
}

.st-svc-dark-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.st-svc-dark-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px;
}

.st-svc-dark-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.st-svc-dark-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.st-svc-dark-line {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.76);
}

.st-svc-expert-wrap {
  margin-bottom: 48px;
}

.st-svc-expert-head {
  margin: 0 0 32px;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #030712;
}

.st-svc-expert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .st-svc-expert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-svc-expert-card {
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px;
  background: #fff;
}

.st-svc-expert-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #030712;
}

.st-svc-expert-desc {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: #6b7280;
}

.st-svc-expert-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st-svc-checkrow--sm .st-svc-check {
  width: 16px;
  height: 16px;
}

.st-svc-warn {
  margin-bottom: 48px;
  border-radius: 30px;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  padding: 32px 28px;
}

.st-svc-warn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .st-svc-warn-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-svc-warn-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 16px;
}

.st-svc-warn-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #374151;
}

.st-svc-related {
  margin-bottom: 48px;
  border: 1px solid #f3f4f6;
  border-radius: 30px;
  padding: 32px 28px;
}

.st-svc-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .st-svc-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-svc-related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #030712;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.st-svc-related-link .st-svc-arrow {
  color: #9ca3af;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.st-svc-related-link:hover {
  border-color: var(--brand);
  background: rgba(0, 129, 142, 0.05);
}

.st-svc-related-link:hover .st-svc-arrow {
  color: var(--brand);
}

.st-svc-final {
  border-radius: 32px;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  padding: 36px 32px;
}

.st-svc-final-title {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #030712;
}

.st-svc-final-lead {
  margin: 0 0 28px;
  max-width: 48rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #6b7280;
}

.st-svc-final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.st-svc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #030712;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.st-svc-btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.st-svc-notfound {
  text-align: center;
  padding: 80px 16px;
}

.st-svc-notfound-title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #030712;
}

@media (max-width: 767px) {
  .st-svc-trust-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .st-svc-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .st-svc-btn-brand,
  .st-svc-btn-outline {
    justify-content: center;
    width: 100%;
  }
}

/*
 * Страницы направлений /servis/sitrak|howo|dongfeng/ — точное совпадение с ServiceDirectionPage.tsx
 */
.st-svc-page--direction {
  padding-top: 96px;
  padding-bottom: 80px;
}

.st-svc-page--direction .st-svc-dir-top {
  padding-top: 32px;
  padding-bottom: 32px;
}

.st-svc-section.st-svc-section--direction {
  padding-bottom: 80px;
}

.st-svc-page--direction .st-svc-crumb span:last-of-type {
  color: #030712;
}

.st-svc-page--direction .st-svc-hero {
  margin-bottom: 64px;
}

.st-svc-page--direction .st-svc-hero-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
}

.st-svc-page--direction .st-svc-hero-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
}

.st-svc-page--direction .st-svc-mini-grid {
  margin-bottom: 64px;
  gap: 24px;
}

.st-svc-page--direction .st-svc-mini-title {
  font-size: 24px;
  line-height: 1.15;
}

.st-svc-page--direction .st-svc-mini-desc {
  font-size: 14px;
  font-weight: 500;
}

.st-svc-page--direction .st-svc-split2 {
  gap: 32px;
  margin-bottom: 64px;
}

.st-svc-page--direction .st-svc-panel {
  padding: 32px;
}

.st-svc-page--direction .st-svc-panel .st-svc-block-title {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 36px);
}

.st-svc-page--direction .st-svc-panel-lead {
  margin-bottom: 24px;
  line-height: 1.625;
}

.st-svc-page--direction .st-svc-panel:not(.st-svc-panel--dark) .st-svc-checklist {
  gap: 16px;
}

.st-svc-page--direction .st-svc-panel:not(.st-svc-panel--dark) .st-svc-checkrow p {
  color: #374151;
  font-size: 15px;
}

.st-svc-page--direction .st-svc-panel--dark {
  background: #030712;
}

.st-svc-page--direction .st-svc-panel--dark .st-svc-block-title {
  margin-bottom: 24px;
}

.st-svc-page--direction .st-svc-dark-cards {
  margin-bottom: 32px;
}

.st-svc-page--direction .st-svc-dark-line {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.st-svc-page--direction .st-svc-expert-wrap {
  margin-bottom: 64px;
}

.st-svc-page--direction .st-svc-expert-head {
  margin-bottom: 32px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.st-svc-page--direction .st-svc-expert-grid {
  gap: 24px;
}

.st-svc-page--direction .st-svc-expert-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.st-svc-page--direction .st-svc-expert-desc {
  margin-bottom: 20px;
}

.st-svc-page--direction .st-svc-warn {
  margin-bottom: 64px;
}

.st-svc-page--direction .st-svc-warn .st-svc-block-title {
  margin-bottom: 24px;
  font-size: clamp(26px, 3.2vw, 36px);
}

.st-svc-page--direction .st-svc-related {
  margin-bottom: 64px;
}

.st-svc-page--direction .st-svc-related-link {
  border-color: #e5e7eb;
  padding: 20px;
  border-radius: 16px;
}

.st-svc-page--direction .st-svc-related-link:hover {
  border-color: var(--brand);
  background: rgba(0, 129, 142, 0.05);
}

.st-svc-page--direction .st-svc-final {
  background: #f9fafb;
  border-radius: 32px;
  padding: 32px;
}

@media (min-width: 768px) {
  .st-svc-page--direction .st-svc-final {
    padding: 40px;
  }
}

.st-svc-page--direction .st-svc-final-title {
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.st-svc-dir-cta-primary.st-svc-btn-brand {
  gap: 8px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.st-svc-page--direction .st-svc-btn-outline {
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 16px 32px;
}

/* --- Маркетинговые страницы (акции, лизинг, о компании, блог, контакты) как React --- */
.st-pg {
  padding-top: clamp(72px, 10vw, 96px);
  background: #fff;
}
.st-pg-section {
  padding-bottom: 80px;
}
.st-pg-kicker {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--brand);
}
.st-pg-kicker--light {
  font-size: 12px;
  letter-spacing: 0.35em;
}
.st-pg-brand {
  color: var(--brand);
}
.st-pg-brand-alt {
  color: var(--brand);
}

/* Акции */
.st-pg-akcii-head {
  text-align: center;
  margin-bottom: 56px;
}
.st-pg-akcii-h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #030712;
}
.st-pg-akcii-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.st-pg-akcii-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid #f3f4f6;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.st-pg-akcii-card:hover {
  box-shadow: 0 24px 48px rgba(0, 129, 142, 0.1);
}
@media (min-width: 1024px) {
  .st-pg-akcii-card {
    flex-direction: row;
  }
}
.st-pg-akcii-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .st-pg-akcii-media {
    width: 50%;
    aspect-ratio: auto;
    min-height: 280px;
  }
}
.st-pg-akcii-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.st-pg-akcii-card:hover .st-pg-akcii-media img {
  transform: scale(1.05);
}
.st-pg-akcii-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.st-pg-akcii-body {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .st-pg-akcii-body {
    width: 50%;
    padding: 56px 64px;
  }
}
.st-pg-akcii-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}
.st-pg-akcii-highlight {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--brand);
}
.st-pg-akcii-title {
  margin: 0 0 24px;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #030712;
  transition: color 0.2s ease;
}
.st-pg-akcii-card:hover .st-pg-akcii-title {
  color: var(--brand);
}
.st-pg-akcii-desc {
  margin: 0 0 40px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  color: #6b7280;
}
.st-pg-akcii-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 999px;
  border: none;
  background: #030712;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.st-pg-akcii-btn:hover {
  background: var(--brand);
  color: #fff;
}
.st-pg-akcii-newsletter {
  padding: 96px 0;
  background: #f9fafb;
}
.st-pg-akcii-news-inner {
  position: relative;
  border-radius: 60px;
  background: #030712;
  padding: 48px 36px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .st-pg-akcii-news-inner {
    padding: 80px 96px;
  }
}
.st-pg-akcii-news-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.st-pg-akcii-tag {
  color: var(--brand);
  transform: rotate(-12deg) translate(20%, -10%);
}
.st-pg-akcii-news-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}
.st-pg-akcii-news-title {
  margin: 0 0 32px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
}
.st-pg-akcii-news-lead {
  margin: 0 0 40px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: #9ca3af;
}
.st-pg-akcii-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .st-pg-akcii-form {
    flex-direction: row;
    align-items: stretch;
  }
}
.st-pg-akcii-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 18px 28px;
  font-size: 15px;
}
.st-pg-akcii-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.st-pg-akcii-input:focus {
  outline: none;
  border-color: var(--brand);
}
.st-pg-akcii-subscribe {
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  padding: 18px 40px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.st-pg-akcii-subscribe:hover {
  background: #fff;
  color: #030712;
}

/* Лизинг — один баннер на всю ширину, слева мягкая прозрачная вуаль */
.st-pg-lease-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(90vh, 900px);
  overflow: hidden;
  background: #0f172a;
}
.st-pg-lease-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.st-pg-lease-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.st-pg-lease-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(3, 7, 18, 0.82) 0%,
    rgba(3, 7, 18, 0.62) 24%,
    rgba(3, 7, 18, 0.4) 42%,
    rgba(3, 7, 18, 0.2) 58%,
    rgba(3, 7, 18, 0.08) 72%,
    transparent 88%
  );
}
.st-pg-lease-hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(56px, 9vh, 96px) 0;
}
.st-pg-lease-hero-copy {
  position: relative;
  width: 100%;
  max-width: 38rem;
}
@media (max-width: 767px) {
  .st-pg-lease-hero-media img {
    object-position: 55% center;
  }
  .st-pg-lease-hero-veil {
    background: linear-gradient(
      180deg,
      rgba(3, 7, 18, 0.88) 0%,
      rgba(3, 7, 18, 0.65) 35%,
      rgba(3, 7, 18, 0.28) 65%,
      transparent 100%
    );
  }
}
.st-pg-lease-h1 {
  margin: 0 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.st-pg-lease-h1-line {
  display: block;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.st-pg-lease-h1 .st-pg-brand-alt {
  color: var(--brand);
}
.st-pg-lease-h1-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em 0.65em;
  margin-top: 0.12em;
}
.st-pg-lease-h1-brand {
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.st-pg-lease-brands {
  margin: 0;
  padding: 0;
  max-width: 22rem;
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand);
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
}
.st-pg-lease-lead {
  margin: 0 0 36px;
  max-width: 32rem;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  color: #e5e7eb;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.st-pg-lease-h1-line,
.st-pg-lease-h1-brand {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.st-pg-lease-brands {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.st-pg-lease-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.st-pg-lease-cta {
  padding: 20px 40px !important;
  font-size: 13px !important;
  border-radius: 999px !important;
}
.st-pg-lease-calc {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.st-pg-lease-calc-ico {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.st-pg-lease-calc-cap {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}
.st-pg-lease-calc-val {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.st-pg-lease-hero-frame {
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}
.st-pg-lease-hero-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.st-pg-lease-benefits {
  padding: 96px 0;
  background: #f9fafb;
}
.st-pg-lease-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .st-pg-lease-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .st-pg-lease-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.st-pg-lease-benefit {
  background: #fff;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
.st-pg-lease-benefit:hover {
  box-shadow: 0 24px 48px rgba(0, 129, 142, 0.12);
}
.st-pg-lease-ico {
  color: var(--brand);
  margin-bottom: 28px;
  display: block;
  transition: transform 0.45s ease;
}
.st-pg-lease-benefit:hover .st-pg-lease-ico {
  transform: scale(1.08);
}
.st-pg-lease-benefit-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #030712;
}
.st-pg-lease-benefit-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #6b7280;
}
.st-pg-lease-tax {
  padding: 96px 0;
}
.st-pg-lease-tax-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .st-pg-lease-tax-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}
.st-pg-lease-tax-h2 {
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #030712;
}
.st-pg-lease-tax-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.st-pg-lease-tax-check {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0, 129, 142, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-pg-lease-tax-sub {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #030712;
}
.st-pg-lease-tax-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #6b7280;
}
.st-pg-lease-tax-visual {
  position: relative;
}
.st-pg-lease-tax-imgwrap {
  aspect-ratio: 1;
  border-radius: 60px;
  overflow: hidden;
  background: #030712;
}
.st-pg-lease-tax-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.st-pg-lease-tax-float {
  display: none;
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--brand);
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .st-pg-lease-tax-float {
    display: block;
  }
}
.st-pg-lease-tax-pct {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #030712;
}
.st-pg-lease-tax-float-cap {
  margin: 8px 0 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(3, 7, 18, 0.55);
}
.st-pg-lease-steps {
  padding: 96px 0;
  background: #030712;
  color: #fff;
}
.st-pg-lease-steps-head {
  text-align: center;
  margin-bottom: 64px;
}
.st-pg-lease-steps-h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}
.st-pg-lease-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .st-pg-lease-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .st-pg-lease-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.st-pg-lease-step {
  position: relative;
}
.st-pg-lease-step-bg {
  position: absolute;
  top: -40px;
  left: -16px;
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}
.st-pg-lease-step-arrow {
  display: none;
  position: absolute;
  top: 16px;
  right: -24px;
  color: rgba(0, 129, 142, 0.25);
  z-index: 1;
}
@media (min-width: 1024px) {
  .st-pg-lease-step-arrow {
    display: block;
  }
}
.st-pg-lease-step-title {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.st-pg-lease-step-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.st-pg-lease-step-desc {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #6b7280;
}
.st-pg-lease-partners {
  padding: 96px 0;
}
.st-pg-lease-partners-head {
  text-align: center;
  margin-bottom: 48px;
}
.st-pg-lease-partners-h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #030712;
}
.st-pg-lease-partners-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
}
.st-pg-lease-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .st-pg-lease-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .st-pg-lease-partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.st-pg-lease-partner {
  height: 128px;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.st-pg-lease-partner:hover {
  border-color: rgba(0, 129, 142, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.st-pg-lease-partner img {
  max-height: 48px;
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}
.st-pg-lease-partner:hover img {
  filter: grayscale(0);
}
.st-pg-lease-footer-cta {
  padding: 96px 0;
  background: var(--brand);
}
.st-pg-lease-cta-card {
  background: #030712;
  border-radius: 60px;
  padding: 48px 36px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .st-pg-lease-cta-card {
    padding: 80px 96px;
  }
}
.st-pg-lease-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .st-pg-lease-cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.st-pg-lease-cta-title {
  margin: 0 0 32px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #fff;
}
.st-pg-lease-cta-lead {
  margin: 0 0 40px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: #9ca3af;
}
.st-pg-lease-cta-phone {
  display: flex;
  align-items: center;
  gap: 24px;
}
.st-pg-lease-cta-phone-btn {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.st-pg-lease-cta-phone-btn:hover {
  transform: scale(1.08);
}
.st-pg-lease-cta-phone-num {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
.st-pg-lease-form {
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}
.st-pg-lease-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .st-pg-lease-form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.st-pg-lease-field label {
  display: block;
  margin: 0 0 8px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}
.st-pg-lease-field input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 24px;
  font-size: 15px;
}
.st-pg-lease-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.st-pg-lease-field input:focus {
  outline: none;
  border-color: var(--brand);
}
.st-pg-lease-form-submit {
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.st-pg-lease-form-submit:hover {
  background: #fff;
  color: #030712;
}
.st-pg-lease-form-note {
  margin: 16px 0 0;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  line-height: 1.5;
}

/* О компании */
.st-pg-about-hero {
  padding-bottom: 64px;
}
.st-pg-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .st-pg-about-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
}
.st-pg-about-h1 {
  margin: 0 0 40px;
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #030712;
}
.st-pg-about-text {
  margin: 0 0 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--brand);
}
.st-pg-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}
.st-pg-about-stats--single {
  grid-template-columns: 1fr;
  max-width: 14rem;
}
.st-pg-about-stat-num {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #030712;
}
.st-pg-about-stat-cap {
  margin: 8px 0 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}
.st-pg-about-hero-media {
  border-radius: 48px;
  overflow: hidden;
}
.st-pg-about-hero-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.st-pg-about-why {
  padding: 96px 0;
  background: #f9fafb;
}
.st-pg-about-why-h2 {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #030712;
}
.st-pg-about-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .st-pg-about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.st-pg-about-card {
  padding: 40px;
  border-radius: 32px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.st-pg-about-card--hl {
  background: #e5e7eb;
  border-color: #e5e7eb;
}
.st-pg-about-card-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #030712;
}
.st-pg-about-card-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #6b7280;
}
.st-pg-about-mvv {
  padding: 96px 0;
}
.st-pg-about-mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .st-pg-about-mvv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.st-pg-about-mvv-ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.st-pg-about-mvv-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #030712;
}
.st-pg-about-mvv-text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: #6b7280;
}
.st-pg-about-cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: #030712;
}
.st-pg-about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.72);
  z-index: 1;
  pointer-events: none;
}
.st-pg-about-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  z-index: 0;
}
.st-pg-about-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.st-pg-about-cta-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}
.st-pg-about-cta-title {
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
}
.st-pg-about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.st-pg-about-cta-primary {
  padding: 22px 44px !important;
  border-radius: 999px !important;
}
.st-pg-about-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.st-pg-about-cta-secondary:hover {
  background: #fff;
  color: #030712 !important;
}

/* Блог */
.st-pg-blog-head {
  text-align: center;
  margin-bottom: 56px;
}
.st-pg-blog-h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #030712;
}
.st-pg-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .st-pg-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .st-pg-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.st-pg-blog-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}
.st-pg-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 32px;
  transition: transform 0.65s ease;
}
.st-pg-blog-card:hover .st-pg-blog-media img {
  transform: scale(1.05);
}
.st-pg-blog-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.st-pg-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}
.st-pg-blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.st-pg-blog-meta-item svg {
  color: var(--brand);
}
.st-pg-blog-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #030712;
  transition: color 0.2s ease;
}
.st-pg-blog-card:hover .st-pg-blog-title {
  color: var(--brand);
}
.st-pg-blog-excerpt {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #6b7280;
}
.st-pg-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #030712;
  transition: gap 0.25s ease;
}
.st-pg-blog-card:hover .st-pg-blog-more {
  gap: 16px;
}
.st-pg-blog-more .st-svc-chevron {
  color: var(--brand);
}
.st-pg-blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.st-pg-blog-h1--single {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}
.st-pg-blog-single-date {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.st-pg-blog-single-media {
  margin: 32px 0;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.st-pg-blog-single-media img {
  width: 100%;
  height: auto;
  display: block;
  padding: 40px;
  object-fit: contain;
}
.st-pg-blog-single-content {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
}
.st-pg-blog-single-content p {
  margin: 0 0 20px;
}
.st-pg-blog-lead {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.st-pg-blog-back {
  display: inline-block;
  margin-top: 40px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}
.st-pg-blog-back:hover {
  text-decoration: underline;
}

/* Контакты */
.st-pg-kontakty-head {
  margin-bottom: 40px;
}
.st-pg-kontakty-h1 {
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #030712;
}
.st-pg-kontakty-panel {
  padding-bottom: 80px;
}
.st-pg-kontakty-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  min-height: 560px;
}
@media (min-width: 1024px) {
  .st-pg-kontakty-grid {
    grid-template-columns: 380px 1fr;
  }
}
.st-pg-kontakty-aside {
  background: rgba(0, 129, 142, 0.15);
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .st-pg-kontakty-aside {
    border-bottom: none;
    border-right: 1px solid #e5e7eb;
  }
}
.st-pg-kontakty-card {
  height: 100%;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.st-pg-kontakty-logo {
  height: 40px;
  width: auto;
}
.st-pg-kontakty-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.st-pg-kontakty-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.15s ease;
}
.st-pg-kontakty-line:hover {
  color: var(--brand);
}
.st-pg-kontakty-line svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 2px;
}
.st-pg-kontakty-line--static {
  cursor: default;
}
.st-pg-kontakty-line--static:hover {
  color: inherit;
}
.st-pg-kontakty-hours {
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}
.st-pg-kontakty-hours-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}
.st-pg-kontakty-hours-title svg {
  color: var(--brand);
}
.st-pg-kontakty-hours-text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
}
.st-pg-kontakty-map {
  min-height: 420px;
  background: #e5e7eb;
}
@media (min-width: 1024px) {
  .st-pg-kontakty-map {
    min-height: 560px;
  }
}
.st-pg-kontakty-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
@media (min-width: 1024px) {
  .st-pg-kontakty-map iframe {
    min-height: 560px;
  }
}

/* SEO-текст (ACF): перед подвалом */
.st-seo-text-block {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
}
.st-seo-text-block__inner {
  max-width: 52rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
}
.st-seo-text-block__inner > *:first-child {
  margin-top: 0;
}
.st-seo-text-block__inner > *:last-child {
  margin-bottom: 0;
}
.st-seo-text-block__inner h2,
.st-seo-text-block__inner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 1.25rem 0 0.5rem;
}
.st-seo-text-block__inner p {
  margin: 0 0 0.75rem;
}
.st-seo-text-block__inner ul,
.st-seo-text-block__inner ol {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}
.st-seo-text-block__inner a {
  color: var(--brand, #c8102e);
  text-decoration: underline;
}

.st-seo-text-block__stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* FAQ под SEO-текстом (HTML / мета): аккордеон в стиле сайта */
.st-seo-faq-block {
  max-width: 48rem;
}
.st-seo-faq-block__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--brand, #00818e);
  letter-spacing: -0.02em;
}
.st-seo-faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.st-seo-faq-block__item {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.st-seo-faq-block__item:hover {
  border-color: #9bb8bd;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.st-seo-faq-block__item[open] {
  border-color: #7ebec4;
  box-shadow: 0 2px 10px rgba(0, 129, 142, 0.08);
}
.st-seo-faq-block__q {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  padding: 0.65rem 0.85rem 0.65rem 0.75rem;
  line-height: 1.4;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, border-left-color 0.2s ease, color 0.15s ease;
}
.st-seo-faq-block__item[open] .st-seo-faq-block__q {
  background: #f0fdfa;
  border-left-color: var(--brand, #00818e);
}
.st-seo-faq-block__item:not([open]):hover .st-seo-faq-block__q {
  background: #f8fafc;
  border-left-color: rgba(0, 129, 142, 0.4);
}
.st-seo-faq-block__q-text {
  flex: 1;
  min-width: 0;
}
.st-seo-faq-block__q::-webkit-details-marker,
.st-seo-faq-block__q::-moz-list-bullet {
  display: none;
}
.st-seo-faq-block__q::marker {
  content: "";
  font-size: 0;
}
.st-seo-faq-block__q::after {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.35rem;
  margin-right: 0.15rem;
  border-right: 2px solid var(--brand, #00818e);
  border-bottom: 2px solid var(--brand, #00818e);
  opacity: 0.75;
  transform: rotate(45deg);
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.st-seo-faq-block__item[open] .st-seo-faq-block__q::after {
  transform: rotate(-135deg);
  margin-top: 0.48rem;
  opacity: 1;
}
.st-seo-faq-block__a {
  font-size: 0.875rem;
  line-height: 1.62;
  color: #475569;
  padding: 0 0.85rem 0.75rem 0.95rem;
  border-top: 1px solid #e2e8f0;
  background: #fafbfc;
}
.st-seo-faq-block__a > *:first-child {
  margin-top: 0.65rem;
}
.st-seo-faq-block__a p {
  margin: 0 0 0.45rem;
}
.st-seo-faq-block__a a {
  color: var(--brand, #00818e);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/*
 * На фронте иногда подтягиваются стили как у страницы wp_die() / common.css (max-width:700px и т.д.).
 * Класс st-frontend задаётся в functions.php только вне админки.
 */
body.st-frontend {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  overflow-x: clip;
}

body.st-frontend .container,
body.st-frontend .hero-home-container,
body.st-frontend .catalog-page-inner {
  box-sizing: border-box;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

/* Cookie consent banner (card + icon справа) */
html.st-cookie-consent-set .st-cookie-banner {
  display: none !important;
}

.st-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1003;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.st-cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.st-cookie-banner__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 24px;
  width: min(100%, 560px);
  padding: 22px 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(5, 10, 18, 0.14);
  border: 1px solid rgba(5, 10, 18, 0.06);
}

.st-cookie-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}

.st-cookie-banner__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand, #00818e);
}

.st-cookie-banner__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #5c6570;
}

.st-cookie-banner__link {
  color: var(--brand, #00818e);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.st-cookie-banner__link:hover {
  color: #006b76;
}

.st-cookie-banner__accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border: none;
  border-radius: 6px;
  background: var(--brand, #00818e);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.st-cookie-banner__accept:hover {
  background: #006b76;
}

.st-cookie-banner__accept:focus-visible {
  outline: 2px solid var(--brand, #00818e);
  outline-offset: 2px;
}

.st-cookie-banner__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand, #00818e);
}

.st-cookie-banner__icon svg {
  display: block;
  width: 72px;
  height: 72px;
}

html.st-cookie-banner-open .site-floats {
  bottom: calc(24px + 150px);
}

@media (max-width: 640px) {
  .st-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .st-cookie-banner__card {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 18px 18px 16px;
  }

  .st-cookie-banner__icon {
    align-self: flex-end;
  }

  .st-cookie-banner__icon svg {
    width: 56px;
    height: 56px;
  }

  html.st-cookie-banner-open .site-floats {
    bottom: calc(16px + 200px);
  }
}

/* Политика конфиденциальности — аккордеон документов */
.st-pg-legal {
  padding: 32px 0 72px;
  background: #fff;
}

.st-pg-legal-head {
  margin-bottom: 28px;
}

.st-pg-legal-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.st-pg-legal-lead {
  margin: 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}

.st-legal-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st-legal-accordion__item {
  border-radius: 999px;
  background: #f2f2f2;
  overflow: hidden;
  transition: border-radius 0.2s ease;
}

.st-legal-accordion__item[open] {
  border-radius: 20px;
}

.st-legal-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px 18px 26px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.st-legal-accordion__summary::-webkit-details-marker {
  display: none;
}

.st-legal-accordion__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: #334155;
  text-align: left;
}

.st-legal-accordion__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand, #00818e);
}

.st-legal-accordion__icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.st-legal-accordion__body {
  padding: 0 26px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}

.st-legal-accordion__body h3 {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.st-legal-accordion__body h3:first-child {
  margin-top: 4px;
}

.st-legal-accordion__body p {
  margin: 0 0 10px;
}

.st-legal-accordion__body ul {
  margin: 0 0 12px;
  padding-left: 1.2em;
}

.st-legal-accordion__body li {
  margin-bottom: 6px;
}

.st-legal-accordion__body a {
  color: var(--brand, #00818e);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.st-pg-legal-contact {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.st-pg-legal-contact a {
  color: var(--brand, #00818e);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .st-legal-accordion__item {
    border-radius: 16px;
  }

  .st-legal-accordion__item[open] {
    border-radius: 16px;
  }

  .st-legal-accordion__summary {
    padding: 16px 16px 16px 18px;
  }

  .st-legal-accordion__title {
    font-size: 14px;
  }

  .st-legal-accordion__body {
    padding: 0 18px 18px;
  }
}

/* ===== Mobile layout: отступы шапки, hero, sinotruk, карточки каталога ===== */
@media (max-width: 767px) {
  html {
    overflow-x: clip;
  }

  /* Единый отступ контента от шапки — 24px */
  .catalog-page,
  .product-page,
  .catalog-brands-page,
  .df-super-page,
  .df-model-page,
  .trail-react-page,
  .not-found-page,
  .st-svc-page,
  .st-svc-page--direction,
  .page-content,
  .sitrak-category-page,
  .df-landing-body,
  .st-svc-notfound {
    padding-top: var(--st-mobile-content-top) !important;
  }

  .catalog-brands-page {
    padding: var(--st-mobile-content-top) 0 64px !important;
  }

  .trail-react-page {
    padding: var(--st-mobile-content-top) 0 64px !important;
  }

  .not-found-page {
    padding: var(--st-mobile-content-top) 0 80px !important;
  }

  .product-not-found {
    padding-top: var(--st-mobile-content-top) !important;
  }

  .zl-category-page .zl-inner,
  .zl-sub-page .zl-inner {
    padding-top: var(--st-mobile-content-top) !important;
  }

  .st-svc-page--direction .st-svc-dir-top {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .df-model-back-wrap {
    padding-top: var(--st-mobile-content-top);
    padding-bottom: 8px;
  }

  .site-header .header-main {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .header-actions {
    gap: 10px;
    flex-shrink: 0;
  }

  .header-phone-mobile,
  .header-menu-toggle {
    flex-shrink: 0;
  }

  .hero-main,
  .hero-brand {
    min-height: min(78vh, 820px);
  }

  .hero-content,
  .hero-home .hero-home-container {
    padding-bottom: max(52px, env(safe-area-inset-bottom, 0px));
  }

  .hero-brand .hero-actions {
    width: 100%;
    margin-bottom: 4px;
  }

  .hero-brand .hero-actions .btn,
  .hero-brand .hero-actions .btn-ghost {
    width: 100%;
    max-width: none;
  }

  .sitrak-cat-banner-inner {
    padding-bottom: max(48px, env(safe-area-inset-bottom, 0px));
    padding-top: 40px;
  }

  .sitrak-cat-banner-actions {
    margin-bottom: 20px;
  }

  .sinotruk-section {
    overflow-x: clip;
  }

  .sinotruk-section .container,
  .sin-top,
  .sin-intro,
  .sin-cards-grid,
  .sin-mini-card,
  .sin-wide-grid,
  .sin-wide-card,
  .sin-tech-row,
  .sin-tech-content {
    min-width: 0;
    max-width: 100%;
  }

  .sin-cards-grid,
  .sin-wide-grid {
    grid-template-columns: 1fr;
  }

  .sin-intro h2 {
    font-size: clamp(26px, 7.2vw, 36px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .sin-intro p,
  .sin-mini-card p,
  .sin-wide-card p,
  .sin-tech-content p {
    overflow-wrap: anywhere;
  }

  .sin-tech-label {
    letter-spacing: 0.14em;
    flex-wrap: wrap;
  }

  .sin-tech-content h3 {
    font-size: clamp(28px, 8vw, 40px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .sin-wide-card {
    flex-direction: column;
    padding: 20px;
  }

  .sinotruk-section {
    padding: 72px 0;
  }

  .catalog-page {
    padding-bottom: 64px;
  }

  .sitrak-models-section {
    padding-bottom: 72px;
  }

  .sitrak-model-card {
    padding: 18px 16px;
    min-width: 0;
  }

  .sitrak-model-card-inner {
    gap: 10px;
    min-width: 0;
    align-items: center;
  }

  .sitrak-model-card-inner > div:first-child {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
  }

  .sitrak-model-card-inner > div:first-child > div {
    min-width: 0;
  }

  .sitrak-model-card-inner img {
    width: 88px !important;
    height: 66px !important;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .sitrak-model-card h3 {
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .sitrak-model-card p {
    font-size: 13px;
  }

  .sitrak-model-card-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .sitrak-cat-main,
  .df-model-back-wrap {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .catalog-card-body {
    padding: 20px 18px;
  }

  .catalog-card-arrow {
    width: 40px;
    height: 40px;
  }

  /* Каталог «Авто в наличии» — отступы и единый radius */
  .catalog-breadcrumbs {
    padding-top: 0;
    padding-bottom: 14px;
  }

  .catalog-head {
    padding-bottom: 20px;
  }

  .catalog-h1 {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .catalog-filters-bar {
    margin-bottom: 14px;
    gap: 14px;
  }

  .catalog-toolbar {
    margin-bottom: 18px;
  }

  .catalog-filter-open {
    width: 100%;
    justify-content: center;
  }

  .catalog-card {
    border-radius: var(--st-radius-card);
  }

  .catalog-card-body {
    padding: 20px 18px;
  }

  /* Карточка товара /truck/... */
  .product-page {
    padding-bottom: 48px;
  }

  .product-page-inner {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .product-back-link {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .product-main-grid {
    gap: 24px;
    padding-bottom: 56px;
  }

  .product-gallery-main {
    border-radius: var(--st-radius-card);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  }

  .product-gallery-thumbs-wrap {
    margin-top: 12px;
  }

  .product-gallery-thumbs {
    --pg-thumb-gap: 8px;
    padding: 2px 36px;
  }

  .product-gallery-nav {
    width: 28px;
    height: 28px;
  }

  .product-badges {
    margin-bottom: 14px;
  }

  .product-title {
    font-size: clamp(17px, 4.8vw, 26px);
    line-height: 1.28;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .product-price {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .product-quick-specs {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .product-quick-val {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .product-actions {
    flex-direction: column;
    gap: 12px;
    padding-top: 22px;
  }

  .product-btn-primary,
  .product-btn-outline {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    padding: 16px 24px;
    font-size: 12px;
    border-radius: var(--st-radius-ui);
  }

  .product-mini-cards {
    padding-top: 22px;
    gap: 12px;
  }

  .product-mini-card {
    padding: 16px;
    border-radius: var(--st-radius-card);
  }

  .product-specs-section {
    padding: 48px 0 56px;
  }

  .product-specs-section .product-page-inner {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .product-specs-h2 {
    font-size: clamp(24px, 7vw, 34px);
    margin-bottom: 18px;
  }

  .product-specs-line {
    margin-bottom: 28px;
  }

  .product-specs-grid {
    gap: 24px 16px;
  }

  .product-spec-item {
    padding-bottom: 18px;
  }

  .product-spec-value {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    text-transform: none;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-advantages {
    padding: 56px 0;
  }

  .product-related {
    padding-top: 48px;
  }
}
