:root {
  --brand: #24304c;
  --brand-dark: #151c2f;
  --brand-soft: #edf2f8;
  --ink: #111827;
  --muted: #667085;
  --line: #d9e0ea;
  --surface: #ffffff;
  --surface-warm: #f6f8fb;
  --accent: #d9222a;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-btn: 16px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 70px rgba(20, 30, 55, 0.14);
  --site-header-height: 128px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

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

button {
  font: inherit;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 224, 234, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-top {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin-left: 14px;
  color: var(--brand);
  font-weight: 900;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(210px, 24vw, 340px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 44px;
  color: var(--brand);
  background: transparent;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.logo-e {
  position: relative;
  display: inline-block;
  width: 0.76em;
  height: 0.72em;
  margin: 0 0.035em;
  vertical-align: -0.035em;
}

.logo-e::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(currentColor, currentColor) left top / 100% 0.14em no-repeat,
    linear-gradient(currentColor, currentColor) left center / 82% 0.14em no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 100% 0.14em no-repeat;
}

.header-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.header-contacts > * {
  flex-shrink: 0;
  white-space: nowrap;
}

.header-contacts a {
  color: var(--brand);
  font-weight: 700;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(36, 48, 76, 0.16);
  border-radius: var(--radius-btn);
  background: #fff;
  gap: 2px;
}

.lang-switch__btn {
  min-width: 38px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: calc(var(--radius-btn) - 3px);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch__btn:hover {
  color: var(--brand);
}

.lang-switch__btn.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(36, 48, 76, 0.18);
}

.lang-switch__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.contacts-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(36, 48, 76, 0.16);
  border-radius: var(--radius-btn);
  color: var(--brand);
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
}

.contacts-toggle:hover,
.contacts-toggle:focus-visible,
.contacts-toggle[aria-current="page"] {
  border-color: var(--accent);
  color: var(--accent);
}

.main-nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 14px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  color: #344054;
  font-size: 0.95rem;
  transition:
    color 260ms var(--ease-smooth),
    background 260ms var(--ease-smooth);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand);
  background: var(--brand-soft);
}

.main-nav a[aria-current="page"] {
  color: var(--brand);
  background: var(--brand-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand);
}

.hero {
  position: relative;
  min-height: calc(100dvh + var(--site-header-height));
  display: grid;
  align-items: center;
  overflow-x: hidden;
  color: #fff;
  background: var(--brand-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(12, 18, 32, 0.92) 0%, rgba(18, 27, 47, 0.78) 45%, rgba(18, 27, 47, 0.34) 100%),
    linear-gradient(135deg, rgba(217, 34, 42, 0.22), transparent 38%);
  z-index: 1;
}

.hero-media::after {
  z-index: 2;
  opacity: 0.34;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.28), transparent 0 16%, transparent 34%),
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 38% 39%, transparent 39%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 480ms var(--ease-smooth);
}

.hero-video.is-active {
  opacity: 1;
}

.hero-image {
  position: absolute;
  top: 50%;
  right: clamp(0px, 1vw, 20px);
  left: auto;
  bottom: auto;
  width: min(56vw, 840px);
  height: min(72vh, 620px);
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center right;
  transform: translateY(-48%);
  opacity: 0;
  transition: opacity 480ms var(--ease-smooth);
}

.hero-image.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: end;
  justify-content: start;
  gap: 48px;
  padding: calc(var(--site-header-height) + 56px) 0 96px;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 320px;
}

.hero-frame {
  display: none;
  opacity: 0;
  transform: translateX(28px);
}

.hero-frame.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: hero-slide-in 560ms var(--ease-smooth);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: min(820px, 100%);
}

.hero-copy .eyebrow {
  margin: 0;
}

.hero-copy h1 {
  margin: 0;
}

.hero-copy p {
  margin: 0;
}

.hero-copy .hero-actions {
  margin-top: 6px;
}

@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1,
.section-heading h2,
.about-panel h2,
.contact-band h2 {
  margin: 14px 0 18px;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.43rem, 5.67vw, 4.78rem);
  line-height: 1.04;
}

.hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

html[lang="ky"] .hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.55rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

html[lang="ky"] .hero p {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
  max-width: 700px;
}

html[lang="ky"] .hero-copy {
  gap: 20px;
}

html[lang="ky"] .hero-copy .hero-actions {
  margin-top: 10px;
}

html[lang="ky"] .hero-actions .button {
  font-size: 0.95rem;
  padding-inline: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(36, 48, 76, 0.16);
  border-radius: var(--radius-btn);
  font-weight: 800;
  transition:
    transform 260ms var(--ease-smooth),
    box-shadow 260ms var(--ease-smooth),
    background 260ms var(--ease-smooth);
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 34px rgba(217, 34, 42, 0.26);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-btn);
  color: #fff;
  background: rgba(15, 22, 38, 0.42);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 260ms var(--ease-smooth),
    border-color 260ms var(--ease-smooth),
    transform 260ms var(--ease-smooth);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(217, 34, 42, 0.88);
  transform: translateY(-2px);
}

.hero-arrow span {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.hero-arrow--prev span {
  transform: translateX(2px) rotate(135deg);
}

.hero-arrow--next span {
  transform: translateX(-2px) rotate(-45deg);
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading--with-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading--with-action > div {
  max-width: 720px;
}

.news-all-link {
  flex-shrink: 0;
  color: var(--brand);
  border-color: rgba(36, 48, 76, 0.16);
  background: #fff;
  box-shadow: 0 12px 24px rgba(36, 48, 76, 0.08);
}

.news-all-link:hover,
.news-all-link:focus-visible {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 16px 30px rgba(36, 48, 76, 0.14);
}

.page-hero {
  padding: calc(var(--site-header-height) + 56px) 0 56px;
  background: var(--surface-warm);
}

.page-hero h1 {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero--media {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 42vw, 420px);
  padding: calc(var(--site-header-height) + 48px) 0 56px;
  color: #fff;
  background: var(--brand-dark);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(105deg, rgba(15, 22, 39, 0.92) 0%, rgba(21, 28, 47, 0.78) 42%, rgba(21, 28, 47, 0.28) 72%, rgba(217, 34, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 22, 39, 0.35) 0%, transparent 40%, rgba(15, 22, 39, 0.45) 100%);
}

.page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  will-change: transform;
}

.page-hero--specials .page-hero__image {
  object-position: center 45%;
  animation: pageHeroPanA 22s ease-in-out infinite alternate;
}

.page-hero--service .page-hero__image {
  object-position: center 40%;
  animation: pageHeroPanB 26s ease-in-out infinite alternate;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero--media .eyebrow {
  color: #ffb4b7;
}

.page-hero--media .eyebrow::before {
  background: var(--accent);
}

.page-hero--media h1 {
  color: #fff;
}

.page-hero--media p {
  color: rgba(255, 255, 255, 0.78);
}

@keyframes pageHeroPanA {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.14) translate3d(-2.4%, 1.2%, 0);
  }
  100% {
    transform: scale(1.1) translate3d(2%, -1%, 0);
  }
}

@keyframes pageHeroPanB {
  0% {
    transform: scale(1.1) translate3d(1.5%, 0, 0);
  }
  40% {
    transform: scale(1.16) translate3d(-2%, 1.5%, 0);
  }
  100% {
    transform: scale(1.12) translate3d(2.5%, -1.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__image {
    animation: none;
    transform: scale(1.06);
  }
}

.contacts-page {
  display: grid;
  gap: 48px;
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contacts-page__block {
  padding-top: 24px;
  padding-bottom: 8px;
  border-top: 3px solid var(--accent);
}

.contacts-page__label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contacts-page__block h2 {
  margin: 0 0 24px;
  color: var(--brand-dark);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
}

.contacts-page__links {
  display: grid;
  gap: 14px;
}

.contacts-page__links a {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.contacts-page__links a:last-child {
  border-bottom: 0;
}

.contacts-page__links span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contacts-page__links strong {
  color: var(--brand-dark);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.contacts-page__links a:hover strong,
.contacts-page__links a:focus-visible strong {
  color: var(--accent);
}

.contacts-page__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.contacts-page__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts-page__meta h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.contacts-page__meta p {
  margin: 0 0 6px;
  color: var(--muted);
}

.contacts-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  align-items: center;
  justify-content: center;
}

.contacts-page__actions .button {
  width: auto;
  min-width: 0;
}

.contacts-page__actions .button-secondary {
  color: var(--brand);
  border-color: rgba(36, 48, 76, 0.16);
  background: #fff;
}

.contacts-map .section-heading {
  margin-bottom: 28px;
}

.contacts-map__frame {
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.contacts-map__frame .map-embed {
  display: block;
  width: 100%;
  height: 360px;
  min-height: 360px;
  border: 0;
}

@media (max-width: 960px) {
  .contacts-page__grid,
  .contacts-page__meta {
    grid-template-columns: 1fr;
  }
}

.news-page {
  padding-top: 0;
}

section.section.about-page {
  padding-top: 104px;
  padding-bottom: 104px;
}

.about-tone-light {
  background: var(--surface-warm);
}

.about-tone-dark {
  color: #fff;
  background: var(--brand);
}

.about-tone-dark .section-heading h2,
.about-tone-dark .about-intro__copy h2,
.about-tone-dark .about-aside-block h3,
.about-tone-dark .about-mission-quote__label,
.about-tone-dark .about-values-list__copy h3,
.about-tone-dark .about-project h3,
.about-tone-dark .about-contacts__group h3,
.about-tone-dark .about-advantage-note h3 {
  color: #fff;
}

.about-tone-dark .section-heading p,
.about-tone-dark .about-intro__copy p,
.about-tone-dark .about-aside-block p,
.about-tone-dark .about-mission-quote__text,
.about-tone-dark .about-values-list__copy p,
.about-tone-dark .about-project p,
.about-tone-dark .about-contacts-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.about-tone-dark .eyebrow {
  color: var(--accent);
}

.about-tone-dark .eyebrow::before {
  background: var(--accent);
}

.about-tone-dark .about-chip-list li {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.about-tone-dark .about-plain-list li {
  color: #fff;
}

.about-tone-dark .about-project {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.about-tone-dark .about-project:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.about-tone-dark .about-project__client {
  background: rgba(255, 255, 255, 0.12);
}

.about-tone-dark .about-contacts__group a {
  color: #fff;
}

.about-tone-dark .about-contacts__group a:hover,
.about-tone-dark .about-contacts__group a:focus-visible {
  color: #ffd4d6;
}

.about-tone-dark .about-advantage-note {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.about-tone-dark .about-3s article {
  background: rgba(255, 255, 255, 0.08);
}

.about-tone-dark .about-3s h3 {
  color: #fff;
}

.about-tone-dark .about-3s p {
  color: rgba(255, 255, 255, 0.76);
}

.about-contacts-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-tone-dark .about-contacts-cta {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.about-contacts-cta p {
  margin: 0;
  max-width: 520px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-tone-dark .button-secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: #fff;
}

.about-tone-dark .button-secondary:hover,
.about-tone-dark .button-secondary:focus-visible {
  color: #fff;
  background: transparent;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.about-intro__copy h2 {
  margin: 14px 0 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.about-intro__copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.about-intro__aside {
  display: grid;
  gap: 28px;
}

.about-aside-block h3,
.about-clients h3,
.about-advantage-note h3,
.about-contacts__group h3,
.about-values-list__copy h3,
.about-project h3,
.about-3s h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.about-aside-block p,
.about-advantage-note p,
.about-values-list__copy p,
.about-project p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-chip-list,
.about-plain-list,
.about-client-grid {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.about-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-chip-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.about-plain-list {
  display: grid;
  gap: 8px;
}

.about-plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--brand-dark);
  font-weight: 600;
}

.about-plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.about-plain-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.about-clients {
  margin-top: 36px;
}

.about-client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-client-grid li {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--brand-dark);
  background: #fff;
  text-align: center;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-projects {
  display: grid;
  gap: 0;
}

.about-project {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.about-project:last-child {
  border-bottom: 1px solid var(--line);
}

.about-project__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.about-project__client {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-project__meta strong {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.about-project h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.about-mission-section {
  position: relative;
  overflow: hidden;
}

.about-tone-dark.about-mission-section {
  background:
    radial-gradient(ellipse 70% 55% at 100% -10%, rgba(217, 34, 42, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 45% at -5% 110%, rgba(255, 255, 255, 0.07), transparent 52%),
    linear-gradient(165deg, #2a3758 0%, var(--brand) 42%, #1c253c 100%);
}

.about-tone-light.about-mission-section {
  background:
    radial-gradient(ellipse 70% 55% at 100% -10%, rgba(217, 34, 42, 0.08), transparent 58%),
    radial-gradient(ellipse 55% 45% at -5% 110%, rgba(36, 48, 76, 0.05), transparent 52%),
    var(--surface-warm);
}

.about-mission-quote {
  position: relative;
  margin: 8px 0 48px;
  padding: 32px 0 36px 28px;
  max-width: 48rem;
  border: 0;
  border-left: 3px solid var(--accent);
}

.about-mission-quote__label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-mission-quote__text {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.about-tone-dark .about-mission-quote__text {
  color: #fff;
}

.about-values-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.about-tone-dark .about-values-list {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.about-values-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 20px;
  align-items: start;
  margin: 0;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.about-tone-dark .about-values-list__item {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.about-values-list__item:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.about-tone-dark .about-values-list__item:nth-child(odd) {
  border-right-color: rgba(255, 255, 255, 0.16);
}

.about-values-list__item:nth-child(even) {
  padding-left: 28px;
}

.about-values-list__item:hover {
  background: rgba(36, 48, 76, 0.04);
}

.about-tone-dark .about-values-list__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.about-values-list__index {
  display: block;
  min-width: 2.2rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-top: 0.2rem;
}

.about-values-list__copy h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
}

.about-values-list__copy p {
  margin-top: 10px;
  max-width: 34rem;
  line-height: 1.6;
}

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

.about-3s article {
  padding: 28px 24px;
  border-top: 3px solid var(--accent);
  background: #fff;
}

.about-3s__code {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-3s h3 {
  font-size: 1.4rem;
}

.about-3s p {
  margin: 12px 0 0;
  color: var(--muted);
}

.about-advantage-note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 52rem;
}

.about-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-contacts__group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-contacts__group a {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.about-contacts__group a:hover,
.about-contacts__group a:focus-visible {
  color: var(--accent);
}

@media (max-width: 960px) {
  .about-intro,
  .about-values-list,
  .about-3s,
  .about-contacts,
  .about-client-grid {
    grid-template-columns: 1fr;
  }

  .about-values-list__item:nth-child(odd),
  .about-values-list__item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .about-mission-quote {
    padding-left: 20px;
  }

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

@media (max-width: 560px) {
  .about-client-grid {
    grid-template-columns: 1fr;
  }
}

.section-heading h2,
.about-panel h2,
.contact-band h2 {
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading p,
.about-panel p,
.contact-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.models {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100dvh - var(--site-header-height));
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 34, 42, 0.06), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 48%, #f4f7fb 100%);
}

.models-shell {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: min(1320px, calc(100% - 40px));
  min-height: 0;
}

.models-heading {
  max-width: 640px;
  margin-bottom: 22px;
}

.models-heading p {
  margin-bottom: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  flex: 1 1 auto;
  align-content: center;
  gap: 12px;
  min-height: 0;
  overflow: visible;
}

.brand-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: span 2;
  min-height: 0;
  height: clamp(290px, 32vh, 340px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #101828;
  isolation: isolate;
  transition:
    transform 420ms var(--ease-smooth),
    box-shadow 420ms var(--ease-smooth);
}

.brand-card--static {
  cursor: default;
}

.brand-card:nth-child(4) {
  grid-column: 1 / span 3;
}

.brand-card:nth-child(5) {
  grid-column: 4 / span 3;
}

.brand-card:hover,
.brand-card:focus-visible {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(21, 28, 47, 0.22);
}

.brand-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #101828;
  pointer-events: none;
}

.brand-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) contrast(1.04);
  transition: filter 420ms var(--ease-smooth);
}

.brand-card[data-cms-item="brand-isuzu"] .brand-card__media img {
  object-position: center 58%;
}

.brand-card[data-cms-item="brand-jac"] .brand-card__media img {
  object-position: 52% 45%;
}

.brand-card[data-cms-item="brand-faw"] .brand-card__media img {
  object-position: 42% 50%;
}

.brand-card[data-cms-item="brand-kamaz"] .brand-card__media img {
  object-position: 40% center;
}

.brand-card[data-cms-item="brand-gaz"] .brand-card__media img {
  object-position: 48% 52%;
}

.brand-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 22, 39, 0.28) 0%,
      rgba(15, 22, 39, 0.08) 42%,
      rgba(15, 22, 39, 0.78) 100%
    );
  transition: background 420ms var(--ease-smooth);
  pointer-events: none;
}

.brand-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  min-height: 100%;
  padding: 16px 16px 14px;
  text-align: left;
}

.model-logo {
  position: relative;
  width: min(100%, 132px);
  height: 48px;
  margin-bottom: auto;
}

.model-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  transition: opacity 420ms var(--ease-smooth);
}

.brand-name {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-card small {
  display: block;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 320ms ease;
}

.brand-desc {
  display: -webkit-box;
  margin: 2px 0 0;
  max-width: 36ch;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 360ms var(--ease-smooth),
    transform 360ms var(--ease-smooth);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.brand-card:hover .brand-card__media img,
.brand-card:focus-visible .brand-card__media img {
  filter: brightness(1) contrast(1.03);
}

.brand-card:hover .brand-card__shade,
.brand-card:focus-visible .brand-card__shade {
  background:
    linear-gradient(
      180deg,
      rgba(15, 22, 39, 0.08) 0%,
      rgba(15, 22, 39, 0.02) 40%,
      rgba(15, 22, 39, 0.55) 100%
    );
}

.brand-card:hover .model-logo img,
.brand-card:focus-visible .model-logo img {
  opacity: 1;
}

.brand-card:hover small,
.brand-card:focus-visible small {
  color: rgba(255, 255, 255, 0.9);
}

.brand-card:hover .brand-desc,
.brand-card:focus-visible .brand-desc {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .brand-card,
  .brand-card__media img,
  .brand-card__shade,
  .brand-desc,
  .model-logo img,
  .brand-card small {
    transition: none;
  }

  .brand-card:hover,
  .brand-card:focus-visible {
    transform: none;
  }

  .brand-desc {
    transform: none;
  }
}

.stock-models.section {
  --stock-truck-scale: 1.3;
  --stock-photo-pad-top: clamp(64px, 9vw, 96px);
  --stock-photo-pad-bottom: clamp(18px, 3vw, 28px);
  --stock-photo-height: clamp(400px, 48vw, 560px);
  --stock-stage-min-height: clamp(430px, 52vw, 590px);
  --stock-bg-band-height: clamp(96px, 12vh, 124px);
  --stock-arrow-size: 52px;
  --stock-arrow-gap: clamp(12px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(72px, 8vw, 104px) 0 clamp(56px, 6vw, 80px);
  background:
    radial-gradient(circle at 8% 8%, rgba(36, 48, 76, 0.03), transparent 38%),
    #fff;
}

.stock-models-shell {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: clamp(40px, 5vw, 52px);
  width: min(1220px, calc(100% - 40px));
  min-height: 0;
}

.stock-models-heading {
  flex: 0 0 auto;
  max-width: none;
  margin-bottom: 0;
  text-align: center;
}

.stock-models-heading h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  letter-spacing: -0.04em;
}

.stock-models-panel {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: clamp(32px, 4vw, 40px);
  min-height: 0;
}

.stock-models__status,
.stock-models__empty {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.stock-models__brand-tabs,
.stock-models__model-tabs {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 16px;
  margin: 0 auto;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stock-models__brand-tabs::-webkit-scrollbar,
.stock-models__model-tabs::-webkit-scrollbar {
  display: none;
}

.stock-models__brand-tabs {
  padding: 0 2px;
  margin-bottom: clamp(4px, 1vw, 8px);
}

.stock-models__model-tabs {
  padding: clamp(4px, 1vw, 8px) 2px 0;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.stock-models__brand-tab,
.stock-models__model-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: var(--radius-btn);
  color: var(--brand);
  background: transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.stock-models__brand-tab:hover,
.stock-models__brand-tab:focus-visible,
.stock-models__model-tab:hover,
.stock-models__model-tab:focus-visible {
  color: var(--brand-dark);
  background: transparent;
  box-shadow: none;
}

.stock-models__brand-tab:focus-visible,
.stock-models__model-tab:focus-visible {
  outline: 2px solid rgba(36, 48, 76, 0.28);
  outline-offset: 3px;
}

.stock-models__brand-tab.is-active,
.stock-models__model-tab.is-active {
  color: #fff;
  background: var(--brand);
  font-weight: 800;
  box-shadow: none;
}

.stock-models__brand-tab.is-active:hover,
.stock-models__brand-tab.is-active:focus-visible,
.stock-models__model-tab.is-active:hover,
.stock-models__model-tab.is-active:focus-visible {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: none;
}

.stock-models__panels {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  margin-top: 0;
}

.stock-models__panel {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.stock-models__panel[hidden] {
  display: none;
}

.stock-models__slider {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
  min-width: 0;
}

.stock-models__viewer {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vw, 36px);
  width: 100%;
}

.stock-models__stage-rail {
  position: relative;
  width: 100%;
  padding-top: clamp(8px, 1.5vw, 16px);
  outline: none;
}

.stock-models__stage-rail--navigable:focus-visible {
  outline: 2px solid rgba(36, 48, 76, 0.2);
  outline-offset: 6px;
  border-radius: 20px;
}

.stock-models__stage-rail--navigable .stock-models__stage-showcases {
  padding-inline: calc(var(--stock-arrow-size) + var(--stock-arrow-gap));
}

.stock-models__stage-rail--navigable .stock-models__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
}

.stock-models__stage-rail--navigable .stock-models__arrow--prev {
  left: 0;
}

.stock-models__stage-rail--navigable .stock-models__arrow--next {
  right: 0;
  left: auto;
  order: unset;
}

.stock-models__stage-rail--navigable .stock-models__arrow:hover,
.stock-models__stage-rail--navigable .stock-models__arrow:focus-visible {
  transform: translateY(calc(-50% - 2px));
}

.stock-models__stage-showcases,
.stock-models__info-showcases {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

.stock-models__stage {
  position: relative;
  display: flex;
  grid-area: 1 / 1;
  flex: 0 0 auto;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: var(--stock-stage-min-height);
  padding: clamp(16px, 2vw, 24px) 0 clamp(10px, 1.5vw, 14px);
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 320ms var(--ease-smooth),
    transform 320ms var(--ease-smooth),
    visibility 320ms;
  pointer-events: none;
}

.stock-models__stage.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.stock-models__info {
  display: flex;
  grid-area: 1 / 1;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.5vw, 14px);
  width: min(100%, 560px);
  margin: clamp(8px, 1.5vw, 16px) auto 0;
  padding-bottom: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 320ms var(--ease-smooth),
    visibility 320ms var(--ease-smooth);
}

.stock-models__info.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stock-models__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--stock-arrow-size);
  height: var(--stock-arrow-size);
  padding: 0;
  border: 0;
  border-radius: var(--radius-btn);
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(36, 48, 76, 0.22);
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.stock-models__arrow span {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.stock-models__arrow--prev span {
  transform: translateX(2px) rotate(135deg);
}

.stock-models__arrow--next {
  order: 2;
}

.stock-models__arrow--next span {
  transform: translateX(-2px) rotate(-45deg);
}

.stock-models__stage-rail--navigable .stock-models__arrow:hover,
.stock-models__stage-rail--navigable .stock-models__arrow:focus-visible {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 16px 32px rgba(36, 48, 76, 0.3);
  transform: translateY(calc(-50% - 2px));
}

.stock-models__arrow:focus-visible {
  outline: 2px solid rgba(36, 48, 76, 0.28);
  outline-offset: 3px;
}

.stock-models__bg-band {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  display: grid;
  grid-template-columns: 43% 57%;
  width: min(100%, 1040px);
  height: var(--stock-bg-band-height);
  overflow: hidden;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.stock-models__bg-left {
  background: linear-gradient(90deg, #e7ebf2 0%, #d5dde8 100%);
}

.stock-models__bg-right {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
}

.stock-models__bg-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
}

.stock-models__photo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100%, 1000px);
  height: var(--stock-photo-height);
  padding: var(--stock-photo-pad-top) 12px var(--stock-photo-pad-bottom);
  box-sizing: border-box;
  overflow: visible;
}

.stock-models__photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(var(--stock-truck-scale));
  transform-origin: center calc(100% - 2px);
  filter: drop-shadow(0 24px 38px rgba(15, 22, 39, 0.2));
}

.stock-models__title {
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.stock-models__details {
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-width: 62ch;
}

.stock-models__detail-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.45;
}

.stock-models__detail-line:first-child {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.stock-models__cta {
  min-height: 48px;
  margin-top: clamp(8px, 1.5vw, 14px);
  padding: 0 26px;
  border: 1px solid var(--brand);
  border-radius: var(--radius-btn);
  color: #fff;
  background: var(--brand);
  box-shadow: none;
  font: inherit;
  font-size: 1.02rem;
  cursor: pointer;
}

.stock-models__cta:hover,
.stock-models__cta:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 14px 28px rgba(36, 48, 76, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .stock-models__stage,
  .stock-models__brand-tab,
  .stock-models__model-tab,
  .stock-models__arrow {
    transition: none;
  }

  .stock-models__photo img {
    transform: scale(var(--stock-truck-scale));
  }

  .stock-models__stage {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .stock-models.section {
    --stock-bg-band-height: clamp(80px, 10vw, 108px);
  }

  .stock-models__stage-rail {
    padding-top: 0;
    overflow: visible;
  }

  .stock-models__viewer {
    overflow: visible;
  }

  .stock-models__stage-rail--navigable .stock-models__arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  .stock-models__stage-rail--navigable .stock-models__arrow:hover,
  .stock-models__stage-rail--navigable .stock-models__arrow:focus-visible {
    transform: translateY(calc(-50% - 2px));
  }

  .stock-models__stage-showcases {
    overflow: visible;
  }

  .stock-models__bg-band {
    top: 50%;
    bottom: auto;
    z-index: 0;
    width: min(100%, calc(100% - 8px));
    height: var(--stock-bg-band-height);
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .stock-models.section {
    --stock-showcase-height: clamp(270px, 44vw, 370px);
    --stock-stage-min-height: calc(var(--stock-showcase-height) + var(--stock-bg-band-height) * 0.55);
    --stock-truck-scale: 1.08;
    --stock-truck-center-ratio: 0.36;
  }

  .stock-models__stage-rail--navigable {
    min-height: var(--stock-stage-min-height);
  }

  .stock-models__stage-showcases {
    min-height: var(--stock-stage-min-height);
    overflow: visible;
  }

  .stock-models__stage {
    align-items: stretch;
    justify-content: center;
    min-height: var(--stock-stage-min-height);
    padding: clamp(18px, 3.5vw, 28px) 0 clamp(14px, 2.5vw, 22px);
    overflow: visible;
  }

  .stock-models__photo {
    position: absolute;
    left: 50%;
    top: calc(50% + var(--stock-showcase-height) * var(--stock-truck-center-ratio));
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: min(100%, 1000px);
    height: var(--stock-showcase-height);
    padding: 0 clamp(8px, 2vw, 16px);
    box-sizing: border-box;
    overflow: visible;
    transform: translate(-50%, -100%);
    pointer-events: none;
  }

  .stock-models__photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    transform: scale(var(--stock-truck-scale));
    transform-origin: center bottom;
    pointer-events: auto;
    filter: none;
  }
}

@media (max-width: 820px) {
  .stock-models.section {
    min-height: 0;
    padding: clamp(56px, 10vw, 72px) 0;
    --stock-arrow-size: 44px;
    --stock-arrow-gap: 10px;
  }

  .stock-models-shell {
    gap: 32px;
    width: min(100% - 28px, 1180px);
  }

  .stock-models-heading {
    margin-bottom: 0;
  }

  .stock-models-panel {
    gap: 28px;
    min-height: 0;
  }

  .stock-models__arrow {
    width: var(--stock-arrow-size);
    height: var(--stock-arrow-size);
  }

  .stock-models__model-tabs {
    justify-content: flex-start;
    gap: 12px;
    padding-inline: 2px;
    margin-bottom: clamp(18px, 4vw, 28px);
    position: relative;
    z-index: 4;
  }

  .stock-models__brand-tab,
  .stock-models__model-tab {
    min-height: 42px;
    padding: 9px 18px;
    font-size: 0.9rem;
  }

  .stock-models__brand-tabs {
    justify-content: flex-start;
    gap: 12px;
    padding-inline: 2px;
  }

  .stock-models__title {
    font-size: 1.75rem;
  }

  .stock-models__detail-line {
    font-size: 0.95rem;
  }

  .stock-models__cta {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 767px) {
  .stock-models.section {
    --stock-bg-band-height: clamp(72px, 14vw, 96px);
    --stock-stage-min-height: clamp(210px, 48vw, 290px);
    --stock-truck-scale: 1;
  }

  .stock-models-shell {
    overflow-x: clip;
  }

  .stock-models__viewer {
    gap: 8px;
  }

  .stock-models__stage-rail {
    padding-top: 0;
    overflow-x: clip;
    overflow-y: visible;
  }

  .stock-models__stage-rail--navigable .stock-models__stage-showcases {
    padding-inline: 0;
  }

  .stock-models__stage-rail--navigable {
    min-height: var(--stock-stage-min-height);
  }

  .stock-models__stage-showcases {
    min-height: var(--stock-stage-min-height);
    overflow: visible;
  }

  .stock-models__stage {
    align-items: stretch;
    justify-content: center;
    min-height: var(--stock-stage-min-height);
    padding: clamp(2px, 1vw, 6px) 0 0;
    overflow: visible;
  }

  .stock-models__bg-band {
    width: 100vw;
    max-width: none;
    left: 50%;
    margin-left: -50vw;
    transform: translateY(-50%);
  }

  .stock-models__info {
    margin-top: 0;
    gap: 8px;
  }

  .stock-models__photo {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: var(--stock-photo-bottom, calc(50% - var(--stock-bg-band-height) / 2));
    z-index: 2;
    display: block;
    width: min(var(--stock-photo-width, 100%), 100%);
    height: auto;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .stock-models__photo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    transform: scale(var(--stock-truck-scale));
    transform-origin: center bottom;
    pointer-events: auto;
    filter: none;
  }
}

@media (max-height: 860px) and (min-width: 821px) {
  .stock-models.section {
    padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
  }

  .stock-models-shell {
    gap: 32px;
  }

  .stock-models-heading {
    margin-bottom: 0;
  }

  .stock-models-heading h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  }

  .stock-models__brand-tabs {
    margin-bottom: 0;
  }

  .stock-models-panel {
    gap: 28px;
  }

  .stock-models__panel {
    gap: 28px;
  }

  .stock-models.section {
    --stock-truck-scale: 1.22;
    --stock-photo-pad-top: clamp(44px, 6vw, 64px);
    --stock-photo-pad-bottom: clamp(14px, 2.5vw, 22px);
    --stock-photo-height: clamp(340px, 40vw, 480px);
    --stock-stage-min-height: clamp(370px, 42vw, 510px);
  }

  .stock-models__stage {
    overflow: hidden;
  }

  .stock-models__photo {
    height: var(--stock-photo-height);
  }

  .stock-models__photo img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
    transform: scale(var(--stock-truck-scale));
    transform-origin: center bottom;
  }

  .stock-models__title {
    font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  }

  .stock-models__detail-line {
    font-size: 0.86rem;
  }

  .stock-models__cta {
    min-height: 40px;
    font-size: 0.92rem;
  }
}

.about.section {
  background: var(--brand);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.about-panel {
  min-height: 470px;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 80% 20%, rgba(217, 34, 42, 0.28), transparent 34%),
    rgba(15, 22, 39, 0.45);
}

.about-panel h2 {
  color: #fff;
}

.about-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  opacity: 0.46;
  transform: translateY(18px);
  transition:
    opacity 520ms var(--ease-smooth),
    transform 520ms var(--ease-smooth);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid var(--accent);
  opacity: 0.58;
  transform: translateY(18px);
  transition:
    opacity 520ms var(--ease-smooth) 120ms,
    transform 520ms var(--ease-smooth) 120ms;
}

.about-panel:hover p,
.about-panel:focus-within p,
.about-panel:hover .text-link,
.about-panel:focus-within .text-link {
  opacity: 1;
  transform: translateY(0);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: stretch;
}

.about-stats article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 176px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, #fff, #f8fbff),
    #fff;
  box-shadow: 0 18px 50px rgba(36, 48, 76, 0.07);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 340ms var(--ease-smooth),
    border-color 340ms var(--ease-smooth),
    box-shadow 340ms var(--ease-smooth),
    background 340ms var(--ease-smooth);
}

.about-stats article::before {
  position: absolute;
  right: -82px;
  bottom: -96px;
  z-index: 0;
  width: 245px;
  height: 245px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(217, 34, 42, 0.2), transparent 0 22%, transparent 42%),
    rgba(36, 48, 76, 0.08);
  opacity: 0.86;
  pointer-events: none;
  transform: scale(0.66);
  transition:
    opacity 340ms var(--ease-smooth),
    transform 340ms var(--ease-smooth);
}

.about-stats article::after {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(217, 34, 42, 0.12));
  opacity: 0.78;
  transform: scaleX(0.28);
  transform-origin: left;
  transition:
    opacity 340ms var(--ease-smooth),
    transform 340ms var(--ease-smooth);
}

.about-stats article:hover,
.about-stats article:focus-within {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(36, 48, 76, 0.22);
  background:
    linear-gradient(135deg, #fff, #eef4fb),
    #fff;
  box-shadow: var(--shadow);
}

.about-stats article:hover::before,
.about-stats article:focus-within::before {
  opacity: 1;
  transform: translate(-28px, -24px) scale(1.08);
}

.about-stats article:hover::after,
.about-stats article:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-stats strong {
  color: var(--brand);
  font-size: clamp(2.25rem, 3.6vw, 3.35rem);
  line-height: 1;
}

.about-stat--showrooms {
  justify-content: flex-start;
  padding: 26px;
}

.about-stat--service-area {
  padding: 26px;
}

.about-stat--service-area strong {
  font-size: clamp(2.45rem, 4vw, 3.7rem);
}

.about-stat--service-area span {
  max-width: 100%;
}

.about-stats .about-stats__value--split {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  line-height: 0.95;
}

.about-stats .about-stats__value--split span {
  margin: 0;
  color: inherit;
}

.about-stats .about-stats__value--split span:first-child {
  font-size: clamp(3.5rem, 6vw, 5.2rem);
}

.about-stats .about-stats__value--split span:last-child {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.about-stats span {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  font-weight: 800;
  line-height: 1.22;
}

.about-stat-brands {
  grid-column: 1 / -1;
  min-height: 190px;
  padding-right: 286px;
}

.stat-reveal > strong,
.stat-reveal > span {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition:
    opacity 780ms var(--ease-smooth),
    transform 780ms var(--ease-smooth);
}

.stat-reveal > strong {
  transform: scale(0.94);
}

.stat-reveal > span {
  transform: translateX(34px);
  transition-delay: 220ms;
}

.stat-reveal.is-visible > strong,
.stat-reveal.is-visible > span {
  opacity: 1;
  transform: none;
}

.about-brand-logos {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  display: block;
  transform: translateX(36px);
  opacity: 0.18;
  pointer-events: none;
  transition:
    opacity 480ms var(--ease-smooth),
    transform 480ms var(--ease-smooth);
}

.about-brand-logos img {
  position: absolute;
  width: clamp(48px, 6vw, 66px);
  height: clamp(34px, 4.6vw, 48px);
  object-fit: contain;
  opacity: 0.32;
  transform: translateX(44px) scale(0.86);
  transition:
    opacity 480ms var(--ease-smooth),
    transform 480ms var(--ease-smooth);
}

.about-brand-logos img:nth-child(1) {
  top: 18px;
  right: 34px;
}

.about-brand-logos img:nth-child(2) {
  top: 24px;
  right: 176px;
  transition-delay: 70ms;
}

.about-brand-logos img:nth-child(3) {
  top: 72px;
  right: 104px;
  transition-delay: 140ms;
}

.about-brand-logos img:nth-child(4) {
  top: 112px;
  right: 30px;
  transition-delay: 210ms;
}

.about-brand-logos img:nth-child(5) {
  top: 116px;
  right: 190px;
  transition-delay: 280ms;
}

.about-stat-brands:hover .about-brand-logos,
.about-stat-brands:focus-within .about-brand-logos {
  opacity: 1;
  transform: translateX(0);
}

.about-stat-brands:hover .about-brand-logos img,
.about-stat-brands:focus-within .about-brand-logos img {
  opacity: 0.64;
  transform: translateX(0) scale(1.08);
}

.partners {
  background: var(--brand);
  color: #fff;
}

.partners .section-heading h2 {
  color: #fff;
}

.reveal-from-right {
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1100ms var(--ease-smooth),
    transform 1100ms var(--ease-smooth);
}

.reveal-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.partner-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: partnerCarousel 42s linear infinite;
}

.partner-carousel:hover .partner-track {
  animation-play-state: paused;
}

.partner-card {
  position: relative;
  flex: 0 0 330px;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px 24px 18px 78px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--brand-dark);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 44px rgba(5, 10, 24, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-align: left;
  isolation: isolate;
  transition:
    transform 340ms var(--ease-smooth),
    border-color 340ms var(--ease-smooth),
    box-shadow 340ms var(--ease-smooth),
    background 340ms var(--ease-smooth);
}

.partner-card::before {
  position: absolute;
  left: 22px;
  top: 50%;
  z-index: 1;
  width: 36px;
  height: 36px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.95), transparent 0 18%, transparent 38%),
    linear-gradient(135deg, var(--accent), #a9161d);
  box-shadow: 0 10px 24px rgba(217, 34, 42, 0.3);
  transform: translateY(-50%) scale(1);
  transition:
    transform 340ms var(--ease-smooth);
}

.partner-card::after {
  position: absolute;
  inset: 0 auto 0 -34%;
  z-index: -1;
  width: 42%;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(217, 34, 42, 0.14), transparent);
  transform: skewX(-18deg);
  transition:
    left 520ms var(--ease-smooth);
}

.partner-card strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  color: inherit;
  opacity: 1;
  transform: translateY(0);
  line-height: 1.18;
  transition:
    color 340ms var(--ease-smooth),
    transform 340ms var(--ease-smooth);
}

.partner-card:hover,
.partner-card:focus-within {
  transform: translateY(-5px) scale(1.015);
  border-color: #fff;
  background: #fff;
  box-shadow:
    0 26px 58px rgba(5, 10, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.partner-card:hover::before,
.partner-card:focus-within::before {
  transform: translateY(-50%) scale(1.12);
}

.partner-card:hover::after,
.partner-card:focus-within::after {
  left: 92%;
}

.partner-card:hover strong,
.partner-card:focus-within strong {
  color: var(--brand);
  transform: translateX(4px);
}

@keyframes partnerCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.stats-band {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--brand-dark);
  background:
    linear-gradient(135deg, rgba(36, 48, 76, 0.04), transparent 36%),
    var(--surface-warm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
}

.stats-grid article {
  min-height: 158px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 0 26px;
  text-align: center;
}

.stats-grid article + article {
  border-left: 1px solid var(--line);
}

.stats-grid strong {
  display: block;
  color: var(--brand);
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(36, 48, 76, 0.12);
  white-space: nowrap;
}

.stats-grid article > span:last-child {
  max-width: 210px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.stats-grid .counter {
  font-size: 1.18em;
}

.news {
  background: var(--surface-warm);
}

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

.news-status {
  margin: 0 0 18px;
  color: var(--muted);
}

.news-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.news-grid--page {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.news-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 48, 76, 0.07);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform 340ms var(--ease-smooth),
    border-color 340ms var(--ease-smooth),
    box-shadow 340ms var(--ease-smooth),
    background 340ms var(--ease-smooth);
}

.news-card__image {
  display: block;
  width: calc(100% + 56px);
  max-height: 180px;
  margin: -28px -28px 18px;
  object-fit: cover;
}

.news-card::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(36, 48, 76, 0.1);
  border-radius: 18px;
  opacity: 0.55;
  transform: scale(0.82);
  transition:
    opacity 340ms var(--ease-smooth),
    transform 340ms var(--ease-smooth);
}

.news-card::after {
  position: absolute;
  inset: auto auto 18px 18px;
  width: 44px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.55;
  transform: scaleX(0.55);
  transform-origin: left;
  transition:
    opacity 340ms var(--ease-smooth),
    transform 340ms var(--ease-smooth);
}

.news-card:hover,
.news-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(36, 48, 76, 0.22);
  background: linear-gradient(135deg, #fff, #f7f9fd);
  box-shadow: var(--shadow);
}

.news-card:hover::before,
.news-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.news-card:hover::after,
.news-card:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.news-card__category {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card__date {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 18px 0 12px;
  color: var(--brand-dark);
  font-size: 1.45rem;
  line-height: 1.12;
}

.news-card__excerpt {
  margin: 0;
  color: var(--muted);
}

.news-card__open {
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--brand);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.news-card.accent {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.news-card.accent::before {
  border-color: rgba(255, 255, 255, 0.18);
}

.news-card.accent:hover,
.news-card.accent:focus-within {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.news-card.accent h3,
.news-card.accent .news-card__open {
  color: #fff;
}

.news-card.accent .news-card__excerpt {
  color: rgba(255, 255, 255, 0.72);
}

.news-card.accent .news-card__date {
  color: rgba(255, 255, 255, 0.62);
}

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

.support-section .section-heading {
  margin-bottom: 24px;
}

.support-section--dark {
  color: #fff;
  background: var(--brand);
}

.support-section--dark .section-heading h2 {
  color: #fff;
}

.support-section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.support-section--light {
  background: var(--surface-warm);
}

.support-feature {
  --support-feature-height: 240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  width: 100%;
  height: var(--support-feature-height);
  min-height: var(--support-feature-height);
  max-height: var(--support-feature-height);
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 36px rgba(36, 48, 76, 0.08);
}

#specials .support-feature,
#service .support-feature {
  height: var(--support-feature-height);
  min-height: var(--support-feature-height);
  max-height: var(--support-feature-height);
}

.support-feature::before,
.support-feature::after {
  display: none;
}

.support-feature:hover,
.support-feature:focus-within {
  border-color: rgba(36, 48, 76, 0.22);
  box-shadow: 0 18px 44px rgba(36, 48, 76, 0.12);
  transform: translateY(-2px);
}

.support-feature--flip .support-feature__media {
  order: 2;
}

.support-feature__media {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--surface-warm);
}

.support-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#specials .support-feature__media {
  background: #0b0d12;
}

.support-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: clamp(20px, 3vw, 28px);
  overflow: hidden;
}

.support-feature__lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
}

.support-feature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.support-feature__actions .news-card__open {
  margin-top: 0;
  padding-top: 0;
}

.support-feature__actions .news-card__open {
  display: inline-flex;
  text-decoration: none;
}

.content-page {
  text-align: left;
}

.content-page__column {
  width: 100%;
  max-width: 820px;
  margin: 0;
  text-align: left;
}

.content-page--aligned .page-hero h1,
.content-page--aligned .page-hero p,
.content-page--aligned .service-program,
.content-page--aligned .service-program h2,
.content-page--aligned .service-program p,
.content-page--aligned .service-program .about-plain-list,
.content-page--aligned .service-page__cta,
.content-page--aligned .specials-program,
.content-page--aligned .specials-program h2,
.content-page--aligned .specials-program h3,
.content-page--aligned .specials-program p,
.content-page--aligned .specials-program .about-plain-list,
.content-page--aligned .specials-page__cta,
.content-page--aligned .lead-form {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.content-page--aligned .reveal-from-right {
  transform: none;
}

.content-page--aligned .reveal-from-right.is-visible {
  transform: none;
}

.content-page .specials-page,
.content-page .service-page,
.content-page .specials-page__cta,
.content-page .service-page__cta {
  max-width: 820px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.content-page .specials-page__cta p,
.content-page .service-page__cta p {
  max-width: 820px;
}

.specials-page,
.service-page {
  max-width: 820px;
}

.specials-program h2,
.service-program h2 {
  margin: 14px 0 18px;
  color: var(--brand-dark);
  letter-spacing: -0.055em;
  line-height: 0.98;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.specials-program h3,
.service-program h3 {
  margin: 28px 0 14px;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.specials-program p,
.service-program p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.specials-program .about-plain-list,
.service-program .about-plain-list {
  margin: 0 0 18px;
}

.about-tone-dark .specials-program h2,
.about-tone-dark .specials-program h3,
.about-tone-dark .service-program h2,
.about-tone-dark .service-program h3 {
  color: #fff;
}

.about-tone-dark .specials-program p,
.about-tone-dark .service-program p {
  color: rgba(255, 255, 255, 0.76);
}

.specials-page__cta,
.service-page__cta {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.service-program .service-page__cta {
  margin-top: 28px;
}

.specials-page__cta p,
.service-page__cta p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
}

.about-tone-dark .specials-page__cta p,
.about-tone-dark .service-page__cta p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 820px;
}

.lead-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form__field {
  display: grid;
  gap: 8px;
}

.lead-form__label {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form__input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition:
    border-color 220ms var(--ease-smooth),
    box-shadow 220ms var(--ease-smooth);
}

.lead-form__input::placeholder {
  color: #98a2b3;
}

.lead-form__input:focus {
  border-color: rgba(36, 48, 76, 0.42);
  box-shadow: 0 0 0 3px rgba(36, 48, 76, 0.1);
}

.lead-form__status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.lead-form__status.is-error {
  color: var(--accent);
}

.lead-form__status.is-success {
  color: #0f7a45;
}

.lead-form .button {
  justify-self: start;
  min-width: 220px;
}

.lead-form .button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.about-tone-dark .lead-form__label {
  color: rgba(255, 255, 255, 0.78);
}

.about-tone-dark .lead-form__input {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.about-tone-dark .lead-form__input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.about-tone-dark .lead-form__input:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.about-tone-dark .lead-form__status.is-success {
  color: #9ef0c1;
}

@media (max-width: 720px) {
  .lead-form__fields {
    grid-template-columns: 1fr;
  }

  .lead-form .button {
    width: 100%;
    justify-self: stretch;
  }
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.news-modal[hidden] {
  display: none;
}

.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 34, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.news-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(84vh, 860px);
  padding: 36px 36px 32px;
  border: 1px solid rgba(217, 224, 234, 0.9);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: auto;
}

.news-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(36, 48, 76, 0.22);
  border-radius: var(--radius-btn);
  color: var(--brand);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 260ms var(--ease-smooth),
    background 260ms var(--ease-smooth),
    color 260ms var(--ease-smooth);
}

.news-modal__close span {
  position: relative;
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.news-modal__close span::before,
.news-modal__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--brand);
}

.news-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.news-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.news-modal__close:hover,
.news-modal__close:focus-visible {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.news-modal__category {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-modal__title {
  margin: 16px 0 0;
  color: var(--brand-dark);
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  line-height: 1.12;
}

.news-modal__body {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.news-modal__image {
  display: block;
  width: 100%;
  max-height: 280px;
  margin: 0 0 18px;
  border-radius: 16px;
  object-fit: cover;
}

.news-modal__body p {
  margin: 0 0 14px;
}

.news-modal__body p:last-child {
  margin-bottom: 0;
}

.news-modal__cta {
  margin-top: 8px;
  padding-top: 8px;
}

.news-modal__cta .button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
}

.news-modal__cta .button-primary {
  border-color: transparent;
}

body.is-modal-open {
  overflow: hidden;
}

.model-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 16px;
  --model-modal-truck-scale: 1.22;
  --model-modal-photo-width: min(100%, 520px);
}

.model-modal[hidden] {
  display: none;
}

.model-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 34, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.model-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1380px, 100%);
  height: min(92vh, 900px);
  max-height: min(92vh, 900px);
  border: 1px solid rgba(217, 224, 234, 0.92);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.model-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(36, 48, 76, 0.22);
  border-radius: var(--radius-btn);
  color: var(--brand);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 260ms var(--ease-smooth),
    background 260ms var(--ease-smooth),
    color 260ms var(--ease-smooth);
}

.model-modal__close span {
  position: relative;
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.model-modal__close span::before,
.model-modal__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--brand);
}

.model-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.model-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.model-modal__close:hover,
.model-modal__close:focus-visible {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.model-modal__layout {
  display: grid;
  grid-template-columns: minmax(300px, 44%) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.model-modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(24px, 3.5vw, 36px) clamp(18px, 2.5vw, 24px);
  background:
    linear-gradient(180deg, rgba(244, 247, 252, 0.96), rgba(236, 241, 249, 0.92)),
    #f4f7fc;
  border-right: 1px solid var(--line);
}

.model-modal__photo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--model-modal-photo-width);
  aspect-ratio: 1000 / 620;
  max-height: 100%;
}

.model-modal__photo-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 58%;
  transform: scale(var(--model-modal-truck-scale));
  transform-origin: center 58%;
  filter: drop-shadow(0 18px 28px rgba(15, 22, 39, 0.15));
}

.model-modal__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: 34px 38px 30px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.model-modal__brand {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-modal__title {
  margin: 12px 0 0;
  color: var(--brand-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.model-modal__subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.model-modal__specs {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.model-modal__spec-section {
  padding-top: 4px;
}

.model-modal__spec-heading {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.model-modal__spec-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.model-modal__spec-row {
  display: grid;
  grid-template-columns: minmax(140px, 38%) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 224, 234, 0.9);
  border-radius: 14px;
  background: rgba(247, 249, 252, 0.75);
}

.model-modal__spec-row dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.model-modal__spec-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .model-modal {
    padding: 10px;
    --model-modal-truck-scale: 1.14;
    --model-modal-photo-width: min(100%, 420px);
  }

  .model-modal__dialog {
    height: min(94vh, 900px);
    max-height: min(94vh, 900px);
  }

  .model-modal__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .model-modal__media {
    flex: 0 0 auto;
    max-height: 38vh;
    padding: 18px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .model-modal__photo-stage {
    width: min(100%, 380px);
    max-height: calc(38vh - 36px);
  }

  .model-modal__content {
    padding: 24px 20px 22px;
  }

  .model-modal__spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.call-widget {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.call-widget__trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.call-widget__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px 0 14px;
  border: 1px solid rgba(36, 48, 76, 0.12);
  border-radius: var(--radius-btn);
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 22, 39, 0.14);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.call-widget__label::before {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #1faa59;
  box-shadow: 0 0 0 4px rgba(31, 170, 89, 0.16);
  content: "";
}

.call-widget__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border: 1px solid rgba(36, 48, 76, 0.12);
  border-radius: var(--radius-btn);
  color: var(--brand);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 22, 39, 0.14);
}

.call-widget__icon::before,
.call-widget__icon::after {
  position: absolute;
  inset: -5px;
  border: 1.5px solid rgba(36, 48, 76, 0.28);
  border-radius: calc(var(--radius-btn) + 4px);
  content: "";
  pointer-events: none;
  animation: call-widget-pulse 2.8s var(--ease-smooth) infinite;
}

.call-widget__icon::after {
  animation-delay: 1.4s;
}

.call-widget__icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.call-widget__trigger:hover .call-widget__icon,
.call-widget__trigger:focus-visible .call-widget__icon,
.call-widget.is-open .call-widget__icon {
  border-color: var(--brand);
  background: var(--brand);
}

.call-widget__trigger:hover .call-widget__icon img,
.call-widget__trigger:focus-visible .call-widget__icon img,
.call-widget.is-open .call-widget__icon img {
  filter: brightness(0) invert(1);
}

.call-widget__trigger:hover .call-widget__label,
.call-widget__trigger:focus-visible .call-widget__label,
.call-widget.is-open .call-widget__label {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.call-widget__trigger:hover .call-widget__label::before,
.call-widget__trigger:focus-visible .call-widget__label::before,
.call-widget.is-open .call-widget__label::before {
  background: #7dffb0;
  box-shadow: 0 0 0 4px rgba(125, 255, 176, 0.22);
}

.call-widget.is-open .call-widget__icon::before,
.call-widget.is-open .call-widget__icon::after {
  animation: none;
  opacity: 0;
}

.call-widget__menu {
  display: grid;
  gap: 8px;
  min-width: 196px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  transform-origin: bottom right;
  animation: call-widget-menu-in 0.22s var(--ease-smooth);
}

.call-widget__menu[hidden] {
  display: none;
}

.call-widget__option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-btn);
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.call-widget__option:hover,
.call-widget__option:focus-visible {
  color: #fff;
  background: var(--brand);
  outline: none;
}

.call-widget__option--whatsapp:hover,
.call-widget__option--whatsapp:focus-visible {
  background: #1faa59;
}

.call-widget__option-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.call-widget__option-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes call-widget-pulse {
  0% {
    opacity: 0.42;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.22);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes call-widget-menu-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-widget__icon::before,
  .call-widget__icon::after,
  .call-widget__menu {
    animation: none;
  }
}

.contact-band {
  padding: 64px 0;
  color: #fff;
  background: var(--brand-dark);
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-band h2 {
  max-width: 760px;
  color: #fff;
}

.contact-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-band .lead-form--band {
  flex: 0 1 420px;
  width: min(100%, 420px);
}

.contact-band .lead-form__label {
  color: rgba(255, 255, 255, 0.82);
}

.contact-band .lead-form__input {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.contact-band .lead-form__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-band .lead-form__input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.contact-band .lead-form__status.is-success {
  color: #b8f5c6;
}

.contact-band .lead-form__status.is-error {
  color: #ffb4b4;
}

.contact-band__phone {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact-band__phone:hover,
.contact-band__phone:focus-visible {
  color: #fff;
}

.contacts-page__form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(36, 48, 76, 0.1);
}

.contacts-page__form h3 {
  margin: 0 0 8px;
}

.contacts-page__form p {
  margin: 0 0 20px;
  color: var(--muted);
}

.site-footer {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
  background: #0f1627;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  margin-left: 0;
  color: #fff;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-footer p {
  max-width: 360px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  margin: 0;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-btn);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.site-footer .social-link img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-footer .social-link span {
  display: inline;
  margin: 0;
  color: inherit;
}

.map-card {
  min-height: 220px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.map-card .map-embed {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.map-card a {
  display: block;
  margin: 0;
  padding: 12px 14px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1050px) {
  .header-contacts {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 0;
  }

  .header-contacts > :not(.lang-switch) {
    display: none;
  }

  .support-feature,
  .support-feature--flip,
  #specials .support-feature,
  #service .support-feature {
    grid-template-columns: 1fr;
    --support-feature-height: auto;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .support-feature--flip .support-feature__media {
    order: 0;
  }

  .support-feature__media {
    min-height: 180px;
    height: 200px;
    max-height: 200px;
  }

  .support-feature__body {
    height: auto;
    overflow: visible;
  }

  .brand-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    height: auto;
    min-height: 0;
  }

  .brand-card {
    grid-column: span 2;
    height: 180px;
    min-height: 0;
  }

  .brand-card:nth-child(4) {
    grid-column: 1 / span 3;
  }

  .brand-card:nth-child(5) {
    grid-column: 4 / span 3;
  }

  .partner-card {
    flex-basis: 270px;
  }

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

  .stats-grid article {
    min-height: 150px;
    border-left: 0;
    background: rgba(255, 255, 255, 0.58);
  }

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

@media (max-width: 820px) {
  :root {
    --site-header-height: 71px;
  }

  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .section-shell,
  .header-top,
  .main-nav {
    width: min(100% - 28px, 1180px);
  }

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

  .brand {
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    padding: 0 0 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: var(--radius-btn);
    background: var(--surface-warm);
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
    padding: calc(var(--site-header-height) + 40px) 0 96px;
  }

  .section {
    padding: 76px 0;
  }

  section.section.about-page {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .models {
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .models-shell {
    width: min(100% - 28px, 1320px);
  }

  .brand-grid,
  .about-layout,
  .news-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-card,
  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    grid-column: auto;
    height: 190px;
    width: auto;
    justify-self: stretch;
  }

  .brand-card:nth-child(5) {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    justify-self: center;
  }

  .brand-card__content {
    padding: 16px 14px 14px;
  }

  .partner-card {
    flex-basis: 250px;
  }

  .about-panel {
    min-height: 0;
    padding: 32px;
    overflow: hidden;
  }

  .about-stat-brands {
    grid-column: auto;
    padding-right: 24px;
    padding-bottom: 92px;
  }

  .about-brand-logos {
    transform: translateY(18px);
  }

  .about-stat-brands:hover .about-brand-logos,
  .about-stat-brands:focus-within .about-brand-logos {
    transform: translateY(0);
  }

  .stats-grid strong {
    white-space: normal;
  }

  .contact-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-band .lead-form--band {
    width: 100%;
  }

  .section-heading--with-action {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-all-link {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .call-widget {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .call-widget__trigger {
    gap: 10px;
  }

  .call-widget__label {
    min-height: 40px;
    padding: 0 14px 0 12px;
    font-size: 0.9rem;
  }

  .call-widget__icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-btn);
  }

  .call-widget__icon::before,
  .call-widget__icon::after {
    border-radius: calc(var(--radius-btn) + 4px);
  }

  .call-widget__icon img {
    width: 34px;
    height: 34px;
  }

  .call-widget__menu {
    min-width: 180px;
  }

  .brand-logo {
    width: 178px;
  }

  .brand-wordmark {
    gap: 14px;
    min-height: 34px;
    font-size: 1.05rem;
    letter-spacing: 0.11em;
  }

  .hero-image {
    top: auto;
    right: 0;
    bottom: 10%;
    width: 100%;
    height: min(44vh, 320px);
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .stats-grid article {
    min-height: 142px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat-brands {
    grid-column: auto;
    padding-right: 24px;
    padding-bottom: 92px;
  }

  .about-brand-logos {
    inset: 0;
    transform: translateY(18px);
  }

  .about-stat-brands:hover .about-brand-logos,
  .about-stat-brands:focus-within .about-brand-logos {
    transform: translateY(0);
  }

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

  .brand-card,
  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    grid-column: auto;
    width: 100%;
    height: 180px;
    justify-self: stretch;
  }

  .brand-desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .partner-card {
    flex-basis: min(82vw, 320px);
  }

  .hero h1 {
    font-size: clamp(2.07rem, 12.15vw, 2.75rem);
    line-height: 1.08;
  }

  html[lang="ky"] .hero h1 {
    font-size: clamp(1.72rem, 9.8vw, 2.35rem);
    line-height: 1.16;
  }

  html[lang="ky"] .hero-copy {
    gap: 16px;
  }

  html[lang="ky"] .hero-copy .hero-actions {
    margin-top: 8px;
  }

  .section-heading h2,
  .about-panel h2,
  .contact-band h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .news-modal {
    padding: 14px;
  }

  .news-modal__dialog {
    padding: 28px 22px 24px;
  }
}
