: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: 660px;
  font-size: clamp(4.2rem, 9vw, 9.4rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 34px;
  font-size: clamp(3.1rem, 7vw, 8rem);
  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.95rem;
}

.langs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  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: 42px;
  min-height: 32px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  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.5rem, 3vw, 2.7rem);
}

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

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

.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__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.3rem, 2vw, 2rem);
}

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

.hero-stats div {
  min-height: 96px;
  padding: 16px 14px;
  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.45rem, 2.2vw, 2.25rem);
  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: 78px;
  padding: 22px 28px;
  border: 0;
  border-radius: 24px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  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: 64px;
  border-radius: 20px;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
}

.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,
.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.25rem;
}

.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.3rem, 5.4vw, 6.7rem);
}

.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.15rem, 2vw, 1.7rem);
}

.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;
}

.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.4rem, 5.8vw, 7.2rem);
}

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

.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(3, 1fr) auto;
  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.8rem, 3vw, 3.1rem);
}

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

.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;
}

.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.5rem, 5.6vw, 7rem);
}

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

.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: 70px;
  color: var(--muted-2);
  font-size: 1.35rem;
}

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

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

.faq h2 {
  font-size: clamp(2.7rem, 6vw, 7.8rem);
}

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

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

summary {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 28px 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  cursor: pointer;
  list-style: none;
}

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

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

details p {
  max-width: 780px;
  margin: -8px 0 28px 112px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

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

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

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

.footer a,
.footer p {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
}

.footer .langs {
  display: inline-flex;
}

.footer .langs a {
  margin: 0;
  color: var(--muted);
}

.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(3.6rem, 8vw, 8.6rem);
}

.page-hero__inner div p {
  color: #d9d9d9;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.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(2rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.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(3.5rem, 8vw, 8.5rem);
}

.service-hero__text p {
  color: #d8d8d8;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.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.45rem, 2.8vw, 2.6rem);
  line-height: 1;
}

.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(2rem, 4vw, 4.8rem);
}

.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(4rem, 9vw, 9rem);
}

.about-hero__text p {
  color: #d8d8d8;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.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.8rem, 6vw, 7rem);
}

.about-company__intro p,
.about-company__media p,
.about-cta p {
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.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(2.6rem, 5vw, 5rem);
  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.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.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,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .request-panel,
  .process__head,
  .trip__intro,
  .about__grid,
  .page-hero__inner,
  .about-hero__grid,
  .about-company__intro,
  .about-company__media,
  .service-hero__grid,
  .service-detail,
  .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: 38px;
  }

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

  .hero__side {
    min-height: 280px;
  }

  .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(3.6rem, 18vw, 5.4rem);
  }

  h2,
  .about h2,
  .trip__intro h2,
  .process__head h2,
  .faq h2 {
    font-size: clamp(2.4rem, 12vw, 4.4rem);
  }

  .brand__main {
    font-size: 1.35rem;
  }

  .button {
    width: 100%;
    min-height: 70px;
    border-radius: 20px;
  }

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

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

  .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: 48px 1fr;
  }

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