:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #121212;
  --panel-soft: #181818;
  --ink: #f7f7f7;
  --muted: #a7a7a7;
  --muted-2: #6f6f6f;
  --line: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.35 Inter, Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  margin-bottom: 0;
  max-width: 820px;
  font-size: clamp(3.2rem, 6.4vw, 7.2rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 4.8vw, 5.6rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.05;
}

.container {
  width: min(100% - 32px, 1440px);
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 2px solid #0f0f0f;
  background: #080808;
}

.topbar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  min-height: 46px;
  color: #ececec;
  font-size: 0.88rem;
}

.langs {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.langs a {
  display: grid;
  min-width: 36px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.langs .active {
  background: var(--white);
  color: var(--black);
}

.langs--header {
  display: none;
}

.site-header {
  position: fixed;
  top: 46px;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(36px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__main {
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
}

.brand__sub {
  padding: 4px 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: clamp(0.72rem, 1.1vw, 1rem);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  width: 100%;
  color: #dedede;
  font-size: 0.96rem;
}

.menu-button {
  display: grid;
  align-content: center;
  gap: 8px;
  width: 54px;
  height: 54px;
  padding: 0 8px;
  border-radius: 50%;
}

.menu-button span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(to top, #000 0%, transparent 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  align-items: end;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: clamp(48px, 7vw, 110px);
  gap: 42px;
}

.hero__title {
  max-width: 860px;
  font-size: clamp(2.9rem, 5.2vw, 5.9rem);
  line-height: 1;
}

.hero__side {
  display: flex;
  min-height: 52vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
}

.hero__side p {
  max-width: 360px;
  color: #d4d4d4;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
}

.hero-stats {
  display: grid;
  width: min(430px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stats div {
  min-height: 82px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1;
}

.hero-stats span {
  color: #cfcfcf;
  font-size: 0.84rem;
  line-height: 1.15;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 18px 24px;
  border: 0;
  border-radius: 24px;
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.button--light {
  min-width: min(430px, 100%);
  background: var(--white);
  color: var(--black);
}

.button--dark {
  min-height: 54px;
  border-radius: 18px;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
}

.quick-request {
  display: grid;
  width: min(430px, 100%);
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.quick-request h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.1;
}

.quick-request label {
  display: grid;
  gap: 5px;
  color: #cfcfcf;
  font-size: 0.78rem;
}

.quick-request input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(6, 6, 6, 0.88);
  color: var(--white);
  font-size: 0.92rem;
}

.quick-request .button {
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.88rem;
}

.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(45deg, #202020 0 14px, #282828 14px 28px);
  color: rgba(255, 255, 255, 0.58);
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.placeholder span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.95rem;
}

.section {
  padding-block: clamp(54px, 8vw, 112px);
}

.section,
.about,
.conditions,
.trip,
.process,
.faq,
.blog-list,
.news-list,
.about-company,
.about-metrics,
.about-values,
.about-cta,
.geo-service,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.autopark {
  position: relative;
  overflow: hidden;
}

.filters {
  display: flex;
  overflow-x: auto;
  margin-bottom: 32px;
}

.filters button {
  flex: 1;
  min-width: 220px;
  padding: 14px 24px;
  border: 2px solid var(--white);
  border-radius: 15px;
  background: transparent;
  color: var(--white);
  font-size: 1.05rem;
}

.filters .active {
  background: var(--white);
  color: var(--black);
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.car-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-right: 2px solid #313131;
  border-left: 2px solid #313131;
  border-radius: 28px;
  background: rgba(25, 25, 25, 0.74);
}

.car-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  background: #222;
}

.car-card__body {
  flex: 1;
  padding: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #303030;
  color: #d9d9d9;
  font-size: 0.88rem;
}

.car-card__footer {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 22px;
  background: #202020;
}

.car-card__footer p {
  margin: 0;
  color: #d8d8d8;
}

.autopark__more {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.about {
  padding-block: 28px clamp(64px, 9vw, 140px);
}

.about h2 {
  max-width: 1210px;
  font-size: clamp(2.1rem, 4.4vw, 5.2rem);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  margin-bottom: 54px;
}

.about__image {
  width: 100%;
  min-height: 360px;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
}

.about__grid p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.brand-strip span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: 18px;
  background: #101010;
  color: #d9d9d9;
  font-weight: 700;
}

.geo-service {
  padding-block: clamp(54px, 8vw, 118px);
}

.geo-service--compact {
  padding-top: 0;
}

.geo-service__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 26px;
}

.geo-service__head h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.4vw, 5.2rem);
}

.geo-service__head p,
.geo-service__note {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.geo-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #151515, #0d0d0d);
}

.geo-grid h3 {
  margin-bottom: 22px;
}

.geo-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.geo-grid li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--white);
  vertical-align: middle;
}

.geo-service__note {
  max-width: 880px;
  margin: 24px 0 0;
}

.service-directory {
  padding-block: clamp(58px, 8vw, 120px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.8rem);
}

.service-directory__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #151515, #0c0c0c);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

.service-card span {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 56px;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-directory--related {
  padding-top: 0;
}

.service-directory--related .service-card {
  min-height: 180px;
}

.conditions {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.conditions__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.conditions__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.32));
}

.conditions__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(74px, 10vw, 160px);
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(80px, 16vw, 210px);
}

.condition-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
}

.condition-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.trip {
  padding-block: clamp(64px, 9vw, 140px);
}

.trip__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
}

.trip__intro h2 {
  font-size: clamp(2.1rem, 4.5vw, 5.3rem);
}

.trip__intro p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
  margin-bottom: 34px;
}

.mosaic__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
}

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

.mosaic__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 58%);
}

.mosaic__item figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.05;
}

.mosaic__item.tall {
  grid-row: span 2;
}

.mosaic__item.wide {
  grid-column: span 2;
}

.request-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.request-form {
  padding: clamp(22px, 4vw, 42px);
  border-radius: 28px;
  background: var(--panel);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}

.request-form__head {
  grid-column: 1 / -1;
  max-width: 620px;
}

.request-form__head h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

.request-form__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.request-form input {
  width: 100%;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090909;
  color: var(--white);
  padding-inline: 18px;
}

.request-form p {
  grid-column: 1 / 4;
  margin: 0;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.request-form .button {
  align-self: stretch;
}

.process {
  padding-block: clamp(60px, 8vw, 120px);
}

.process__head {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 28px;
  align-items: end;
}

.process__head h2 {
  font-size: clamp(2.1rem, 4.4vw, 5.2rem);
}

.process__head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 26px 0 34px;
}

.steps article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-soft);
}

.steps span {
  display: block;
  margin-bottom: 46px;
  color: var(--muted-2);
  font-size: 1.05rem;
}

.steps p {
  color: var(--muted);
}

.faq {
  padding-block: clamp(48px, 7vw, 100px);
}

.faq h2 {
  font-size: clamp(2.15rem, 4.6vw, 5.4rem);
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px 0;
  color: var(--white);
  font-size: clamp(1.05rem, 1.65vw, 1.55rem);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--muted-2);
}

details p {
  max-width: 780px;
  margin: -6px 0 24px 82px;
  color: var(--muted);
  font-size: 1rem;
}

.footer {
  padding-block: clamp(34px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #080808;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 24px;
}

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

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer .langs {
  display: inline-flex;
  padding: 2px;
}

.footer .langs a {
  margin: 0;
  color: var(--muted);
  min-width: 32px;
  min-height: 26px;
  font-size: 0.72rem;
}

.footer .langs .active {
  color: var(--black);
}

.manager-line {
  display: flex;
  gap: 12px;
  align-items: center;
}

.manager-line__photo {
  width: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 50%;
}

.page-hero {
  padding-top: clamp(150px, 17vw, 230px);
  padding-bottom: clamp(54px, 9vw, 120px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42)),
    url("../img/optimized/hero.e373d3bb495b.jpg") center / cover;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: end;
}

.page-hero__inner > p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
}

.page-hero__inner div p {
  color: #d9d9d9;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.blog-list {
  padding-block: clamp(48px, 8vw, 110px);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card__body,
.blog-card__details {
  padding: 22px;
}

.blog-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--muted-2);
}

.blog-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  line-height: 1.04;
}

.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.blog-card__details {
  border-top: 1px solid var(--line);
}

.blog-card__details summary {
  display: block;
  padding: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.blog-card__details p {
  margin: 18px 0 0;
}

.empty-state {
  color: var(--muted);
  font-size: 1.3rem;
}

.page-hero--news {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38)),
    url("../img/optimized/gallery-transfer-1.a1996c8f40b3.jpg") center / cover;
}

.news-list {
  padding-block: clamp(48px, 8vw, 110px);
}

.news-grid {
  display: grid;
  gap: 22px;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.news-card__image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.news-card__content {
  padding: clamp(24px, 4vw, 48px);
}

.news-card time {
  display: block;
  margin-bottom: 18px;
  color: var(--muted-2);
}

.news-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 3.4rem);
  line-height: 1.02;
}

.news-card p {
  color: var(--muted);
}

.news-card details {
  margin-top: 24px;
  border: 0;
}

.news-card summary {
  display: inline-flex;
  grid-template-columns: none;
  padding: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.news-card details p {
  margin: 18px 0 0;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(150px, 18vw, 240px);
  background: #070707;
}

.service-hero {
  padding-top: clamp(150px, 18vw, 240px);
  padding-bottom: clamp(58px, 10vw, 140px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48)),
    url("../img/optimized/hero.e373d3bb495b.jpg") center / cover;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 44px;
  align-items: end;
}

.service-hero p:first-child {
  color: var(--muted);
  text-transform: uppercase;
}

.service-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5.2vw, 6rem);
}

.service-hero__text p {
  color: #d8d8d8;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-block: clamp(48px, 8vw, 112px);
}

.service-points article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.service-points span {
  display: block;
  margin-bottom: 42px;
  color: var(--muted-2);
}

.service-points h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  padding-bottom: clamp(54px, 8vw, 112px);
}

.service-detail img {
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  object-fit: cover;
}

.service-detail > div {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 28px;
  background: var(--panel);
}

.service-detail h2 {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.service-steps {
  display: grid;
  gap: 14px;
}

.service-steps article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0c0c0c;
}

.service-steps p {
  margin: 0;
  color: var(--muted);
}

.service-faq {
  padding-top: 0;
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 44px;
  align-items: end;
  padding-bottom: 36px;
}

.about-hero p:first-child {
  color: var(--muted);
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 5.8vw, 6.4rem);
}

.about-hero__text p {
  color: #d8d8d8;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.about-hero > img {
  width: min(100% - 32px, 1440px);
  height: clamp(280px, 42vw, 620px);
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
  object-fit: cover;
}

.about-company {
  padding-block: clamp(58px, 9vw, 130px);
}

.about-company__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.about-company__intro h2,
.about-cta h2 {
  font-size: clamp(2.1rem, 4.5vw, 5.2rem);
}

.about-company__intro p,
.about-company__media p,
.about-cta p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.about-company__media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: stretch;
}

.about-company__media img {
  width: 100%;
  min-height: 360px;
  border-radius: 28px;
  object-fit: cover;
}

.about-company__media p {
  display: grid;
  align-content: end;
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 28px;
  background: var(--panel);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: clamp(48px, 7vw, 96px);
}

.about-metrics div {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-soft);
}

.about-metrics strong,
.about-metrics span {
  display: block;
}

.about-metrics strong {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
}

.about-metrics span {
  color: var(--muted);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: clamp(54px, 8vw, 112px);
}

.about-values article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #101010;
}

.about-values span {
  display: block;
  margin-bottom: 46px;
  color: var(--muted-2);
}

.about-values h2 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.about-values p {
  color: var(--muted);
}

.about-cta {
  padding-bottom: clamp(58px, 9vw, 130px);
}

@media (max-width: 1180px) {
  .car-grid,
  .condition-grid,
  .steps,
  .blog-grid,
  .about-values,
  .geo-grid,
  .service-directory__grid,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .request-panel,
  .process__head,
  .trip__intro,
  .about__grid,
  .geo-service__head,
  .page-hero__inner,
  .about-hero__grid,
  .about-company__intro,
  .about-company__media,
  .service-hero__grid,
  .service-detail,
  .section-head,
  .news-card {
    grid-template-columns: 1fr;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form p {
    grid-column: auto;
  }

  .request-form__head {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .site-header__inner {
    min-height: 68px;
  }

  nav {
    display: none;
  }

  .langs--header {
    display: flex;
    margin-left: auto;
  }

  .langs--header a {
    min-width: 34px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero__title {
    max-width: 760px;
    font-size: clamp(2.55rem, 9.5vw, 4.7rem);
  }

  .hero__side {
    min-height: 280px;
  }

  .quick-request {
    width: 100%;
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .mosaic__item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1440px);
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .hero__title {
    font-size: clamp(2.35rem, 9.2vw, 3.5rem);
    line-height: 1.02;
  }

  h2,
  .about h2,
  .geo-service__head h2,
  .trip__intro h2,
  .process__head h2,
  .page-hero h1,
  .service-hero h1,
  .about-hero h1,
  .about-company__intro h2,
  .about-cta h2,
  .faq h2 {
    font-size: clamp(2rem, 9vw, 3.4rem);
    line-height: 1.04;
  }

  .brand__main {
    font-size: 1.2rem;
  }

  .brand__sub {
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
  }

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

  .condition-grid,
  .steps,
  .blog-grid,
  .about-values,
  .about-metrics,
  .service-points,
  .geo-grid,
  .service-directory__grid,
  .footer__grid,
  .brand-strip {
    grid-template-columns: 1fr;
  }

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

  .autopark h2 {
    margin-bottom: 18px;
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .filters {
    margin-bottom: 18px;
  }

  .filters button {
    min-width: 0;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .car-card {
    border-width: 1px;
    border-radius: 16px;
  }

  .car-card__image {
    height: clamp(118px, 32vw, 148px);
    min-height: 0;
    border-radius: 16px;
  }

  .car-card__body {
    padding: 10px;
  }

  .car-card__body h3 {
    margin-bottom: 8px;
    font-size: 0.98rem;
    line-height: 1.08;
  }

  .tags {
    gap: 5px;
  }

  .tags span {
    padding: 4px 7px;
    font-size: 0.68rem;
  }

  .car-card__footer {
    gap: 8px;
    padding: 9px;
    border-radius: 13px;
  }

  .car-card__footer p {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .car-card__footer .button {
    min-height: 38px;
    padding: 9px 10px;
    border-radius: 11px;
    font-size: 0.72rem;
    justify-content: center;
  }

  .quick-request {
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
  }

  .quick-request h2 {
    font-size: 1rem;
  }

  .quick-request input {
    min-height: 40px;
  }

  .conditions {
    min-height: auto;
  }

  .conditions__media {
    position: relative;
    min-height: 340px;
  }

  .condition-grid {
    margin-top: 22px;
  }

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

  .mosaic__item.tall {
    grid-row: span 1;
  }

  summary {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  details p {
    margin-left: 50px;
  }
}
