/* --- БАЗОВЫЕ НАСТРОЙКИ --- */
:root {
  --home-text-strong: #111;
  --home-text-body: #333;
  --home-text-muted: #555;
  --home-text-subtle: #888;
  --home-track-tight: -0.03em;
  --home-track-snug: -0.01em;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--flexlast-header-height, 108px) + 12px);
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background-color: #fff;
  color: #333;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: 108px;
}
button,
input,
textarea,
select { font: inherit; }

:where(a, button, input, textarea, select, [role="button"], summary, label) {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, textarea, select, [role="button"], summary, label):focus {
  outline: none;
  box-shadow: none;
}

:where(a, button, input, textarea, select, [role="button"], summary, label):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

body.home-page {
  --home-font-sans: 'Manrope', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  --home-text-strong: #111827;
  --home-text-body: #1f2937;
  --home-text-muted: #5b667a;
  --home-text-subtle: #667085;
  --home-track-tight: -0.04em;
  --home-track-snug: -0.02em;
  --home-mobile-options-label: "Опции";
  --home-mobile-time-label: "Длительность";
  font-family: var(--home-font-sans);
  color: var(--home-text-body);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
html[lang="de"] body.home-page {
  --home-mobile-options-label: "Optionen";
  --home-mobile-time-label: "Mietdauer";
}
html[lang="en"] body.home-page {
  --home-mobile-options-label: "Options";
  --home-mobile-time-label: "Duration";
}
body.home-page :where(h1, h2, h3, .logo) {
  color: var(--home-text-strong);
}
body.home-page :where(button, input, textarea, select) {
  letter-spacing: inherit;
}

/* --- ШАПКА --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 15px 0;
  background: #fff;
  z-index: 900;
  border-bottom: none;
}
.header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid #f0f0f0;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5%;
}
.header__inner {
  width: 100%;
}
.top-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  line-height: 1.45;
  letter-spacing: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: none;
}
.top-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid #f0f0f0;
}
/* Сброс стилей для авто-определенных номеров телефонов (iOS/Android) */
.top-bar a[href^="tel"],
.top-bar a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Глобальные стили для телефона в шапке */
.global-phone-link {
  transition: color 0.2s ease, transform 0.1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transform-origin: center left; /* Чтобы анимация нажатия шла от начала текста */
}

.global-phone-link:hover {
  color: #00b840 !important; /* Фирменный зеленый цвет при наведении */
  opacity: 0.9;
}

.global-phone-link:active {
  transform: scale(0.96);
  opacity: 0.7;
}

/* Поддержка темной темы для телефона (если нужно) */
html:not([data-theme='light']) .global-phone-link:hover {
  color: #a7f3d0 !important;
}
.main-nav { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--home-text-strong);
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo span {
  background: linear-gradient(135deg, #00b840 0%, #008a30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #00b840;
}
.nav-links { display: flex; list-style: none; gap: 30px; font-weight: 700; font-size: 14px; line-height: 1.35; letter-spacing: 0.01em; }
.login-btn { padding: 10px 24px; border: 1px solid #e0e0e0; border-radius: 20px; background: transparent; cursor: pointer; font-weight: 600; transition: background 0.2s; }
.login-btn:hover { background: #f4f5f7; }

/* --- ГЛАВНЫЙ ЭКРАН --- */
.hero { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; padding: 56px 5% 34px; gap: 46px; background: #fff; }

/* --- ЛЕВАЯ ЧАСТЬ HERO --- */
.hero-left {
  flex: 1;
  min-width: 0;
  padding-top: 56px;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.hero-spotlight {
  width: min(100%, 720px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(3px) translateY(-59px);
}

.hero-spotlight-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-spotlight-copy h1 {
  margin: 0;
  max-width: 10ch;
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  color: #111111;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-spotlight-heading-rest {
  display: block;
  font-weight: 700;
}

.hero-spotlight-heading-topline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.hero-spotlight-heading-prefix {
  display: inline-block;
  font-weight: 700;
  line-height: inherit;
  white-space: nowrap;
}

.hero-spotlight-heading-mobile-legacy {
  display: none;
}

.hero-spotlight-rotating-word-sizer {
  display: block;
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
  line-height: inherit;
}

.hero-spotlight-heading-rest-line {
  display: block;
}

body.home-page--de .home-services-divider-shell h2 {
  font-size: clamp(30px, 3.45vw, 40px);
  letter-spacing: -0.04em;
}

body.home-page--de .home-services-preview-card {
  min-height: 270px;
  padding: 24px 24px 22px;
}

body.home-page--de .home-services-preview-card--cargo {
  padding-right: 244px;
}

body.home-page--de .home-services-preview-card--express {
  min-height: 286px;
  padding-right: 226px;
}

body.home-page--de .home-services-preview-card--moving {
  padding-right: 300px;
}

body.home-page--de .home-services-preview-card--loaders {
  padding-right: 246px;
}

body.home-page--de .home-services-preview-card h3 {
  font-size: 30px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

body.home-page--de .home-services-preview-card p {
  margin-top: 14px;
  max-width: 29ch;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.022em;
  text-wrap: pretty;
}

body.home-page--de .home-services-preview-card--cargo p {
  max-width: 28ch;
}

body.home-page--de .home-services-preview-card--express p {
  max-width: 26ch;
}

body.home-page--de .home-services-preview-card--express .home-services-preview-tags {
  max-width: 320px;
}

body.home-page--de .home-services-preview-card--express .home-services-preview-tags span {
  padding: 0 10px;
  font-size: 12px;
}

body.home-page--de .home-services-preview-card--moving p {
  max-width: 29ch;
}

body.home-page--de .home-services-preview-card--loaders p {
  max-width: 28ch;
}

body.home-page--de .home-services-preview-tags {
  margin-top: 16px;
  gap: 9px;
}

body.home-page--de .home-services-preview-tags span {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12.5px;
  letter-spacing: -0.015em;
}

body.home-page--de .home-services-preview-visual--cargo {
  right: -12px;
  bottom: 6px;
  width: 292px;
}

body.home-page--de .home-services-preview-visual--express {
  right: -10px;
  bottom: 14px;
  width: 204px;
}

body.home-page--de .home-services-preview-visual--moving {
  right: -18px;
  bottom: -2px;
  width: 330px;
}

body.home-page--de .home-services-preview-visual--loaders {
  right: -12px;
  bottom: -8px;
  width: 320px;
}

@media (max-width: 979px) {
  body.home-page--de .home-services-preview-card {
    min-height: 224px;
    padding: 22px;
  }

  body.home-page--de .home-services-preview-card--cargo {
    padding-right: 226px;
  }

  body.home-page--de .home-services-preview-card--express {
    padding-right: 252px;
  }

  body.home-page--de .home-services-preview-card--moving {
    padding-right: 278px;
  }

  body.home-page--de .home-services-preview-card--loaders {
    padding-right: 228px;
  }

  body.home-page--de .home-services-preview-card h3 {
    font-size: 28px;
  }

  body.home-page--de .home-services-preview-card p {
    max-width: 27ch;
    font-size: 14px;
    line-height: 1.38;
  }
}

@media (max-width: 767px) {
  body.home-page--de .home-services-divider-shell h2 {
    font-size: 21px;
    letter-spacing: -0.045em;
  }
}

@media (max-width: 979px) {
  body.home-page--de .hero-spotlight-heading-mobile-legacy {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.08em;
    line-height: 0.98;
  }

  body.home-page--de .hero-spotlight-copy h1 > .hero-spotlight-heading-topline,
  body.home-page--de .hero-spotlight-copy h1 > .hero-spotlight-heading-rest {
    display: none;
  }
}

@media (min-width: 980px) {
  body.home-page .hero-spotlight-copy h1 {
    max-width: 12.4ch;
  }

  body.home-page .hero-spotlight-rotating-word {
    font-size: 0.88em;
    font-weight: 800;
    letter-spacing: -0.038em;
  }

  body.home-page .hero-spotlight-heading-rest {
    width: max-content;
    max-width: 100%;
    font-size: 0.74em;
    line-height: 0.96;
    letter-spacing: -0.045em;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  body.home-page--en .hero-spotlight-copy h1 {
    max-width: 15.2ch;
  }

  body.home-page--en .hero-spotlight-heading-topline {
    font-size: 0.82em;
    font-weight: 800;
    letter-spacing: -0.036em;
  }

  body.home-page--de .hero-spotlight-copy h1 {
    max-width: 16ch;
  }

  body.home-page--de .hero-spotlight-heading-topline {
    font-size: 0.76em;
    font-weight: 800;
    letter-spacing: -0.034em;
  }

  body.home-page--en .hero-spotlight-rotating-word,
  body.home-page--de .hero-spotlight-rotating-word {
    display: inline-block;
    font-size: 1em;
    font-weight: inherit;
    letter-spacing: inherit;
    height: auto;
    line-height: inherit;
    top: 0;
    vertical-align: baseline;
  }

  body.home-page--en .hero-spotlight-rotating-word-item,
  body.home-page--de .hero-spotlight-rotating-word-item {
    position: absolute;
    inset: 0 auto auto 0;
    grid-area: auto;
    line-height: inherit;
  }
}

@media (min-width: 980px) {
  body.home-page--de #truckModal .truck-row {
    padding: 13px 14px;
    gap: 12px;
  }

  body.home-page--de #truckModal .truck-pic {
    width: 84px;
    height: 60px;
  }

  body.home-page--de #truckModal .truck-name-row {
    margin-bottom: 8px;
  }

  body.home-page--de #truckModal .truck-meta {
    gap: 6px 5px;
  }

  body.home-page--de #truckModal .meta-pill {
    min-height: 28px;
    padding: 0 8px;
    font-size: 11px;
    line-height: 1.08;
    letter-spacing: -0.01em;
  }
}

body.home-page .truck-card .truck-main-line,
body.home-page .truck-card-floating .truck-main-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

body.home-page .truck-card .truck-main-line::after,
body.home-page .truck-card-floating .truck-main-line::after {
  content: none !important;
  display: none !important;
}

.truck-card .truck-info,
.order-focus-page .truck-card-floating .truck-info {
  min-width: 0;
  margin-left: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  white-space: normal;
}

.truck-field-label {
  display: block;
  font-size: 10px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8592a6;
}

.truck-main-line {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #101828;
}

.truck-size-token {
  flex: 0 0 auto;
  font-size: 0.96em;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.truck-main-separator {
  flex: 0 0 auto;
  align-self: center;
  color: #98a2b3;
  font-size: 0.76em;
  font-weight: 700;
  transform: translateY(-1px);
}

.truck-main-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1em;
  font-weight: 690;
  letter-spacing: -0.034em;
}

.truck-card .truck-main-line::after,
.order-focus-page .truck-card-floating .truck-main-line::after {
  content: none !important;
  display: none !important;
}

body.home-page .truck-card .truck-info {
  min-width: 0;
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  white-space: normal;
}

body.home-page .truck-card .truck-field-label {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.075em;
}

body.home-page .truck-card .truck-main-line {
  gap: 6px;
  font-size: 16px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

body.home-page .truck-card .truck-main-separator {
  font-size: 0.72em;
}

body.home-page .truck-card .truck-main-name {
  font-weight: 680;
}

@media (min-width: 980px) {
  .hero-left .hero-spotlight-badge {
    transform: translateX(23px) translateY(-68px);
  }

  body.home-page--de .hero-spotlight-badge-main {
    max-width: 18.5ch;
    padding: 22px 30px 20px;
    right: 18px;
  }
}

@media (max-width: 479px) {
}

@media (min-width: 980px) {
  .payment-method-modal {
    justify-content: center;
    align-items: center;
    padding: 32px 24px;
  }

  .payment-method-modal-content {
    position: relative;
    inset: auto;
    width: min(700px, calc(100vw - 48px));
    max-height: min(560px, calc(100vh - 64px));
    overflow-y: auto;
    margin: 0 auto;
    padding: 14px 18px 18px;
    border-radius: 30px;
    transform-origin: center top;
  }

  .payment-method-modal-header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
  }

  .payment-method-modal-title {
    font-size: 23px;
    line-height: 0.98;
  }

  .payment-method-modal-subtitle {
    margin-top: 6px;
    max-width: 32ch;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .payment-method-modal-close {
    width: 38px;
    height: 38px;
    margin-top: 2px;
  }

  .payment-method-options {
    gap: 8px;
  }

  .payment-method-option {
    gap: 12px;
    min-height: 84px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .payment-method-option__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .payment-method-option__copy {
    gap: 3px;
  }

  .payment-method-option__title {
    font-size: 14px;
  }

  .payment-method-option__subtitle {
    font-size: 12px;
    line-height: 1.4;
  }

  .payment-method-option__badge {
    padding: 6px 9px;
    font-size: 10px;
  }
}



.hero-spotlight-rotating-word {
  position: relative;
  display: inline-grid;
  min-width: 9.6ch;
  height: 1em;
  overflow: visible;
  -webkit-clip-path: inset(0 0 -0.18em 0);
  clip-path: inset(0 0 -0.18em 0);
  vertical-align: top;
  line-height: 1;
}

.hero-spotlight-rotating-word-item {
  grid-area: 1 / 1;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.76s cubic-bezier(0.22, 1, 0.36, 1), transform 0.76s cubic-bezier(0.22, 1, 0.36, 1), filter 0.76s ease;
  transform-origin: left center;
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(-0.55em);
  filter: blur(0.04em);
}

.hero-spotlight-rotating-word-item.is-current {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-spotlight-rotating-word-item.is-next {
  opacity: 0;
  transform: translateY(-0.55em);
  filter: blur(0.04em);
}

.hero-spotlight-rotating-word-item.is-exit {
  opacity: 0;
  transform: translateY(0.55em);
  filter: blur(0.04em);
}

.hero-spotlight-rotating-word-item.hero-spotlight-rotating-word-item--descender {
  top: 0;
  font-weight: 700;
}

.hero-spotlight-accent {
  margin: 0;
  color: #00b840;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-spotlight-media {
  position: relative;
  min-height: 448px;
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 26%, rgba(0, 184, 64, 0.12) 0%, rgba(0, 184, 64, 0) 34%),
    linear-gradient(135deg, #f3f4ef 0%, #ecece4 100%);
  border-radius: 36% 64% 32% 68% / 34% 38% 62% 66%;
}

.hero-spotlight-image {
  display: block;
  width: 100%;
  min-height: 448px;
  padding: 0;
  background:
    url('Images/hero-moving.avif') center / cover no-repeat,
    transparent;
  border-radius: inherit;
  box-shadow: none;
  -webkit-mask-image: url('Images/hero-moving.avif');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url('Images/hero-moving.avif');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}

body.home-page--de .hero-spotlight-media--empty {
  background: transparent;
  border-radius: 0;
}

.hero-spotlight-badge {
  position: absolute;
  z-index: 2;
  max-width: 300px;
  padding: 22px 28px;
  border-radius: 22px;
  background: #00c73c;
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
  box-shadow: none;
  transform: translateX(0) translateY(-21px);
}

.hero-spotlight-badge-main {
  top: 70px;
  right: 26px;
}

.hero-spotlight-support-visual {
  width: min(100%, 620px);
  align-self: flex-start;
}

.hero-spotlight-support-visual img {
  display: block;
  width: 100%;
  height: auto;
}

body.home-page--de .hero-spotlight-support-visual {
  width: min(100%, 680px);
}

body.home-page--de .hero-spotlight-support-visual--carousel {
  width: min(100%, 620px);
  margin-inline: auto;
  padding-bottom: 66px;
}

body.home-page--de .hero-gallery--de-spotlight {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: clamp(350px, 38vw, 430px);
  min-height: 350px;
  gap: 0;
  overflow: visible;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-viewport {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  clip-path: inset(0 round 18px);
  contain: paint;
  isolation: isolate;
  background: #fff;
  transform: translateZ(0);
  backface-visibility: hidden;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-track {
  gap: 0;
  width: 100%;
  max-width: 100%;
  will-change: transform;
  transform-style: flat;
  backface-visibility: hidden;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
  gap: 0;
  padding: 0;
  contain: paint;
  background: #fff;
}

body.home-page--de .hero-spotlight-gallery-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f3f3;
  box-shadow: none;
  isolation: isolate;
}

body.home-page--de .hero-spotlight-gallery-media {
  position: relative;
  width: 100%;
  min-height: 190px;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  transform: translateZ(0);
  -webkit-user-select: none;
  user-select: none;
}

body.home-page--de .hero-spotlight-gallery-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

body.home-page--de .hero-spotlight-gallery-image--placeholder {
  object-fit: cover;
}

body.home-page--de .hero-spotlight-gallery-image--position-center {
  object-position: center center;
}

body.home-page--de .hero-spotlight-gallery-media.has-test-image > .hero-spotlight-gallery-image {
  display: none;
}

body.home-page--de .hero-gallery-test-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

body.home-page--de .hero-gallery-slide--student-discount .hero-spotlight-gallery-media::before {
  content: none;
}

body.home-page--de .hero-spotlight-gallery-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px 22px 34px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

body.home-page--de .hero-spotlight-gallery-copy::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: -22px;
  height: 44px;
  border-radius: 50%;
  background: inherit;
}

body.home-page--de .hero-spotlight-gallery-title,
body.home-page--de .hero-spotlight-gallery-description {
  position: relative;
  z-index: 1;
}

body.home-page--de .hero-spotlight-gallery-title {
  margin: 0;
  max-width: none;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: pretty;
}

body.home-page--de .hero-spotlight-gallery-description {
  margin: 0;
  max-width: none;
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

body.home-page--de .hero-spotlight-gallery-card--dark {
  background: #1f1f1f;
  color: #ffffff;
}

body.home-page--de .hero-spotlight-gallery-card--dark .hero-spotlight-gallery-copy::before {
  display: none;
}

body.home-page--de .hero-spotlight-gallery-card--dark .hero-spotlight-gallery-title,
body.home-page--de .hero-spotlight-gallery-card--dark .hero-spotlight-gallery-description {
  color: #ffffff;
}

body.home-page--de .hero-spotlight-gallery-card--mint {
  background: #6ed03d;
  color: #050505;
}

body.home-page--de .hero-spotlight-gallery-card--mint .hero-spotlight-gallery-title {
  color: #13233a;
}

body.home-page--de .hero-spotlight-gallery-card--mint .hero-spotlight-gallery-description {
  color: #26411d;
}

body.home-page--de .hero-spotlight-gallery-card--cyan {
  background: #5ccbe3;
  color: #050505;
}

body.home-page--de .hero-spotlight-gallery-card--cyan .hero-spotlight-gallery-title {
  color: #13233a;
}

body.home-page--de .hero-spotlight-gallery-card--cyan .hero-spotlight-gallery-description {
  color: #27445f;
}

body.home-page--de .hero-spotlight-gallery-card--image-only {
  grid-template-rows: 1fr;
}

body.home-page--de .hero-spotlight-gallery-card--image-only .hero-spotlight-gallery-media {
  min-height: 100%;
}

body.home-page--de .hero-gallery-slide-cta {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  max-width: calc(100% - 56px);
  padding: 0 28px;
  border: 1px solid #111111;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

body.home-page--de .hero-gallery-slide-cta:hover {
  transform: translateY(-1px);
  background: #1f2937;
  border-color: #1f2937;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.26);
}

body.home-page--de .hero-gallery-slide-cta:focus-visible {
  outline: 3px solid rgba(82, 188, 83, 0.5);
  outline-offset: 3px;
}

body.home-page--de .hero-gallery-slide-cta-icon {
  font-size: 18px;
  line-height: 1;
}

body.home-page--de .hero-gallery-slide-cta--loaders {
  left: clamp(40px, 7.4%, 48px);
  bottom: clamp(12px, 3.1%, 18px);
  width: clamp(104px, 18%, 116px);
  height: clamp(104px, 18%, 116px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 255, 242, 0.94));
  color: #07130b;
  font-size: 13px;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 34px rgba(4, 82, 36, 0.28);
}

body.home-page--de .hero-gallery-slide-cta--loaders:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.84);
  color: #07130b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 20px 38px rgba(4, 82, 36, 0.32);
}

body.home-page--de .hero-gallery-slide-cta--loaders .hero-gallery-slide-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c853, #00983b);
  color: #ffffff;
  font-size: 17px;
  box-shadow: 0 8px 16px rgba(0, 152, 59, 0.24);
}

body.home-page--de .hero-spotlight-gallery-card--pink {
  background: #ff135f;
  color: #ffffff;
}

body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-title,
body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-description {
  color: #ffffff;
}

body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-copy {
  gap: 7px;
  padding: 14px 22px 25px;
}

body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-title {
  max-width: none;
  font-size: clamp(32px, 2.7vw, 40px);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-wrap: normal;
}

body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-description {
  max-width: 62ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.018em;
  text-wrap: pretty;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-footer--de {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -66px;
  display: flex;
  align-items: center;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-controls--de-below {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 4px;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-status--de {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-counter--de {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #98a4b5;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-counter-current {
  color: #111827;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-counter-separator,
body.home-page--de .hero-gallery--de-spotlight .hero-gallery-counter-total {
  color: #a8b3c2;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dots--pill {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: min(100%, 184px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot {
  --dot-progress: 0;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #dbe2eb;
  position: relative;
  overflow: hidden;
  transition: background-color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #5fd36f 0%, #3db34b 100%);
  transform-origin: left center;
  transform: scaleX(var(--dot-progress));
  transition: transform 0.08s linear;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot::after {
  display: none;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot.is-active {
  background: rgba(82, 188, 83, 0.18);
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot:hover,
body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot:focus-visible {
  background: #d0d9e4;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot:focus-visible {
  outline: 2px solid rgba(82, 188, 83, 0.34);
  outline-offset: 4px;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-navs--de-below {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-nav--de-below {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #dfe6ef;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
  transform: none;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-prev.hero-gallery-nav--de-below:hover {
  transform: translateY(-2px);
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-next.hero-gallery-nav--de-below:hover {
  transform: translateY(-2px);
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-nav--de-below:hover,
body.home-page--de .hero-gallery--de-spotlight .hero-gallery-nav--de-below:focus-visible {
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-nav--de-below:focus-visible {
  outline: 2px solid rgba(82, 188, 83, 0.38);
  outline-offset: 2px;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-nav .material-icons-round {
  font-size: 20px;
}

.loaders-hero-v2 {
  width: min(100%, 680px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 0 0;
  font-family: 'Manrope', sans-serif;
}

.loaders-hero-v2-copy-layout {
  width: 100%;
  display: block;
}

.loaders-hero-v2-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.loaders-hero-v2-title {
  margin: 0;
  max-width: 14ch;
  color: #111111;
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.loaders-hero-v2-subtitle {
  margin: 0;
  max-width: 40ch;
  color: #4b5563;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.loaders-hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.loaders-hero-v2-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  border: 1px solid #111111;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.loaders-hero-v2-action-icon {
  font-size: 18px;
  line-height: 1;
}

.loaders-hero-v2-action:hover {
  transform: translateY(-1px);
}

.loaders-hero-v2-action-primary {
  background: #111111;
  color: #ffffff;
}

.loaders-hero-v2-action-primary:hover {
  background: #1f2937;
  border-color: #1f2937;
}

.loaders-hero-v2-action-secondary {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111111;
}

.loaders-hero-v2-action-secondary:hover {
  background: #f8fafc;
}

.loaders-hero-v2-proof {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.loaders-hero-v2-proof-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4f6f8;
  border: 1px solid #e5e7eb;
}

.loaders-hero-v2-proof-item strong {
  display: block;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.loaders-hero-v2-proof-item span {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

body.home-page.loaders-page .hero {
  padding-top: 38px;
}

body.home-page.loaders-page .hero-left {
  padding-top: 28px;
}

body.home-page.loaders-page .loaders-hero-v2 {
  gap: 16px;
  padding-top: 10px;
}

body.home-page.loaders-page .loaders-hero-v2-actions {
  margin-top: 6px;
}

body.home-page.loaders-page .loaders-hero-v2-proof {
  gap: 12px;
  margin-top: 8px;
}

body.home-page.loaders-page .loaders-hero-v2-proof-item {
  min-height: 92px;
  padding: 17px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
  border-color: #dde5ec;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

body.home-page.loaders-page .loaders-hero-v2-proof-item strong {
  font-size: 19px;
}

body.home-page.loaders-page .loaders-hero-v2-proof-item span {
  margin-top: 6px;
  color: #5f6b7a;
  font-size: 13px;
}

@media (min-width: 768px) {
  .loaders-hero-v2 .loaders-hero-v2-copy p {
    font-size: 19px;
  }
}

@media (min-width: 980px) {
  .loaders-hero-v2 .loaders-hero-v2-copy h1 {
    font-size: 71px;
  }
}

.hero-gallery {
  width: min(100%, 700px);
  min-height: clamp(390px, calc(100vh - 280px), 560px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-gallery-viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hero-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-gallery-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 14px;
  padding: 2px 0 0;
}

.hero-slide-copy {
  flex: 0 0 auto;
  height: var(--hero-copy-height, auto);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-slide-copy h2 {
  margin: 0;
  max-width: 16ch;
  color: #1f2a37;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 860;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-slide-copy p {
  margin: 8px 0 0;
  max-width: 40ch;
  color: #4f5d72;
  font-size: clamp(17px, 1.75vw, 25px);
  line-height: 1.28;
  font-weight: 630;
  letter-spacing: -0.015em;
}

.hero-slide-media {
  position: relative;
  flex: 1;
  min-height: 300px;
  overflow: hidden;
  border-radius: 34px;
  border: none;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.hero-slide-media::before {
  content: "";
  position: absolute;
  inset: -42% -4% auto;
  height: 72%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  z-index: 0;
  display: none;
}

.hero-slide-media::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.9;
  z-index: 0;
  display: none;
}

.hero-slide-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 34px;
  border: none;
  box-shadow: none;
  /* Для реального изображения: style="--slide-photo: url('path/to/image.jpg')" */
  background-image: var(--slide-photo);
  background-size: cover;
  background-position: center;
}

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

.hero-slide-photo::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 36%, rgba(15, 23, 42, 0.24) 100%);
}

.hero-slide-photo::after {
  z-index: 2;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.42) 100%);
}

.hero-slide-photo-workers {
  --slide-photo:
    radial-gradient(circle at 84% 12%, rgba(103, 154, 238, 0.58) 0%, rgba(103, 154, 238, 0) 36%),
    linear-gradient(140deg, #35568e 0%, #223e6e 45%, #172d4f 100%);
}

.hero-slide-photo-night {
  --slide-photo:
    radial-gradient(circle at 82% 15%, rgba(78, 154, 245, 0.5) 0%, rgba(78, 154, 245, 0) 38%),
    linear-gradient(146deg, #243b63 0%, #1e3256 52%, #152743 100%);
}

.hero-slide-photo-truck {
  --slide-photo:
    radial-gradient(circle at 82% 14%, rgba(96, 205, 192, 0.46) 0%, rgba(96, 205, 192, 0) 36%),
    linear-gradient(140deg, #2d625d 0%, #234f4c 46%, #173d3c 100%);
}

.hero-slide-photo-warm {
  --slide-photo:
    radial-gradient(circle at 84% 14%, rgba(255, 212, 123, 0.5) 0%, rgba(255, 212, 123, 0) 36%),
    linear-gradient(142deg, #8e6c43 0%, #735635 48%, #5b4328 100%);
}

.hero-slide-chip {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: normal;
  max-width: min(52%, 214px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-slide-chip-top {
  top: 14px;
  right: 14px;
}

.hero-slide-chip-center {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-slide-chip-right {
  right: 14px;
  top: 50px;
}

.hero-slide-chip-bottom {
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
}

.hero-slide-chip-yellow {
  background: linear-gradient(180deg, #ffe88f 0%, #ffd53d 100%);
  color: #1f2a37;
  border: 1px solid rgba(176, 128, 13, 0.34);
  font-size: clamp(11px, 1.05vw, 12px);
  font-weight: 800;
  letter-spacing: 0.005em;
  white-space: nowrap;
  max-width: none;
}

.hero-slide-chip-green {
  background: rgba(255, 255, 255, 0.9);
  color: #1b2a3f;
  border: 1px solid rgba(148, 163, 184, 0.38);
  font-size: clamp(10px, 1vw, 12px);
}

.hero-slide-chip-white {
  background: rgba(255, 255, 255, 0.92);
  color: #17263a;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: clamp(10px, 1vw, 12px);
  white-space: normal;
  max-width: min(56%, 220px);
  text-align: center;
}

.hero-slide-media-night {
  background: linear-gradient(160deg, #22324a 0%, #1d2f49 48%, #223954 100%);
}

.hero-slide-media-fleet {
  background: linear-gradient(160deg, #ecf5f3 0%, #dbece8 100%);
}

.hero-slide-media-fleet::after {
  inset: 0 0 auto;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.9;
}

.hero-slide-media-fast {
  background: linear-gradient(160deg, #f2eee7 0%, #e9e1d5 48%, #dfd2c2 100%);
}

.hero-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 2px;
}

.hero-gallery-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-gallery-dot {
  --dot-progress: 0;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: #d6deea;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: width 0.24s ease, background-color 0.24s ease;
}

.hero-gallery-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #67c96a 0%, #39a547 100%);
  transform-origin: left center;
  transform: scaleX(var(--dot-progress));
  transition: transform 0.08s linear;
}

.hero-gallery-dot.is-active {
  width: 42px;
  background: rgba(79, 169, 88, 0.2);
}

.hero-gallery-navs {
  display: flex;
  gap: 9px;
}

.hero-gallery-nav {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: #f8fafd;
  color: #2f3d52;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-gallery-nav:hover {
  background: #ffffff;
  color: #1f2a37;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.11);
}

.hero-gallery-prev:hover {
  transform: translateX(-2px);
}

.hero-gallery-next:hover {
  transform: translateX(2px);
}

.hero-gallery-nav .material-icons-round {
  font-size: 22px;
}

/* --- ПРАВАЯ ЧАСТЬ (ФОРМА ВИДЖЕТА) --- */
.hero-right { width: 490px; flex-shrink: 0; display: flex; flex-direction: column; margin-top: -24px; }
#quickOrderWidget {
  scroll-margin-top: 132px;
}

/* 1 СЛОЙ: Верхняя белая часть (в стиле нижней) */
.widget-top { background: #ffffff; border-radius: 32px; padding: 18px; padding-bottom: 44px; display: flex; flex-direction: column; gap: 10px; border: none; box-shadow: 0 -4px 20px rgba(0,0,0,0.02), 0 16px 40px rgba(0,0,0,0.06); }

.service-type-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  background: #eff1f5;
  padding: 3px;
  border-radius: 10px;
  height: 38px;
}

.type-tab {
  flex: 1;
  border: none;
  padding: 0 10px;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.type-tab.active {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 2 СЛОЙ: Нижняя белая карточка (наезжает на верхнюю) */
.widget-bottom { background: #ffffff; border-radius: 32px; padding: 20px; margin-top: -26px; position: relative; z-index: 2; box-shadow: 0 -4px 20px rgba(0,0,0,0.03), 0 16px 40px rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 14px; }

/* ОБЩИЕ СТИЛИ ВНУТРЕННИХ КАРТОЧЕК */
.card { background: white; border-radius: 24px; padding: 16px; border: 1px solid #e5e7eb; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; }
.hover-outline:hover { border-color: #00b840; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); cursor: pointer; }
.hover-outline.active { border-color: #00b840; }
.label {
  display: block;
  font-size: 11px;
  color: var(--home-text-subtle);
  margin-bottom: 3px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.green-text { font-size: 12px; color: #00b840; display: block; margin-top: 2px; font-weight: 700; line-height: 1.35; }

/* 1. Блок Адресов */
.address-card { gap: 6px; padding: 8px 14px; }
.address-card.has-error {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(255, 245, 245, 0.86);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.08);
}
.address-col.has-error .label {
  color: #8f2d2d;
}
.address-col { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.address-col input { border: none; outline: none; font-size: 17px; color: var(--home-text-strong); font-weight: 700; line-height: 1.35; letter-spacing: -0.01em; padding: 2px 0; background: transparent; width: 100%; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; }
.address-col input::placeholder { color: #2f3a4c; font-weight: 600;}
.destination-col.multi-mode { gap: 4px; }
.multi-stop-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  border: 2px dashed #5fbf6a;
  border-radius: 18px;
  padding: 6px 8px;
}
.multi-stop-display[hidden] { display: none !important; }
.multi-stop-top {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.multi-stop-pill {
  background: #4caf50;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.multi-stop-final {
  font-size: 14px;
  color: var(--home-text-muted);
  line-height: 1.35;
  flex-shrink: 0;
}
.multi-stop-address {
  font-size: 15px;
  color: var(--home-text-body);
  line-height: 1.4;
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.icon-btn { width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px; background: #f4f5f7; border: none; display: flex; justify-content: center; align-items: center; color: #555; cursor: pointer; transition: 0.2s; }
.icon-btn:hover { background: #e5e7eb; color: #111; }

/* 2. Карточка Газели */
.truck-card { border: 1px solid #dedede; gap: 10px; padding: 14px 16px; cursor: pointer; background: #ffffff; }
.truck-card:hover {
  border-color: #00be42 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 190, 66, 0.08) !important;
}
.order-focus-page .truck-card.is-open {
  border-color: rgba(25, 182, 75, 0.72) !important;
  box-shadow: 0 12px 24px rgba(0, 190, 66, 0.08) !important;
  position: relative;
  z-index: 1301;
}
.order-focus-page .truck-card:focus-visible {
  outline: none;
  border-color: rgba(25, 182, 75, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(0, 190, 66, 0.08) !important;
}
.truck-img { width: 92px; height: 58px; object-fit: contain; object-position: center; }
body.home-page .truck-img[data-truck-id="bike"] { transform: scale(1.72); transform-origin: center; }
body.home-page .truck-img[data-truck-id="van"] { transform: translateX(-9px) scale(1.52); transform-origin: center; }
body.home-page .truck-img[data-truck-id="any"] { transform: scale(1.14); transform-origin: center; }
body.home-page .truck-img[data-truck-id="roomy"] { transform: scale(1.34); transform-origin: center; }
.truck-card-no-image { align-items: center; }
.truck-card-no-image .truck-info { margin-left: 0; }
.truck-info { flex: 1; }
.truck-info strong { font-size: 18px; color: #111111; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.truck-info .green-text { display: block; margin-top: 4px; font-size: 13px; line-height: 1.35; color: #6b7280; }
.arrow-icon { color: #111; font-size: 24px; }
.order-focus-page .arrow-icon { color: #111; font-size: 24px; transition: transform 0.22s ease, color 0.22s ease; }
.order-focus-page .truck-card.is-open .arrow-icon { transform: rotate(-90deg); color: #00a63e; }
.order-focus-page .truck-card-floating {
  position: fixed;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(25, 182, 75, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1302;
  pointer-events: none;
  box-sizing: border-box;
}
.order-focus-page .truck-card-floating.is-visible { display: flex; }
.order-focus-page .truck-card-floating .truck-info { flex: 1; }
.order-focus-page .truck-card-floating .arrow-icon { transform: rotate(-90deg); color: #00a63e; }
.order-focus-page .widget-card-floating {
  position: fixed;
  display: none;
  z-index: 1302;
  pointer-events: none;
  box-sizing: border-box;
}
.order-focus-page .widget-card-floating.is-visible { display: block; }
.order-focus-page .widget-card-clone {
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  border-color: #00be42 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.order-focus-page .widget-card-clone .service-comment-icon,
.order-focus-page .widget-card-clone .options-icon {
  background: #effaf2;
  color: #00a63e;
}
.order-focus-page .widget-card-clone .service-comment-arrow {
  color: #00a63e;
}

/* 3. Грузчики */
.loaders-card { gap: 11px; padding: 6px 15px; min-height: 74px; overflow: visible; }
.loader-img { width: 67px; height: 47px; object-fit: contain; }
.loader-img--main { width: 78px; height: 54px; }
.loader-text { flex: 1; font-size: 14px; color: var(--home-text-body); line-height: 1.28; font-weight: 600; }
.loader-text span { display: block; white-space: normal; }
#loadersTextLine1 { font-size: 15px; line-height: 1.14; font-weight: 700; color: var(--home-text-strong); }
#loadersTextLine2 { margin-top: 3px; font-size: 13px; line-height: 1.16; letter-spacing: -0.01em; color: var(--home-text-subtle); }
.loader-text span:last-child { color: var(--home-text-subtle); }
.loaders-card.is-loader-unavailable {
  border-color: #e5eaf1;
  background: #f8fafc;
}
.loaders-card.is-loader-unavailable .loader-img {
  opacity: 0.5;
  filter: grayscale(0.25);
}
.loaders-card.is-loader-unavailable .counter-btn.add {
  cursor: default;
}
.counter-box { position: relative; background: var(--home-bg-control, #f4f5f7); border-radius: 16px; padding: 6px; display: flex; align-items: center; gap: 8px; overflow: visible; }
.counter-box button, .counter-btn { width: 40px; height: 40px; border: none; background: #ffffff; border-radius: 12px; font-size: 22px; color: var(--home-text-strong, #333); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,0.06); transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); touch-action: manipulation; }
.counter-box button:hover:not(:disabled), .counter-btn:hover:not(:disabled) { color: #00b840; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.08); background: #ffffff; }
.counter-box button:active:not(:disabled), .counter-btn:active:not(:disabled) { transform: scale(0.96); box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.counter-btn.is-limit-blocked { cursor: default; }
.counter-btn.is-limit-blocked:hover { color: var(--home-text-strong, #333); transform: none; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.counter-btn.is-limit-pulsed { color: #00b840; box-shadow: 0 0 0 4px rgba(0, 184, 64, 0.12), 0 4px 10px rgba(0,0,0,0.08); }
.counter-texts { display: flex; flex-direction: column; align-items: center; min-width: 50px; }
.counter-texts > span { font-size: 10px; color: var(--home-text-subtle); font-weight: 700; line-height: 1.2; letter-spacing: 0.02em; }
.counter-texts strong { font-size: 15px; display: flex; align-items: center; gap: 4px; color: var(--home-text-strong); font-weight: 700; }
#loaderCountVal { font-size: 16px; font-weight: 600; line-height: 1; }
.loader-limit-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 30;
  max-width: 220px;
  width: max-content;
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.96);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.loader-limit-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 19px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(17, 24, 39, 0.96) transparent transparent transparent;
}
.loader-limit-popover.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (max-width: 767px) {
  body.home-page .loaders-card.has-loader-limit {
    margin-bottom: 42px;
  }

  body.home-page .loader-limit-popover {
    top: calc(100% + 8px);
    right: 0;
    bottom: auto;
    max-width: min(220px, calc(100vw - 48px));
    transform: translateY(-6px) scale(0.98);
  }

  body.home-page .loader-limit-popover::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent rgba(17, 24, 39, 0.96) transparent;
  }

  body.home-page .loader-limit-popover.show {
    transform: translateY(0) scale(1);
  }
}

.service-comment-row {
  gap: 10px;
  padding: 8px 14px;
  min-height: 54px;
  width: 100%;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.service-comment-row[hidden] {
  display: none !important;
}

.order-focus-page .service-comment-row.is-open {
  border-color: #00be42 !important;
  box-shadow: 0 14px 28px rgba(0, 190, 66, 0.12) !important;
  position: relative;
  z-index: 1301;
}

.service-comment-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f4f5f7;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.service-comment-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-comment-label {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--home-text-subtle);
  font-weight: 700;
}

.service-comment-value {
  display: block;
  min-width: 0;
  color: var(--home-text-strong);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-comment-row.is-empty .service-comment-value {
  color: #8b95a7;
  font-weight: 500;
}

.service-comment-arrow {
  color: #9aa4b2;
  font-size: 20px;
  flex-shrink: 0;
}
.order-focus-page .service-comment-row.is-open .service-comment-icon {
  background: #effaf2;
  color: #00a63e;
}
.order-focus-page .service-comment-row.is-open .service-comment-arrow {
  color: #00a63e;
}

/* 4. Опции и Время аренды */
.two-col-row { display: flex; gap: 6px; }
.options-card { flex: 1; justify-content: space-between; font-weight: 700; font-size: 14px; line-height: 1.35; color: var(--home-text-strong); padding: 5px 13px; background: #f8f9fb; border: 1px solid #e5e7eb; }
.options-control-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 14px;
  background: var(--home-bg-control, #f4f5f7);
}
.options-icon {
  width: 36px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 0;
  color: #333;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.options-card.active { border-color: rgba(0,184,64,0.18); background: linear-gradient(135deg, #ffffff 0%, #f5fcf6 100%); }
.order-focus-page .options-card.is-open {
  border-color: #00be42 !important;
  box-shadow: 0 14px 28px rgba(0, 190, 66, 0.12) !important;
  position: relative;
  z-index: 1301;
}
.options-summary { display: flex; flex-direction: column; gap: 2px; }
.options-summary-label { font-size: 11px; color: #00b840; font-weight: 700; line-height: 1.2; letter-spacing: 0.05em; text-transform: uppercase; }
.options-summary-value { font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--home-text-strong); }
.options-card.active .options-control-shell { background: #edf7ef; }
.options-icon.active { background: #e8f5e9; color: #00b840; }
.order-focus-page .options-card.is-open .options-icon {
  background: #effaf2;
  color: #00a63e;
}
.time-card { flex: 1; justify-content: space-between; padding: 5px 13px; }
.time-card .label { font-size: 11px; color: var(--home-text-subtle); font-weight: 700; margin-bottom: 6px; line-height: 1.2; letter-spacing: 0.05em; text-transform: uppercase; }
.time-info #rentalTimeText { font-size: 22px; color: var(--home-text-strong); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; display: block; }
.vert-controls { display: flex; flex-direction: column; gap: 4px; background: var(--home-bg-control, #f4f5f7); padding: 4px; border-radius: 14px; }
.vert-controls button { width: 36px; height: 32px; border: none; background: #ffffff; border-radius: 10px; color: var(--home-text-strong, #333); font-size: 18px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,0.06); transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); touch-action: manipulation; }
.vert-controls button:hover:not(:disabled) { color: #00b840; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.vert-controls button:active:not(:disabled) { transform: scale(0.96); box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.vert-controls button:focus,
.vert-controls button:focus-visible {
  outline: none;
}
.rental-time-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-top: 6px;
  background: #fef9ec;
  border: 1px solid #f5e6b8;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: #92710a;
  animation: hintFadeIn 0.3s ease;
}

body.home-page .material-icons-round {
  max-width: none;
  overflow: visible;
}

body.home-page .options-card,
body.home-page .time-card {
  min-height: 0;
}

body.home-page .options-card > span:first-child {
  font-size: inherit;
}

body.home-page .options-card > span:first-child::after {
  content: none;
}

body.home-page .options-control-shell {
  width: auto;
  min-width: 0;
  height: auto;
}

body.home-page .options-icon {
  max-width: none;
  overflow: visible;
}

body.home-page .time-card {
  display: flex;
  align-items: center;
}

body.home-page .vert-controls {
  width: auto;
  min-width: 0;
  min-height: 0;
}

body.home-page .vert-controls button {
  min-height: 0;
  flex: 0 0 auto;
  line-height: 1;
}

body.home-page .home-action-card-arrow {
  max-width: none;
  overflow: visible;
  line-height: 1;
}
.rental-time-hint[hidden] {
  display: none;
}
.rental-time-hint-icon {
  font-size: 18px;
  color: #c99a0a;
  flex-shrink: 0;
}
.rental-time-hint-text {
  flex: 1;
  min-width: 0;
}
@keyframes hintFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- НИЖНИЙ СЛОЙ (ВИДЖЕТ ОФОРМЛЕНИЯ) --- */
.phone-group {
  position: relative;
  border: 1px solid #d5d8de;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 0;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  min-height: 56px;
}
.phone-group:focus-within {
  border-color: #bcc2cb;
  box-shadow: 0 0 0 3px rgba(188, 194, 203, 0.2);
}
.phone-group.has-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.phone-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.phone-input-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 0;
}
.phone-input-main input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--home-text-strong);
  padding: 16px 0 0 0;
}
.phone-input-main .floating-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #9ca3af;
  pointer-events: none;
  transition: all 0.2s ease;
}
.phone-input-main input:focus ~ .floating-label,
.phone-input-main input:not(:placeholder-shown) ~ .floating-label {
  top: 10px;
  font-size: 11px;
  color: #6b7280;
}
.phone-empty-state,
.phone-helper-text {
  display: none;
}
.phone-country-picker {
  position: relative;
  flex-shrink: 0;
}
.phone-flag-button {
  border: none;
  background: #f4f5f7;
  padding: 8px 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.phone-flag-button:hover,
.phone-flag-button.open {
  background: #e2e8f0;
}
.phone-iso-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--home-text-strong);
  line-height: 1;
}
.phone-picker-caret {
  font-size: 18px;
  color: #64748b;
  transition: transform 0.2s ease, color 0.2s ease;
}
.phone-flag-button.open .phone-picker-caret {
  transform: rotate(180deg);
  color: #334155;
}
.phone-country-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 228px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
  z-index: 40;
}
.phone-country-menu[hidden] { display: none; }
.phone-country-option {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}
.phone-country-option:hover,
.phone-country-option.active {
  background: #f8fafc;
}
.phone-country-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.phone-country-iso-label {
  font-size: 13px;
  font-weight: 800;
  color: #64748b;
  width: 28px;
  text-align: left;
}
.phone-country-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--home-text-strong);
  white-space: nowrap;
}
.phone-country-code {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #0f766e;
  white-space: nowrap;
}
.phone-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #2f3a53;
  background: transparent;
  letter-spacing: 0.01em;
}
.phone-wrapper input::placeholder {
  color: transparent;
  font-weight: 500;
  opacity: 1;
}
.user-icon {
  background: #eceef2;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #2f3a53;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.delivery-time-row { display: flex; gap: 8px; margin-top: -2px; }
.radio-card {
  flex: 1;
  min-height: 76px;
  border: 1px solid #d9dee5;
  border-radius: 18px;
  padding: 13px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  background: #ffffff;
}
.radio-card input { position: absolute; opacity: 0; }
.radio-card:hover {
  border-color: #c8d0da;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.radio-top {
  display: flex;
  width: 26px;
  min-width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.radio-card .checkmark {
  display: none;
  width: 26px;
  height: 26px;
  color: #00b840;
  font-size: 24px;
  align-items: center;
  justify-content: center;
}
.radio-card.active {
  border-color: #99d18e;
  background: #f1faee;
  box-shadow: inset 0 0 0 1px rgba(82, 188, 83, 0.12), 0 10px 26px rgba(82, 188, 83, 0.08);
}
.order-focus-page .radio-card.is-open {
  border-color: #00be42 !important;
  box-shadow: 0 16px 32px rgba(0, 190, 66, 0.12) !important;
  position: relative;
  z-index: 1301;
}
.radio-card.active .checkmark { display: inline-flex; }
.radio-card .empty {
  width: 21px;
  height: 21px;
  border: 2px solid #cfd5dc;
  border-radius: 50%;
  display: inline-block;
}
.radio-card.active .empty { display: none; }
.radio-text {
  font-size: 15px;
  line-height: 1.35;
  color: var(--home-text-strong);
  font-weight: 600;
}
.calendar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.35;
  color: var(--home-text-strong);
  font-weight: 600;
  min-width: 0;
}
.calendar-wrap .material-icons-round {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  background: #eef2f6;
}

.checkout-row { display: flex; align-items: center; gap: 8px; }
.side-btn { width: 73px; height: 73px; border-radius: 21px; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: 0.2s; border: none; }
.wallet-btn { background: #f4f5f7; color: #222; }
.wallet-btn:hover { background: #e5e7eb; }
.wallet-btn {
  position: relative;
  overflow: visible;
}
.wallet-btn--active {
  background: #f4f5f7;
  color: #222;
}
.wallet-btn--active:hover {
  background: #e5e7eb;
}
.order-focus-page .wallet-btn.is-open {
  background: #f4f5f7;
  color: #222;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.18), 0 14px 28px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 1301;
}
.wallet-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #16a34a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
.discount-btn { background: #FEF2F2; color: #EF4444; }
.discount-btn:hover { background: #FEE2E2; }
.checkout-btn {
  flex: 1;
  height: 73px;
  background: linear-gradient(135deg, #00c645 0%, #009e36 100%);
  color: #fff;
  border: none;
  border-radius: 21px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 184, 64, 0.25);
  transition: all 0.3s ease;
}
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 184, 64, 0.35);
}
.checkout-label {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.price-placeholder { width: 50%; height: 8px; background: rgba(255,255,255,0.4); border-radius: 4px; margin-top: 4px; }
.total-price {
  margin-top: 0;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.agreements { display: flex; flex-direction: column; gap: 14px; margin-top: 4px;}
.form-inline-error {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff5f5;
  color: #b42318;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}
.form-inline-error.is-visible {
  display: flex;
}
.address-inline-error {
  margin-top: 10px;
  margin-bottom: 2px;
}
.form-inline-error .material-icons-round {
  font-size: 16px;
  flex-shrink: 0;
}
.agreements.has-error {
  padding: 10px 12px 12px;
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 18px;
  background: rgba(255, 245, 245, 0.86);
}
.checkbox-label { display: flex; align-items: flex-start; cursor: pointer; font-size: 12px; color: var(--home-text-subtle); line-height: 1.55;}
.checkbox-label input { position: absolute; opacity: 0; }
.custom-checkbox { min-width: 18px; height: 18px; border: 1.5px solid #cbd5e1; border-radius: 6px; margin-right: 12px; position: relative; transition: all 0.2s; background: #fff;}
.checkbox-label input:checked ~ .custom-checkbox { background-color: #fff; border-color: #cbd5e1; }
.checkbox-label input:checked ~ .custom-checkbox:after { content: ""; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border: solid #00b840; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checkbox-label a { color: var(--home-text-muted); font-weight: 600; text-decoration: underline; }
.checkbox-label.has-error {
  color: #8f2d2d;
}
.checkbox-label.has-error .custom-checkbox {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

/* ВСПЛЫВАЮЩИЕ ПОДСКАЗКИ */
.info-tooltip-wrap { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.info-icon { font-size: 14px; color: #ccc; transition: 0.2s; }
.info-tooltip-wrap:hover .info-icon { color: #00b840; }
.tooltip-box { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(5px); width: 270px; background: #ffffff; padding: 16px; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.12); font-size: 13px; line-height: 1.5; color: #555; font-weight: 400; opacity: 0; visibility: hidden; transition: all 0.2s ease; z-index: 100; pointer-events: none; text-align: left; }
.tooltip-box::before { content: ""; position: absolute; bottom: 100%; left: 50%; margin-left: -8px; border-width: 8px; border-style: solid; border-color: transparent transparent #ffffff transparent; }
.info-tooltip-wrap:hover .tooltip-box { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.info-tooltip-wrap:focus-within .tooltip-box { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.info-tooltip-wrap.is-forced-open .tooltip-box { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.info-tooltip-wrap:focus-within .info-icon { color: #00b840; }
.info-tooltip-wrap.is-forced-open .info-icon { color: #00b840; }
.tooltip-bold { font-weight: 700; color: #222; }
.tooltip-green { font-weight: 700; color: #00b840; }
/* ==========================================
   ФУТЕР (НИЖНЯЯ ПАНЕЛЬ)
========================================== */
.site-footer { width: 100%; border-top: 1px solid #f0f0f0; background-color: #ffffff; padding: 0 5% 20px; margin-top: 40px; }
.footer-container { max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.footer-container--compact { gap: 12px; }
.footer-top { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; padding: 22px 0 20px; border-bottom: none; }
.footer-top--with-app { justify-content: center; gap: 40px; flex-wrap: wrap; }
.footer-top::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; border-bottom: 1px solid #f0f0f0; }
.footer-nav { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.footer-top--with-app .footer-nav { justify-content: center; flex: 0 1 auto; min-width: 0; }
.footer-nav a { text-decoration: none; color: var(--home-text-strong); font-weight: 700; font-size: 14px; line-height: 1.35; transition: color 0.2s; }
.footer-nav a:hover { color: #00b840; }
.app-badges { display: flex; gap: 16px; align-items: center; }
.store-badge {
  display: inline-flex;
  border-radius: 14px;
  overflow: visible;
  opacity: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, filter 0.22s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.moving-footer-app--inline { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; gap: 10px; padding-top: 0; }
.moving-footer-app--inline .moving-footer-app-title { display: none; }
.moving-footer-app--inline .app-badges { gap: 10px; flex-wrap: nowrap; justify-content: center; }
.moving-footer-app--inline .store-badge img { display: block; height: 48px; width: auto; }

.footer-middle { display: flex; justify-content: space-between; gap: 40px; }
.footer-legal { max-width: 800px; }
.footer-legal p { font-size: 12px; color: #555; line-height: 1.5; margin-bottom: 12px; }
.footer-legal p a { color: #222; text-decoration: underline; font-weight: 600; }
.legal-links { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.legal-links a { color: #222; font-size: 12px; font-weight: 600; text-decoration: underline; }
.legal-links a:hover { color: #00b840; }
.skolkovo-logo { background-color: #C4D600; color: #fff; border-radius: 8px; padding: 12px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; height: max-content; }

.footer-bottom-actions { display: flex; align-items: center; gap: 32px; }
.opt-out-box { background: #ffffff; border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.opt-out-box span { font-size: 14px; font-weight: 700; color: #222; line-height: 1.3; }
.opt-out-input-wrap input { border: 1px solid #e0e0e0; border-radius: 12px; padding: 12px 16px; font-size: 14px; outline: none; width: 180px; transition: border-color 0.2s; }
.opt-out-input-wrap input:focus { border-color: #00b840; }
.opt-out-btn { background: #52BC53; color: #fff; border: none; border-radius: 12px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.opt-out-btn:hover { background: #47a848; }

.social-links { display: flex; gap: 12px; }
.social-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; transition: transform 0.2s; }
.social-icon img { width: 100%; height: 100%; object-fit: contain; }
.social-icon:hover { transform: translateY(-2px); }

.footer-copyright { display: flex; justify-content: center; align-items: center; gap: 40px; padding-top: 24px; font-size: 12px; line-height: 1.6; color: var(--home-text-subtle); font-weight: 600; text-align: center; }
.footer-container--compact .footer-copyright { padding-top: 6px; }

@media (min-width: 768px) {
  .footer-top--with-app {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
  }

  .footer-top--with-app .footer-nav {
    justify-content: flex-start;
    flex: 1 1 auto;
  }

  .moving-footer-app--inline {
    justify-content: flex-end;
    margin-left: 24px;
  }

  .footer-copyright {
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    text-align: left;
  }
}

/* ==========================================
   PRICING PAGE
========================================== */
body.home-page.pricing-page {
  --pricing-accent: #1fad5e;
  --pricing-accent-soft: #e8f8ee;
  --pricing-border: #e5e7eb;
  --pricing-text: #111827;
  --pricing-text-muted: #667281;
  background: #ffffff;
}

.pricing-page-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 36px 5% 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pricing-page-section {
  width: 100%;
}

.pricing-page-main h2,
.pricing-page-main h3 {
  margin: 0;
  color: var(--pricing-text);
}

.pricing-page-hero {
  padding-top: 2px;
}

.pricing-page-hero-shell {
  display: block;
}

.pricing-page-hero-surface {
  padding: 30px 0;
}

.pricing-page-hero-title {
  margin: 0;
  max-width: none;
  color: var(--pricing-text);
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.pricing-page-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.pricing-page-hero-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-page-hero-copy {
  margin: 0;
  max-width: 40ch;
  color: var(--pricing-text-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
  white-space: normal;
}

.pricing-page-hero-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pricing-page-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-page-hero-button--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--pricing-border);
  background: transparent;
  color: var(--pricing-text);
  text-decoration: none;
}

.pricing-page-hero-button--ghost:hover,
.pricing-page-hero-button--ghost:focus-visible {
  background: rgba(15, 23, 42, 0.04);
  border-color: var(--pricing-text);
  color: var(--pricing-text);
  outline: none;
}

.pricing-page-hero-meta {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.pricing-page-note,
.pricing-page-surface,
.pricing-page-cta {
  border: 1px solid var(--pricing-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.pricing-page-note {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
}

.pricing-page-note-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f4;
}

.pricing-page-note-row:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.pricing-page-note-row span,
.pricing-overtime-table th {
  display: inline-flex;
  align-items: center;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-page-note-row strong {
  color: var(--pricing-text);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-page-note p,
.pricing-page-hero-meta,
.pricing-page-section-head p,
.pricing-factor-card p,
.pricing-rate-title-row p,
.pricing-summary-card p,
.pricing-page-cta-copy p,
.pricing-faq-row p,
.pricing-overtime-formula,
.pricing-overtime-note {
  margin: 0;
  color: var(--pricing-text-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.pricing-page-surface {
  padding: 30px;
}

.pricing-page-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.pricing-page-section-head--stack {
  align-items: flex-start;
}

.pricing-page-section-head h2,
.pricing-page-cta-copy h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.pricing-page-section-head p {
  max-width: 34ch;
}

.pricing-page-section-head--stack p {
  max-width: 64ch;
}

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

.pricing-factor-card {
  min-height: 216px;
  padding: 24px;
  border: 1px solid var(--pricing-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-factor-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--pricing-accent-soft);
  color: var(--pricing-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-factor-icon .material-icons-round {
  font-size: 28px;
}

.pricing-factor-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pricing-factor-card p {
  font-size: 14px;
  line-height: 1.55;
}

.pricing-rate-list {
  display: flex;
  flex-direction: column;
}

.pricing-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid #eef2f4;
}

.pricing-rate-row:first-child,
.pricing-faq-row:first-child {
  border-top: none;
  padding-top: 0;
}

.pricing-rate-row:last-child,
.pricing-faq-row:last-child {
  padding-bottom: 0;
}

.pricing-rate-main {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.pricing-rate-visual {
  width: 110px;
  height: 84px;
  flex: 0 0 auto;
  border-radius: 20px;
  border: 1px solid #edf1f3;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pricing-rate-visual img {
  width: 84%;
  max-height: 84%;
  object-fit: contain;
  display: block;
}

.pricing-rate-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-rate-title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pricing-rate-title-row h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pricing-rate-title-row p {
  max-width: 42ch;
}

.pricing-rate-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 14px;
  background: var(--pricing-accent-soft);
  color: var(--pricing-accent);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.pricing-rate-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  flex: 0 0 auto;
}

.pricing-rate-price span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-rate-price strong {
  color: #111111;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.pricing-overtime-table-wrap {
  overflow-x: auto;
}

.pricing-overtime-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-overtime-table th {
  padding: 0 0 14px;
  text-align: left;
}

.pricing-overtime-table td {
  padding: 18px 0;
  border-top: 1px solid #eef2f4;
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: top;
}

.pricing-overtime-table td strong {
  display: inline-block;
  margin-right: 8px;
  color: var(--pricing-text);
  font-weight: 800;
}

.pricing-overtime-table td span {
  color: var(--pricing-text-muted);
}

.pricing-overtime-formula {
  margin-top: 18px;
  color: var(--pricing-text);
  font-size: 14px;
  font-weight: 700;
}

.pricing-overtime-note {
  margin-top: 10px;
  font-size: 13px;
}

.pricing-page-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-summary-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-summary-card h2,
.pricing-summary-card h3 {
  margin-top: 8px;
  font-size: clamp(28px, 2.9vw, 36px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.pricing-page-cta {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
}

.pricing-page-cta-copy {
  max-width: 38rem;
}

.pricing-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.pricing-page-faq-shell {
  padding-bottom: 26px;
}

.pricing-page-section-head--faq {
  margin-bottom: 18px;
}

.pricing-faq-list {
  display: flex;
  flex-direction: column;
}

.pricing-faq-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid #eef2f4;
}

.pricing-faq-row h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (max-width: 979px) {
  .pricing-page-hero-shell,
  .pricing-page-summary-grid,
  .pricing-faq-row {
    grid-template-columns: 1fr;
  }

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

  .pricing-page-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-page-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 979px) {
  .pricing-page-main {
    padding: 24px 14px 0;
    gap: 18px;
  }

  .pricing-page-surface,
  .pricing-page-cta,
  .pricing-page-note {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .pricing-factor-grid {
    gap: 14px;
  }

  .pricing-page-hero-surface {
    padding: 30px 0;
  }

  .pricing-page-hero-title {
    font-size: clamp(42px, 11vw, 58px);
    white-space: normal;
  }

  .pricing-page-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .pricing-page-hero-copy {
    font-size: 15px;
    line-height: 1.6;
    white-space: normal;
  }

  .pricing-page-hero-actions {
    width: 100%;
  }

  .pricing-page-hero-button {
    width: 100%;
    flex: 1;
  }

  .pricing-factor-card {
    min-height: 0;
    padding: 20px;
  }

  .pricing-rate-row,
  .pricing-faq-row {
    gap: 18px;
  }

  .pricing-rate-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-rate-main {
    width: 100%;
    align-items: flex-start;
  }

  .pricing-rate-visual {
    width: 92px;
    height: 72px;
  }

  .pricing-rate-title-row {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-rate-price {
    align-items: flex-start;
    text-align: left;
  }

  .pricing-page-cta-actions,
  .courier-cargo-hero-actions {
    width: 100%;
  }

  .pricing-page-cta-actions .courier-cargo-primary-link,
  .pricing-page-cta-actions .courier-cargo-secondary-link,
  .courier-cargo-hero-actions .courier-cargo-primary-link,
  .courier-cargo-hero-actions .courier-cargo-secondary-link {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .pricing-factor-grid {
    grid-template-columns: 1fr;
  }

  .pricing-overtime-table th,
  .pricing-overtime-table td {
    font-size: 14px;
  }

  .pricing-summary-card h2,
  .pricing-summary-card h3 {
    font-size: 28px;
  }
}

/* ==========================================
   МОДАЛКИ БАЗОВОЕ И КАРТА
========================================== */
html.map-modal-open,
body.map-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.map-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--modal-scroll-lock-top, 0px);
  width: 100%;
}
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); display: none; justify-content: center; align-items: center; z-index: 1000; backdrop-filter: none; -webkit-backdrop-filter: none; }
.modal-overlay.active { display: flex; overscroll-behavior: contain; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.payment-method-modal {
  align-items: flex-end;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 979px) {
  body.home-page:not(.order-focus-page) .payment-method-modal {
    background: rgba(15, 23, 42, 0.42);
  }

  body.home-page:not(.order-focus-page) .payment-method-modal-content {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 28px 28px 0 0;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

.payment-method-modal-content {
  width: min(520px, calc(100% - 24px));
  margin: 18px;
  padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  animation: slideUp 0.28s ease forwards;
}

.payment-method-modal-handle {
  width: 48px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
}

.payment-method-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.payment-method-modal-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #111827;
}

.payment-method-modal-subtitle {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #667085;
  max-width: 34ch;
}

.payment-method-modal-close {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  flex: 0 0 40px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.payment-method-modal-close:hover {
  background: #eef2f7;
}

.payment-method-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes paymentMethodPanelFloatIn {
  from {
    transform: translate3d(18px, 20px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.payment-method-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}
@media (min-width: 980px) {
  .payment-method-modal {
    justify-content: stretch;
    align-items: stretch;
    padding: 0;
  }

  .payment-method-modal-content {
    position: fixed;
    top: var(--payment-method-panel-top, 120px);
    right: var(--payment-method-panel-right, 28px);
    width: min(var(--payment-method-panel-width, 420px), calc(100vw - 32px));
    max-height: min(var(--payment-method-panel-max-height, 520px), calc(100vh - var(--payment-method-panel-top, 120px) - 18px));
    overflow-y: auto;
    margin: 0;
    padding: 16px 18px 18px;
    border-radius: 26px;
    animation: paymentMethodPanelFloatIn 0.24s ease forwards;
    z-index: 1002;
  }

  .payment-method-modal-handle {
    display: none;
  }

  .payment-method-modal-header {
    margin-bottom: 12px;
  }

  .payment-method-modal-title {
    font-size: 24px;
    letter-spacing: -0.04em;
  }

  .payment-method-modal-subtitle {
    max-width: none;
    font-size: 12px;
    line-height: 1.45;
  }

  body.home-page:not(.order-focus-page) .payment-method-modal-content {
    top: var(--widget-dropdown-top, 120px);
    left: var(--widget-dropdown-left, calc(100vw - 32px - 420px));
    right: auto;
    width: min(480px, calc(100vw - 32px));
    max-width: min(480px, calc(100vw - 32px));
    max-height: none;
    overflow: visible;
    transform-origin: left var(--widget-dropdown-arrow-top, 84px);
  }

  body.home-page:not(.order-focus-page) .payment-method-modal::before {
    content: "";
    position: fixed;
    top: calc(var(--widget-dropdown-top, 16px) + var(--widget-dropdown-arrow-top, 84px));
    left: calc(var(--widget-dropdown-left, 16px) + var(--widget-dropdown-width, 480px) - 9px);
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
    z-index: 1001;
    pointer-events: none;
    box-shadow: 8px -8px 22px rgba(15, 23, 42, 0.06);
  }

  body.home-page:not(.order-focus-page) .payment-method-modal.active::before {
    opacity: 1;
    visibility: visible;
  }

  body.payment-method-modal-open .hero-right .checkout-row {
    position: relative;
    z-index: 2;
    pointer-events: none;
  }
  body.payment-method-modal-open .hero-right .checkout-row .side-btn,
  body.payment-method-modal-open .hero-right .checkout-row .checkout-btn {
    transition: none;
    transform: none !important;
  }
  body.payment-method-modal-open .hero-right .checkout-row .side-btn {
    box-shadow: none !important;
  }
  body.payment-method-modal-open .hero-right .checkout-row .checkout-btn {
    box-shadow: 0 10px 24px rgba(0, 184, 64, 0.25) !important;
  }
}

body.home-page:not(.order-focus-page) #paymentMethodModal.payment-method-modal {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 var(--payment-method-panel-left, max(18px, calc(50vw + 180px)));
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page:not(.order-focus-page) #paymentMethodModal .payment-method-modal-content {
  position: relative;
  inset: auto;
  width: min(calc(100vw - var(--payment-method-panel-left, 10px)), var(--payment-method-panel-width, 490px));
  max-width: min(calc(100vw - var(--payment-method-panel-left, 10px)), var(--payment-method-panel-width, 490px));
  max-height: calc(100dvh - 18px);
  margin: 0;
  overflow-y: auto;
  transform-origin: center bottom;
}

body.home-page:not(.order-focus-page) #paymentMethodModal::before {
  content: none;
}

.payment-method-option:hover {
  transform: translateY(-1px);
  border-color: #d0d7de;
  background: #fcfcfd;
}

.payment-method-option.is-selected {
  border-color: rgba(22, 163, 74, 0.28);
  background: rgba(22, 163, 74, 0.06);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.06);
}

.payment-method-option__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f4f5f7;
  color: #111827;
  font-size: 20px !important;
}

.payment-method-option__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-method-option__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  letter-spacing: -0.01em;
}

.payment-method-option__subtitle {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #667085;
}

.payment-method-option__badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-modal-content { width: min(94vw, 1260px); max-width: 1260px; height: 100vh; height: 100dvh; max-height: 100dvh; display: flex; gap: 8px; background: #a8aaad; border-radius: 20px; pointer-events: none; animation: slideUp 0.3s forwards; overscroll-behavior: contain; }
.map-container { position: relative; flex: 1; background: #e2e8f0; border-radius: 20px; overflow: hidden; pointer-events: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.map-panel { position: relative; flex: 0 0 clamp(520px, 36vw, 560px); width: clamp(520px, 36vw, 560px); background: white; border-radius: 20px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; pointer-events: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.2); overscroll-behavior: contain; }
@media (min-width: 980px) {
  #mapModal {
    --map-modal-top-gap: clamp(44px, 6vh, 72px);
  }

  #mapModal.modal-overlay {
    align-items: flex-end;
    box-sizing: border-box;
    padding-top: var(--map-modal-top-gap);
  }

  #mapModal .map-modal-content {
    width: min(88vw, 1160px);
    max-width: 1160px;
    height: calc(100dvh - var(--map-modal-top-gap));
    max-height: calc(100dvh - var(--map-modal-top-gap));
  }

  #mapModal .map-panel {
    flex-basis: clamp(440px, 33vw, 500px);
    width: clamp(440px, 33vw, 500px);
    padding: 26px 28px 24px;
  }
}
.map-panel-header { display: none; }
.map-back-pill, .map-toggle-btn { border: 1px solid #e5e7eb; background: #f8fafc; color: #374151; }
.map-back-pill { border-radius: 999px; height: 42px; padding: 0 18px; font-size: 17px; }
.map-toggle-btn { width: 42px; height: 42px; border-radius: 12px; display: none; align-items: center; justify-content: center; }
.map-toggle-btn .material-icons-round { font-size: 20px; }
.route-inputs {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.route-input-block {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  max-height: 220px;
  overflow: visible;
  transform-origin: top center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, max-height 0.32s ease, margin-bottom 0.32s ease;
  will-change: transform, opacity, max-height;
}
.route-input-group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
  border: 1px solid #e3e6e9;
  border-radius: 24px;
  padding: 10px 12px;
  margin-bottom: 0;
  background: #f6f6f7;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
  will-change: transform;
}
.route-input-group:hover,
.route-input-group.active,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .route-input-group {
  border-color: #59bf46;
  box-shadow: inset 0 0 0 1px rgba(89, 191, 70, 0.16);
  z-index: 30;
}
.route-input-group.validation-error,
.route-input-group.validation-error:hover,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .route-input-group.validation-error {
  border-color: #e53935;
  box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.1);
}
.route-input-group.validation-error .input-wrap label {
  color: #d32f2f;
}
.route-input-group.needs-resolution:not(.validation-error) {
  border-color: #d8a320;
  box-shadow: inset 0 0 0 1px rgba(216, 163, 32, 0.12);
}
.route-input-group.needs-resolution:not(.validation-error) .input-wrap label {
  color: #a36f00;
}
.route-input-group.suggestions-open {
  overflow: visible;
  z-index: 60;
}
.route-inputs.autocomplete-focus-mode .route-input-block:not(.pinned-top) {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.map-panel.autocomplete-suggestions-open {
  padding-bottom: 0;
}
.map-panel.autocomplete-suggestions-open .panel-bottom {
  display: none;
}
.map-panel.autocomplete-focus-mode .route-inputs {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  overflow: hidden;
}
.route-inputs.inline-suggestions-mode:not(.autocomplete-focus-mode) {
  display: block;
  padding-bottom: 0;
  overflow: visible;
}
.route-inputs.inline-suggestions-mode:not(.autocomplete-focus-mode) .route-input-block.suggestions-expanded {
  position: static;
  z-index: 70;
  transform: none;
  transition: none;
  will-change: auto;
  overflow: visible;
}
.route-inputs.inline-suggestions-mode:not(.autocomplete-focus-mode) .route-input-block.suggestions-expanded .suggestions-list {
  position: absolute;
  top: var(--inline-suggestions-top, 0);
  left: var(--inline-suggestions-left, 0);
  right: var(--inline-suggestions-right, 0);
  bottom: 0;
  width: auto;
  max-height: none;
  min-height: 0;
  overflow-y: auto;
  margin: 0;
  padding: 2px 0 0;
  z-index: 85;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  max-height: none;
  min-height: 0;
  margin-bottom: 0;
  overflow: visible;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .route-input-group {
  flex: 0 0 auto;
  position: static;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .locate-btn,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .delete-btn {
  display: none;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestions-list {
  position: static;
  flex: 1 1 auto;
  width: 100%;
  z-index: 1;
  margin-top: 8px;
  max-height: none;
  min-height: 0;
  overflow-y: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestion-item {
  padding: 12px 8px 10px 18px;
  min-height: 68px;
  border-bottom-color: #d8dde3;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestion-item:hover,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestion-item.active,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestion-item:focus-visible {
  background: #eef1f4;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestion-title {
  font-size: 17px;
  line-height: 1.2;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestion-meta,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestion-subtitle {
  font-size: 12px;
  line-height: 1.3;
}
.step-num-wrap {
  width: 52px;
  display: flex;
  justify-content: flex-start;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  position: relative;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-num-wrap:active { cursor: grabbing; }
.step-num {
  width: 38px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2d3748;
  font-weight: 500;
  font-size: 16px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: #ececee;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
}
.step-num::before {
  display: none;
}
.route-sort-holding .step-num-wrap--holding {
  transform: translateY(1px);
}
.route-sort-holding .step-num-wrap--holding .step-num {
  animation: routeHandleHold 170ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #e3e7ec;
  box-shadow: inset 0 0 0 1px rgba(89, 191, 70, 0.24);
}
.step-num-wrap--dragging .step-num {
  transform: scale(1.04);
  background: #59bf46 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(89, 191, 70, 0.34);
}
.step-num-wrap:hover .step-num {
  color: #2d3748;
  background: #e7e8ea;
}
.step-num-wrap:hover .step-num::before { opacity: 0; }
.route-input-group:hover .step-num,
.route-input-group.active .step-num,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .step-num {
  background: #59bf46;
  color: #ffffff;
}
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .step-num-wrap:hover .step-num {
  color: #ffffff;
  background: #59bf46;
}
.input-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.input-wrap label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #97a0ab;
  text-transform: lowercase;
  font-weight: 500;
  margin-bottom: 2px;
}
.input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  padding-right: 30px;
  padding-top: 0;
  background: transparent;
  line-height: 1.35;
  color: #263246;
  font-weight: 500;
}
.input-wrap.has-secondary-line input {
  line-height: 1.15;
}
.secondary-address-line {
  margin-top: 2px;
  padding-right: 30px;
  font-size: 13px;
  line-height: 1.2;
  color: #97a0ab;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.route-input-feedback {
  margin-top: 3px;
  padding-right: 30px;
  font-size: 12px;
  line-height: 1.25;
  color: #9a6b09;
}
.route-input-group.validation-error .route-input-feedback {
  color: #d32f2f;
}
.route-input-group:hover .input-wrap label,
.route-input-group.active .input-wrap label,
.route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .input-wrap label { color: #69bf58; }
.input-wrap input::placeholder { color: #aab1ba; }
.clear-btn,
.locate-btn {
  width: 44px;
  height: 44px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.clear-btn {
  position: absolute;
  right: 2px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #9aa1ab;
}
.locate-btn {
  border-radius: 16px;
  background: #ececee;
  color: #7b8592;
  margin-left: 8px;
}
.clear-btn[hidden] { display: none; }
.clear-btn:hover { background: transparent; color: #7b8592; }
.locate-btn:hover,
.delete-btn:hover { background: #e5e7ea; color: #5d6776; }
.clear-btn:active { transform: translateY(-50%) scale(0.96); }
.locate-btn:active,
.delete-btn:active { transform: scale(0.98); }
.clear-btn .material-icons-round { font-size: 18px; }
.locate-btn .material-icons-round { font-size: 22px; }
.delete-btn {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: none;
  border-radius: 16px;
  background: #ececee;
  color: #7b8592;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.delete-btn .material-icons-round { font-size: 22px; }
.add-stop-btn { width: 100%; background: #f8f9fa; border: 1px solid #eee; padding: 15px; border-radius: 12px; color: #555; cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease; }
.add-stop-btn:hover,
.add-stop-btn:focus-visible {
  border-color: rgba(105, 191, 88, 0.72);
  background: rgba(105, 191, 88, 0.05);
  box-shadow: inset 0 0 0 1px rgba(105, 191, 88, 0.14);
  outline: none;
}
.modal-actions { display: flex; gap: 10px; }
.btn-confirm { flex: 1; background: #00b840; color: white; border: none; padding: 15px; border-radius: 12px; font-weight: bold; cursor: pointer; }
.btn-confirm:disabled,
.btn-confirm[aria-disabled='true'] {
  background: #e5e7eb;
  color: #9aa3af;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-cancel { flex: 1; background: #f4f6f8; color: #333; border: none; padding: 15px; border-radius: 12px; font-weight: bold; cursor: pointer; }
.panel-bottom {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding-top: 10px;
}
.autocomplete-container { position: relative; z-index: 35; min-width: 0; }
.suggestions-list {
  position: static;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-height: 360px;
  overflow-y: auto;
  display: none;
  margin: 8px 0 0;
  padding: 2px 0;
  scrollbar-width: thin;
  scrollbar-color: #d9dde2 transparent;
  overscroll-behavior: contain;
}
.suggestion-item {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 14px 9px;
  border-bottom: 1px solid #eef1f4;
  cursor: pointer;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover,
.suggestion-item.active,
.suggestion-item:focus-visible { background: #f2f4f6; outline: none; }
.suggestion-item:active { background: #eceff3; }
.suggestion-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 9px;
  border-bottom: 1px solid #eef1f4;
  color: #7a8493;
  font-size: 13px;
  line-height: 1.35;
  background: transparent;
}
.suggestion-status:last-child { border-bottom: none; }
.suggestion-status-spinner {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  border: none;
  background: #8a93a1;
  opacity: 0.7;
  animation: suggestionStatusPulse 1.1s ease-in-out infinite;
}
.suggestion-status-text { min-width: 0; }
@keyframes suggestionStatusPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.86); }
  45% { opacity: 0.9; transform: scale(1); }
}
.suggestion-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.suggestion-title {
  font-size: 16px;
  font-weight: 500;
  color: #2b3445;
  line-height: 1.2;
}
.suggestion-meta {
  font-size: 11px;
  color: #8a93a1;
  line-height: 1.2;
}
.suggestion-house {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 500;
  color: #2b3445;
  line-height: 1.2;
  text-align: right;
}
.suggestion-subtitle {
  font-size: 11px;
  color: #8a93a1;
  line-height: 1.25;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.suggestion-subtitle:empty { display: none; }

/* Google Places dropdown styling for map modal */
.pac-container {
  margin-top: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  z-index: 2200 !important;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.pac-container:after {
  padding: 8px 12px;
  opacity: 0.9;
}
.pac-item {
  min-height: 58px;
  padding: 12px 14px 12px 40px;
  border-top: 1px solid #eef2f7;
  font-size: 15px;
  line-height: 1.3;
  color: #111827;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover {
  background: #f8fafc;
}
.pac-item:active {
  background: #eefbf1;
}
.pac-item .pac-item-query {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.pac-matched {
  font-weight: 700;
  color: #111827;
}
.pac-icon {
  margin-top: 3px;
  opacity: 0.75;
}
.pac-logo:after {
  transform: scale(1.02);
  transform-origin: right center;
}
.custom-map-marker { background-color: #00b840; color: white; width: 30px; height: 30px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; justify-content: center; align-items: center; border: 2px solid white; box-shadow: 0 3px 5px rgba(0,0,0,0.3); }
.custom-map-marker span { transform: rotate(45deg); font-weight: bold; font-size: 14px; }
.leaflet-routing-container { display: none !important; }
.route-input-block.route-reorder-pop .route-input-group {
  animation: routeReorderPop 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.route-inputs.route-sorting {
  overscroll-behavior: contain;
}
.route-inputs.route-sorting .route-input-block {
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s ease !important;
}
.route-inputs.route-sorting .route-input-group {
  transition: transform 0.24s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}
.route-drag-ghost {
  opacity: 0;
}
.route-drag-ghost .route-input-group {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}
.route-drag-ghost .step-num {
  background: transparent !important;
  color: transparent !important;
}
.route-drag-chosen .route-input-group {
  border-color: #52bc53 !important;
  box-shadow: 0 12px 28px rgba(82, 188, 83, 0.2);
}
.route-drag-chosen .step-num {
  background: #59bf46 !important;
  color: #ffffff !important;
}
.route-drag-dragging {
  z-index: 120;
}
.route-drag-dragging .route-input-group {
  transform: scale(1.014);
  border-color: #52bc53 !important;
  background: #ffffff !important;
  box-shadow: 0 20px 42px rgba(17, 24, 39, 0.18);
}
.route-drag-dragging .step-num {
  background: #59bf46 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(89, 191, 70, 0.3);
}
.route-drag-fallback {
  opacity: 1 !important;
  pointer-events: none;
  z-index: 130 !important;
}
.route-drag-fallback .route-input-group {
  transform: scale(1.014);
  border-color: #52bc53 !important;
  background: #ffffff !important;
  box-shadow: 0 20px 42px rgba(17, 24, 39, 0.18);
}
.route-drag-fallback .step-num {
  background: #59bf46 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(89, 191, 70, 0.3);
}

@media (hover: none) {
  .step-num-wrap:hover .step-num {
    color: #2d3748;
    background: #ececee;
  }
  .step-num-wrap:hover .step-num::before { opacity: 0; }
}

@keyframes routeHandleHold {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.92);
  }
}

@keyframes routeReorderPop {
  0% {
    transform: scale(0.985);
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.08);
  }
  60% {
    transform: scale(1.01);
    box-shadow: 0 16px 28px rgba(17, 24, 39, 0.12);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-input-block,
  .route-input-group,
  .step-num,
  .route-drag-fallback .route-input-group,
  .route-drag-ghost .route-input-group,
  .route-input-block.route-reorder-pop .route-input-group {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

#mapModal button,
#mapModal input,
#mapModal .route-input-group,
#mapModal .suggestion-item {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ГРУЗОВИК МОДАЛКА */
.truck-modal-content{ width: min(800px, 92vw); max-height: min(760px, 86vh); background: #fff; border-radius: 22px; display: flex; flex-direction: column; overflow: hidden; animation: slideUp 0.3s forwards; }
.truck-modal-header{ display:flex; align-items:flex-start; justify-content: space-between; gap: 14px; padding: 18px 18px 14px; border-bottom: 1px solid #f0f0f0; background: #fff; }
.truck-modal-heading{ display:flex; flex-direction:column; gap: 4px; min-width: 0; }
.truck-modal-title{ display: block; margin: 0; color: #111827; font-size: 24px; line-height: 1.05; font-weight: 800; letter-spacing: -0.035em; }
.truck-modal-caption{ color: #6b7280; font-size: 14px; line-height: 1.35; font-weight: 500; }
.truck-tabs{ display:none; }
.truck-tab{ display:none; }
.truck-tab.active{ display:none; }
.truck-close-btn{ width: 42px; height: 42px; border: none; background: #f4f6f8; border-radius: 14px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:#111111; flex-shrink: 0; }
.truck-list{ padding: 14px 18px 18px; display:flex; flex-direction: column; gap: 10px; overflow: auto; flex: 0 1 auto; background: #fafafa; }
.truck-size-dock{ display: none; }
.truck-row{ width: 100%; min-height: 102px; background: #fff; border: 1px solid #e9eaec; border-radius: 20px; padding: 14px 16px; display:flex; gap: 14px; align-items: center; text-align: left; cursor:pointer; transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease; }
.truck-row:hover{ border-color: rgba(0, 184, 64, 0.2); background: #fcfffd; }
.truck-row.selected{ border-color: #19b64b; box-shadow: 0 0 0 1px rgba(25, 182, 75, 0.9); background: linear-gradient(180deg, #ffffff 0%, #fcfffd 100%); }
.truck-row-top,
.truck-size-badge,
.truck-preview-visual,
.truck-preview-placeholder,
.truck-facts,
.truck-fact-tag,
.truck-description,
.truck-pic-img-large { display: none; }
.truck-pic{ width: 92px; height: 66px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.truck-pic-img { width: 100%; height: 100%; object-fit: contain; display: block; }
body.home-page #truckModal .truck-pic-img[data-truck-id="bike"] { transform: scale(1.72); transform-origin: center; }
body.home-page #truckModal .truck-pic-img[data-truck-id="van"] { transform: translateX(-9px) scale(1.52); transform-origin: center; }
body.home-page #truckModal .truck-pic-img[data-truck-id="any"] { transform: scale(1.14); transform-origin: center; }
body.home-page #truckModal .truck-pic-img[data-truck-id="roomy"] { transform: scale(1.34); transform-origin: center; }
.truck-pic-fallback{ font-size: 28px; font-weight: 800; color: #19b64b; }
.truck-texts{ flex:1; min-width: 0; }
.truck-name-row{ display:flex; flex-direction:column; gap: 4px; margin-bottom: 10px; min-width: 0; }
.truck-name{ font-weight: 800; font-size: 20px; line-height: 1; color: #111111; letter-spacing: -0.03em; }
.truck-label{ color: #6b7280; font-size: 13px; line-height: 1.3; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.truck-meta{ display:flex; gap: 8px; flex-wrap: wrap; }
.meta-pill{ display: inline-flex; align-items: center; min-height: 30px; font-size: 12px; background: #f3f4f6; padding: 0 10px; border-radius: 999px; color:#4b5563; white-space: nowrap; }
.truck-row.selected .meta-pill{ background: #f2fbf5; color: #2d6a3f; }
.truck-check{ width: 30px; height: 30px; border-radius: 999px; display:flex; align-items:center; justify-content:center; color: #19b64b; background: #effaf2; border: 1px solid rgba(25, 182, 75, 0.18); opacity: 0; flex-shrink: 0; }
.truck-check .material-icons-round{ font-size: 20px; font-weight: 400; }
.truck-row.selected .truck-check{ opacity: 1; }
.truck-modal-footer{ padding: 14px 18px 18px; display:flex; gap: 12px; border-top: 1px solid #f0f0f0; background: #fff; }
.truck-back-btn{ width: 56px; border: none; border-radius: 16px; background: #f4f6f8; cursor:pointer; color: #111111; }
.truck-confirm-btn{ flex:1; border: none; border-radius: 18px; background: linear-gradient(180deg, #1cc454 0%, #12b547 100%); color:#fff; font-size: 17px; font-weight: 800; cursor:pointer; padding: 15px; box-shadow: 0 10px 24px rgba(25, 182, 75, 0.16); }
.truck-confirm-btn:hover{ background: linear-gradient(180deg, #22cd59 0%, #13bb4a 100%); }

@media (min-width: 980px) {
  #truckModal {
    justify-content: flex-end;
    align-items: stretch;
    padding:
      0
      max(24px, calc((100vw - 1300px) / 2 + 65px))
      0
      24px;
    background: rgba(15, 23, 42, 0.18);
  }

  #truckModal .truck-modal-content {
    width: 560px;
    max-width: 560px;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  }

  #truckModal .truck-modal-header {
    padding: 20px 20px 14px;
  }

  #truckModal .truck-close-btn {
    width: 46px;
    height: 46px;
  }

  #truckModal .truck-list {
    padding: 14px 20px 18px;
    flex: 1 1 auto;
  }

  #truckModal .truck-modal-footer {
    padding: 14px 20px 20px;
  }

  #optionsModal {
    justify-content: flex-end;
    align-items: stretch;
    padding:
      0
      max(24px, calc((100vw - 1300px) / 2 + 65px))
      0
      24px;
    background: rgba(15, 23, 42, 0.18);
  }

  #optionsModal .options-modal-content {
    width: 560px;
    max-width: 560px;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  }

  #optionsModal .options-title {
    padding: 22px 22px 16px;
  }

  #optionsModal .options-body {
    padding: 0 22px 18px;
    gap: 18px;
  }

  #optionsModal .options-footer {
    padding: 16px 22px 22px;
    border-radius: 0 0 28px 28px;
  }

  #serviceCommentModal,
  #addressDetailsModal {
    justify-content: flex-end;
    align-items: stretch;
    padding:
      0
      max(24px, calc((100vw - 1300px) / 2 + 65px))
      0
      24px;
    background: rgba(15, 23, 42, 0.18);
  }

  #serviceCommentModal .options-modal-content,
  #addressDetailsModal .options-modal-content {
    width: 560px;
    max-width: 560px;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  }

  #serviceCommentModal .options-title,
  #addressDetailsModal .options-title {
    padding: 22px 22px 16px;
  }

  #serviceCommentModal .options-body,
  #addressDetailsModal .options-body {
    padding: 0 22px 18px;
    gap: 18px;
  }

  #serviceCommentModal .options-footer,
  #addressDetailsModal .options-footer {
    padding: 16px 22px 22px;
    border-radius: 0 0 28px 28px;
  }

  #dateModal {
    justify-content: flex-end;
    align-items: stretch;
    padding:
      0
      max(24px, calc((100vw - 1300px) / 2 + 65px))
      0
      24px;
    background: rgba(15, 23, 42, 0.18);
  }

  #dateModal .date-modal-content {
    width: 560px;
    max-width: 560px;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  }

  #dateModal .date-modal-body {
    padding: 22px 22px 18px;
  }

  #dateModal .date-footer {
    padding: 16px 22px 22px;
    border-radius: 0 0 28px 28px;
  }

  .order-focus-page #truckModal {
    top: var(--flexlast-header-height);
    height: calc(100dvh - var(--flexlast-header-height));
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.15) 36%, rgba(15, 23, 42, 0.05) 58%, rgba(15, 23, 42, 0.08) 100%);
    backdrop-filter: blur(1.75px) saturate(1.03);
    -webkit-backdrop-filter: blur(1.75px) saturate(1.03);
  }

  .order-focus-page #truckModal::before {
    content: "";
    position: absolute;
    top: calc(var(--truck-dropdown-top, 16px) + var(--truck-dropdown-arrow-top, 84px));
    left: calc(var(--truck-dropdown-left, 16px) - 7px);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
    z-index: 1200;
    pointer-events: none;
    box-shadow: -8px 8px 22px rgba(15, 23, 42, 0.06);
  }

  .order-focus-page #truckModal.active::before {
    opacity: 1;
    visibility: visible;
  }

  .order-focus-page #truckModal .truck-modal-content {
    position: absolute;
    top: var(--truck-dropdown-top, 16px);
    left: var(--truck-dropdown-left, 16px);
    width: min(490px, calc(100vw - 32px));
    max-width: min(490px, calc(100vw - 32px));
    max-height: calc(100dvh - var(--flexlast-header-height) - 32px);
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.988);
    transform-origin: left var(--truck-dropdown-arrow-top, 84px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
    z-index: 1201;
  }

  .order-focus-page #truckModal.active .truck-modal-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .order-focus-page #truckModal .truck-modal-header {
    padding: 22px 22px 14px;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
  }

  .order-focus-page #truckModal .truck-close-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f8fafc;
    color: #1f2937;
    box-shadow: inset 0 0 0 1px #e2e8f0;
  }

  .order-focus-page #truckModal .truck-list {
    padding: 14px 22px 22px;
    background: transparent;
    gap: 12px;
  }

  .order-focus-page #truckModal .truck-modal-title {
    font-size: 27px;
    letter-spacing: -0.045em;
  }

  .order-focus-page #truckModal .truck-modal-caption {
    margin-top: 2px;
    max-width: 28ch;
    font-size: 15px;
    line-height: 1.42;
    color: #667085;
  }

  .order-focus-page #truckModal .truck-row {
    min-height: 96px;
    padding: 16px 18px;
    border-radius: 24px;
    border-color: #e2e8f0;
    background: #ffffff;
    box-shadow: none;
  }

  .order-focus-page #truckModal .truck-row:hover {
    border-color: rgba(25, 182, 75, 0.18);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    transform: translateY(-1px);
  }

  .order-focus-page #truckModal .truck-row.selected {
    border-color: rgba(25, 182, 75, 0.72);
    box-shadow: 0 0 0 1px rgba(25, 182, 75, 0.58), 0 10px 22px rgba(25, 182, 75, 0.08);
    background: #f7fff9;
  }

  .order-focus-page #truckModal .truck-pic {
    width: 98px;
    height: 70px;
  }

  .order-focus-page #truckModal .truck-name-row {
    gap: 6px;
    margin-bottom: 12px;
  }

  .order-focus-page #truckModal .truck-name {
    font-size: 21px;
    letter-spacing: -0.04em;
  }

  .order-focus-page #truckModal .truck-label {
    font-size: 14px;
    color: #667085;
  }

  .order-focus-page #truckModal .truck-meta {
    gap: 7px;
  }

  .order-focus-page #truckModal .meta-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11.5px;
    background: #f5f7fa;
    color: #667085;
  }

  .order-focus-page #truckModal .meta-pill:nth-child(n + 3) {
    background: #f8fafc;
    color: #7b8794;
    opacity: 0.86;
  }

  .order-focus-page #truckModal .truck-row.selected .meta-pill {
    background: #eef8f0;
    color: #2f6f43;
  }

  .order-focus-page #truckModal .truck-row.selected .meta-pill:nth-child(n + 3) {
    background: #f4fbf6;
    color: #588066;
    opacity: 0.92;
  }

  .order-focus-page #truckModal .truck-check {
    width: 32px;
    height: 32px;
    background: #f2fbf5;
    border-color: rgba(25, 182, 75, 0.14);
  }

  .order-focus-page #truckModal .truck-check .material-icons-round {
    font-size: 21px;
  }

  .order-focus-page #truckModal .truck-modal-footer {
    display: none;
  }

  .order-focus-page #optionsModal,
  .order-focus-page #serviceCommentModal,
  .order-focus-page #dateModal,
  .order-focus-page #paymentMethodModal {
    top: var(--flexlast-header-height);
    height: calc(100dvh - var(--flexlast-header-height));
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .order-focus-page #optionsModal::before,
  .order-focus-page #serviceCommentModal::before,
  .order-focus-page #dateModal::before,
  .order-focus-page #paymentMethodModal::before {
    content: "";
    position: absolute;
    top: calc(var(--widget-dropdown-top, 16px) + var(--widget-dropdown-arrow-top, 84px));
    left: calc(var(--widget-dropdown-left, 16px) - 7px);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
    z-index: 1200;
    pointer-events: none;
    box-shadow: -8px 8px 22px rgba(15, 23, 42, 0.06);
  }

  .order-focus-page #paymentMethodModal::before {
    left: calc(var(--widget-dropdown-left, 16px) - 9px);
    width: 18px;
    height: 18px;
    box-shadow: -10px 10px 24px rgba(15, 23, 42, 0.08);
  }

  .order-focus-page #optionsModal.active::before,
  .order-focus-page #serviceCommentModal.active::before,
  .order-focus-page #dateModal.active::before,
  .order-focus-page #paymentMethodModal.active::before {
    opacity: 1;
    visibility: visible;
  }

  .order-focus-page #optionsModal .options-modal-content,
  .order-focus-page #serviceCommentModal .options-modal-content,
  .order-focus-page #addressDetailsModal .options-modal-content,
  .order-focus-page #dateModal .date-modal-content {
    position: absolute;
    top: var(--widget-dropdown-top, 16px);
    left: var(--widget-dropdown-left, 16px);
    width: min(490px, calc(100vw - 32px));
    max-width: min(490px, calc(100vw - 32px));
    max-height: calc(100dvh - var(--flexlast-header-height) - 32px);
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.988);
    transform-origin: left var(--widget-dropdown-arrow-top, 84px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
    z-index: 1201;
  }

  .order-focus-page #optionsModal.active .options-modal-content,
  .order-focus-page #serviceCommentModal.active .options-modal-content,
  .order-focus-page #addressDetailsModal.active .options-modal-content,
  .order-focus-page #dateModal.active .date-modal-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .order-focus-page #paymentMethodModal .payment-method-modal-content {
    position: absolute;
    top: var(--widget-dropdown-top, 16px);
    left: var(--widget-dropdown-left, 16px);
    width: min(480px, calc(100vw - 32px));
    max-width: min(480px, calc(100vw - 32px));
    height: auto;
    max-height: none;
    margin: 0;
    padding: 20px;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
    box-sizing: border-box;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.988);
    transform-origin: left var(--widget-dropdown-arrow-top, 84px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
    animation: none;
    z-index: 1201;
  }

  .order-focus-page #paymentMethodModal.active .payment-method-modal-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .order-focus-page #paymentMethodModal .payment-method-modal-handle {
    display: none;
  }

  .order-focus-page #paymentMethodModal .payment-method-modal-header {
    gap: 14px;
    margin-bottom: 14px;
  }

  .order-focus-page #paymentMethodModal .payment-method-modal-title {
    font-size: 29px;
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .order-focus-page #paymentMethodModal .payment-method-modal-subtitle {
    max-width: 34ch;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .order-focus-page #paymentMethodModal .payment-method-options {
    gap: 12px;
  }

  .order-focus-page #paymentMethodModal .payment-method-option {
    padding: 16px;
    border-radius: 20px;
  }

  .order-focus-page #paymentMethodModal .payment-method-option__icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .order-focus-page #paymentMethodModal .payment-method-option__copy {
    gap: 5px;
  }

  .order-focus-page #paymentMethodModal .payment-method-option__subtitle {
    font-size: 13px;
    line-height: 1.38;
  }

  .order-focus-page #optionsModal .options-title,
  .order-focus-page #serviceCommentModal .options-title {
    padding: 24px 22px 14px;
    font-size: 27px;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .order-focus-page #optionsModal .options-body,
  .order-focus-page #serviceCommentModal .options-body {
    padding: 0 22px 22px;
    gap: 18px;
  }

  .order-focus-page #optionsModal .options-footer,
  .order-focus-page #serviceCommentModal .options-footer,
  .order-focus-page #dateModal .date-footer {
    padding: 16px 22px 22px;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 30px 30px;
    background: #ffffff;
  }

  .order-focus-page #dateModal .date-modal-body {
    padding: 24px 22px 22px;
  }

  .order-focus-page #dateModal .date-modal-title {
    font-size: 27px;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .order-focus-page #dateModal .date-picker-card {
    gap: 16px;
  }

  .order-focus-page #dateModal .date-picker-row {
    gap: 10px;
  }

  .order-focus-page #dateModal .date-picker-value-btn {
    border-color: #e2e8f0;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  }

  .order-focus-page #dateModal .date-picker-value-btn:hover {
    border-color: rgba(148, 163, 184, 0.52);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  }

  .order-focus-page #dateModal .date-picker-value-btn.active {
    box-shadow: 0 0 0 3px rgba(0, 184, 64, 0.06), 0 12px 24px rgba(25, 182, 75, 0.08);
  }

  .order-focus-page #dateModal .picker-popup-card {
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  }

  .order-focus-page #dateModal .date-popup-backdrop {
    background: rgba(15, 23, 42, 0.10);
  }

  .order-focus-page #optionsModal .options-comment,
  .order-focus-page #serviceCommentModal .options-comment {
    min-height: 104px;
    border-color: #e2e8f0;
    background: #fbfcfd;
    box-shadow: none;
  }

  .order-focus-page #optionsModal .options-comment:focus,
  .order-focus-page #serviceCommentModal .options-comment:focus {
    border-color: rgba(25, 182, 75, 0.52);
    box-shadow: 0 0 0 3px rgba(0, 184, 64, 0.06);
  }

  .order-focus-page #optionsModal .option-row,
  .order-focus-page #serviceCommentModal .option-row {
    padding: 14px 14px 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
  }

  .order-focus-page #optionsModal .option-row:hover,
  .order-focus-page #serviceCommentModal .option-row:hover {
    border-color: rgba(148, 163, 184, 0.42);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  }

  .order-focus-page #optionsModal .option-row--disabled,
  .order-focus-page #serviceCommentModal .option-row--disabled {
    background: #f8fafc;
    border-style: dashed;
    box-shadow: none;
  }

  .order-focus-page #optionsModal .option-counter,
  .order-focus-page #serviceCommentModal .option-counter {
    background: #f8fafc;
    border-color: #e2e8f0;
  }

  .order-focus-page #optionsModal .opt-back-btn,
  .order-focus-page #serviceCommentModal .opt-back-btn,
  .order-focus-page #addressDetailsModal .opt-back-btn,
  .order-focus-page #dateModal .date-back-btn {
    background: #f4f6f8;
    box-shadow: inset 0 0 0 1px #e2e8f0;
  }

  .order-focus-page #optionsModal .opt-confirm-btn,
  .order-focus-page #serviceCommentModal .opt-confirm-btn,
  .order-focus-page #addressDetailsModal .opt-confirm-btn,
  .order-focus-page #dateModal .date-confirm-btn {
    box-shadow: 0 10px 22px rgba(25, 182, 75, 0.14);
  }
}

/* ДАТА И ВРЕМЯ (С БАРАБАНОМ И ПЕРЕТАСКИВАНИЕМ) */
.date-modal-content { width: 90%; max-width: 500px; background: #ffffff; border-radius: 28px; display: flex; flex-direction: column; max-height: 90vh; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); animation: slideUp 0.3s forwards; position: relative; }
.date-modal-body { padding: 24px 24px 18px; display: flex; flex-direction: column; gap: 18px; flex: 1; overflow-y: auto; }
.date-modal-title { margin: 0; font-size: 24px; line-height: 1.1; font-weight: 800; letter-spacing: var(--home-track-snug); color: var(--home-text-strong); }
.date-picker-card { display: flex; flex-direction: column; gap: 14px; }
.date-picker-row { display: flex; flex-direction: column; gap: 8px; }
.date-picker-label { font-size: 13px; line-height: 17px; color: #7a8597; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.date-picker-value-btn { width: 100%; border: 1px solid rgba(203, 213, 225, 0.82); border-radius: 18px; background:
  linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  color: #1e2430;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.date-picker-value-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(148, 163, 184, 0.72);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.09);
}
.date-picker-value-btn.active { border-color: rgba(0, 184, 64, 0.34); background: linear-gradient(180deg, #f7fff8 0%, #eefbf0 100%); box-shadow: 0 0 0 3px rgba(0, 184, 64, 0.08), 0 16px 32px rgba(0, 184, 64, 0.1); }
.date-picker-value-content { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; }
.date-picker-value-content .material-icons-round { font-size: 18px; color: #5f6c7d; }
.date-picker-value-text { flex: 1; min-width: 0; text-align: left; font-size: 17px; line-height: 22px; color: #111827; font-weight: 800; text-transform: capitalize; letter-spacing: -0.02em; }
.date-picker-caret { font-size: 18px; color: #7b8797; transition: transform 0.2s ease; }
.date-picker-value-btn.active .date-picker-caret { transform: rotate(180deg); }

.date-rules-section { display: flex; flex-direction: column; gap: 8px; }
.date-rules-title { font-size: 13px; line-height: 17px; color: #5b6676; font-weight: 700; }
.date-rule-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fafbfd;
  padding: 12px 14px;
}
.date-rule-card.is-active-discount {
  border-color: #bfe6b8;
  background: #f3fff0;
}
.date-rule-card.is-active-surcharge {
  border-color: #efd08a;
  background: #fff8e8;
}
.date-rule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.date-rule-lead {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.date-rule-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef3f8;
  color: #516072;
  flex-shrink: 0;
}
.date-rule-card.is-active-discount .date-rule-icon {
  background: #ddf6d7;
  color: #2d8f39;
}
.date-rule-card.is-active-surcharge .date-rule-icon {
  background: #fcebc3;
  color: #a56a00;
}
.date-rule-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.date-rule-name {
  font-size: 15px;
  line-height: 18px;
  color: #1f2937;
  font-weight: 800;
}
.date-rule-meta {
  font-size: 13px;
  line-height: 16px;
  color: #657084;
  font-weight: 700;
}
.date-rule-badge {
  border-radius: 999px;
  padding: 5px 10px;
  background: #eef2f6;
  font-size: 10px;
  line-height: 12px;
  color: #5e6b7c;
  font-weight: 800;
  white-space: nowrap;
}
.date-rule-card.is-active-discount .date-rule-badge {
  background: #ddf6d7;
  color: #2d8f39;
}
.date-rule-card.is-active-surcharge .date-rule-badge {
  background: #fcebc3;
  color: #a56a00;
}
.date-rules-footnote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 2px;
  font-size: 11px;
  line-height: 15px;
  color: #607086;
  font-weight: 500;
}
.date-rules-footnote .material-icons-round {
  font-size: 16px;
  color: #607086;
  flex-shrink: 0;
}

.date-popup-layer { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; z-index: 6; }
.date-popup-layer.active { display: flex; }
.date-popup-backdrop { position: absolute; inset: 0; border: none; background: rgba(15, 23, 42, 0.18); cursor: pointer; }
.picker-popup-card { position: relative; z-index: 1; width: min(100%, 364px); border-radius: 22px; border: 1px solid #dde5ef; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); padding: 14px; box-shadow: 0 28px 56px rgba(15, 23, 42, 0.18); }
.picker-popup-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.picker-popup-nav { width: 36px; height: 36px; border-radius: 11px; border: 1px solid #d8dfe8; background: #f5f8fb; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #2d3543; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease; }
.picker-popup-nav:disabled { opacity: 0.45; cursor: default; }
.picker-popup-title { flex: 1; min-width: 0; margin: 0; text-align: center; font-size: 19px; line-height: 25px; color: #1c2230; font-weight: 800; letter-spacing: 0.01em; text-transform: capitalize; }
.picker-popup-title--solo { margin-bottom: 12px; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); margin-bottom: 6px; }
.calendar-weekdays span { text-align: center; font-size: 11px; line-height: 15px; color: #748094; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.calendar-weekdays .is-weekend { color: #d64545; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
.calendar-day-empty { aspect-ratio: 1; }
.calendar-day-btn { aspect-ratio: 1; border: none; border-radius: 14px; background: transparent; display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 18px; color: #233044; font-weight: 700; letter-spacing: 0.01em; font-variant-numeric: tabular-nums; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease; }
.calendar-day-btn.is-weekend { color: #d64545; }
.calendar-day-btn.disabled { opacity: 0.34; cursor: default; }
.calendar-day-btn.active { background: #00b840; color: #ffffff; }

.time-picker-wrapper { position: relative; display: flex; justify-content: center; height: 158px; padding: 12px; border: 1px solid #dfe5ee; border-radius: 16px; background: #ffffff; }
.time-picker-wrapper--popup { margin-top: 4px; }
.time-highlight { position: absolute; top: 50%; left: 12px; right: 12px; transform: translateY(-50%); height: 52px; background: linear-gradient(180deg, #eff9f0 0%, #e8f8ea 100%); border: 1px solid rgba(0, 184, 64, 0.12); border-radius: 14px; z-index: 1; }
.time-picker-wrapper::before,
.time-picker-wrapper::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 34px;
  z-index: 3;
  pointer-events: none;
}
.time-picker-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.time-picker-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.time-columns { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 24px; width: 100%; }

.time-col { 
  height: 150px; 
  overflow-y: scroll; 
  scroll-snap-type: y mandatory; 
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  -ms-overflow-style: none;
  position: relative; 
  width: 60px; 
  text-align: center; 
  cursor: ns-resize;
  touch-action: pan-y;
  user-select: none; 
}
.time-col::-webkit-scrollbar { display: none; }
.time-spacer { height: 50px; } 

.time-num { 
  height: 50px; 
  width: 100%;
  border: none;
  background: transparent;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 0;
  font-size: 16px; 
  color: #9ca3af; 
  font-family: inherit;
  scroll-snap-align: center; 
  scroll-snap-stop: always;
  transition: all 0.2s ease; 
  user-select: none; 
  -webkit-tap-highlight-color: transparent;
}
.time-num.active { font-size: 22px; color: #1f2937; font-weight: 800; }
.time-colon { font-size: 22px; font-weight: 800; color: #1f2937; padding-bottom: 4px; }
.selected-time { font-weight: 700; color: #52BC53; margin-left: 4px; }
.picker-popup-footer { display: flex; margin-top: 14px; }
.picker-popup-done-btn { width: 100%; height: 46px; border: none; border-radius: 12px; background: #00b840; color: #ffffff; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s ease; }
.picker-popup-done-btn:hover { background: #00a239; }

.date-footer { padding: 16px 24px 24px; display: flex; gap: 12px; border-top: 1px solid #f0f0f0; background: #ffffff; margin-top: auto; }
.date-back-btn { width: 64px; height: 56px; background: #f4f6f8; color: var(--home-text-body); border: none; border-radius: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.date-back-btn:hover { background: #e9edf1; }
.date-confirm-btn { flex: 1; height: 56px; background: #00b840; color: #fff; border: none; border-radius: 16px; font-size: 18px; font-weight: 800; cursor: pointer; transition: background 0.2s ease; }
.date-confirm-btn:hover { background: #00a239; }

/* ==========================================
   КАТЕГОРИИ ДОСТАВКИ
========================================== */
.delivery-categories {
  max-width: 1300px;
  margin: 64px auto 20px;
  padding: 0 5%;
}

.delivery-categories-shell {
  padding: 48px 48px 44px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
}

.delivery-categories-shell h2 {
  margin: 0;
  max-width: 700px;
  color: var(--home-text-strong);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.delivery-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.delivery-category-card {
  --delivery-card-surface: #f6f6f6;
  --delivery-card-border: #ececec;
  --delivery-card-kicker: #111111;
  --delivery-card-copy-fade: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 35%, rgba(255, 255, 255, 0) 72%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.delivery-category-card--cargo {
  --delivery-card-surface: #f7f2eb;
  --delivery-card-kicker: #4b4b4b;
}

.delivery-category-card--express {
  --delivery-card-surface: #f3f5fb;
  --delivery-card-kicker: #346dff;
}

.delivery-category-card--moving {
  --delivery-card-surface: #f4efea;
  --delivery-card-kicker: #202020;
  --delivery-card-copy-fade: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 33%, rgba(255, 255, 255, 0.08) 72%);
}

.delivery-category-card-top {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  background: var(--delivery-card-surface);
  border: 1px solid var(--delivery-card-border);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.delivery-category-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.06) 26%, rgba(255, 255, 255, 0) 60%),
    var(--delivery-card-copy-fade);
  z-index: 1;
}

.delivery-category-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: min(280px, 58%);
  min-height: 0;
}

.delivery-category-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.05);
  color: var(--delivery-card-kicker);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.delivery-category-card-top h3 {
  margin: 0;
  max-width: 7ch;
  color: var(--home-text-strong);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.delivery-category-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.delivery-category-image {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: block;
  width: 56%;
  height: 42%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
  filter: none;
}

.delivery-category-image--cargo {
  right: 2px;
  bottom: 8px;
  width: 52%;
  height: 42%;
}

.delivery-category-image--express {
  right: -10px;
  bottom: 8px;
  width: 58%;
  height: 44%;
}

.delivery-category-image--moving {
  right: 0;
  bottom: 8px;
  width: 60%;
  height: 42%;
}

.delivery-category-card > p {
  margin: 0;
  max-width: 18ch;
  color: var(--home-text-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.delivery-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.delivery-category-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  color: #5f6776;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.delivery-category-card:hover .delivery-category-card-top {
  transform: translateY(-3px);
  border-color: #d8d8d8;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.delivery-category-card:hover .delivery-category-tag {
  color: #111111;
  border-color: #d8d8d8;
}

/* ==========================================
   СТРАНИЦА УСЛУГ
========================================== */
.services-page-main {
  padding: 36px 0 0;
}

.services-page-hero {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.services-page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: end;
  padding: 44px 48px;
  border: 1px solid #e5e7eb;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 184, 64, 0.14) 0%, rgba(0, 184, 64, 0) 28%),
    linear-gradient(135deg, #f7faf7 0%, #ffffff 58%, #f5f7fb 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.06);
}

.services-page-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.services-page-copy h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--home-text-strong);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.services-page-copy p {
  margin: 0;
  max-width: 34ch;
  color: var(--home-text-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.services-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.services-page-primary-link,
.services-page-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.services-page-primary-link {
  background: linear-gradient(135deg, #00b840 0%, #008a30 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(0, 184, 64, 0.22);
}

.services-page-secondary-link {
  border: 1px solid #d9dee7;
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-text-strong);
}

.services-page-primary-link:hover,
.services-page-secondary-link:hover {
  transform: translateY(-1px);
}

.services-page-secondary-link:hover {
  border-color: rgba(0, 184, 64, 0.26);
  background: #f8fbf8;
}

.services-page-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.services-page-summary-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 112px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.94);
}

.services-page-summary-card strong {
  color: var(--home-text-strong);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.services-page-summary-card span {
  color: var(--home-text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

/* ==========================================
   СТРАНИЦА КУРЬЕРСКИХ ГРУЗОПЕРЕВОЗОК
========================================== */
body.home-page.courier-cargo-page {
  background: #ffffff;
}

.courier-cargo-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 36px 5% 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-breadcrumbs,
.courier-cargo-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a2a9b5;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.page-breadcrumbs a,
.courier-cargo-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus-visible,
.courier-cargo-breadcrumbs a:hover,
.courier-cargo-breadcrumbs a:focus-visible {
  color: #6b7280;
  outline: none;
}

.page-breadcrumbs--hero,
.courier-cargo-breadcrumbs--hero {
  display: inline-flex;
  flex-wrap: wrap;
  width: auto;
  max-width: 100%;
  margin-bottom: 2px;
}

.page-breadcrumbs-current,
.courier-cargo-eyebrow,
.services-page-eyebrow,
.loaders-hero-v2-eyebrow,
.business-page-eyebrow,
.business-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  background: #f7f7f7;
  color: #4b5563;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.business-placeholder__content .page-breadcrumbs--hero,
.insurance-placeholder__content .page-breadcrumbs--hero {
  align-self: center;
  justify-content: center;
}

.courier-cargo-hero-shell {
  border: 1px solid #dcdcdc;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(12px, 1.6vw, 24px);
  padding: 28px clamp(22px, 2.4vw, 30px) 24px clamp(34px, 4vw, 54px);
  overflow: hidden;
  align-items: center;
}

.courier-cargo-flow-card {
  border: 1px solid #e5e7eb;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 184, 64, 0.1) 0%, rgba(0, 184, 64, 0) 26%),
    linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.06);
}

.courier-cargo-hero-copy {
  width: min(100%, 760px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  max-width: none;
}

.courier-cargo-breadcrumbs--hero a:hover,
.courier-cargo-breadcrumbs--hero a:focus-visible {
  color: #111111;
}

.courier-cargo-hero-copy h1 {
  margin: 0;
  max-width: 11.8ch;
  color: #111111;
  font-size: clamp(44px, 4.35vw, 64px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.courier-cargo-hero-copy > p {
  margin: 0;
  max-width: 34rem;
  color: #4b5563;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.courier-cargo-hero-tags,
.courier-cargo-scenario-tags,
.courier-cargo-faq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.courier-cargo-hero-tags span,
.courier-cargo-scenario-tags span,
.courier-cargo-faq-pills .home-faq-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f4f6f8;
  border: 1px solid #e5e7eb;
  color: var(--home-text-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

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

.courier-cargo-primary-link,
.courier-cargo-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.courier-cargo-primary-link {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.courier-cargo-secondary-link {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111111;
}

.courier-cargo-primary-link:hover,
.courier-cargo-primary-link:focus-visible {
  background: #222222;
  color: #ffffff;
}

.courier-cargo-secondary-link:hover,
.courier-cargo-secondary-link:focus-visible {
  background: #f3f4f6;
  border-color: #111111;
  color: #111111;
}

.courier-cargo-primary-link:hover,
.courier-cargo-primary-link:focus-visible,
.courier-cargo-secondary-link:hover,
.courier-cargo-secondary-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  outline: none;
}

.courier-cargo-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.courier-cargo-highlight-card {
  min-height: 0;
  padding: 16px 17px;
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.94);
  background: rgba(255, 255, 255, 0.9);
}

.courier-cargo-highlight-card strong,
.courier-cargo-detail-card strong,
.courier-cargo-scenario-card h3,
.courier-cargo-section-heading h2,
.courier-cargo-confidence-item strong,
.courier-cargo-steps strong {
  color: var(--home-text-strong);
}

.courier-cargo-highlight-card strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.courier-cargo-highlight-card p {
  margin: 8px 0 0;
  color: var(--home-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.courier-cargo-hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  margin-right: 0;
  pointer-events: none;
  position: relative;
  left: 2px;
}

.courier-cargo-hero-visual img {
  display: block;
  width: min(100%, 760px);
  max-width: 100%;
  height: auto;
  margin: 0;
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: -4px;
  left: -164px;
}

.courier-cargo-hero-visual img.courier-cargo-hero-visual-truckflex {
  width: min(100%, 760px);
  max-width: 100%;
  margin: 0 0 -10px 0;
  transform: translateX(4%);
  transform-origin: center right;
}

.courier-cargo-hero-visual img.courier-cargo-hero-visual-truckyfiy {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 650px);
  max-width: 650px;
  margin: 0 0 -8px 0;
  transform: none;
}

@media (min-width: 1440px) {
  .courier-cargo-hero-shell .courier-cargo-hero-visual img{
    width: 760px;
    margin-left: 0;
    margin-top: -19px;
  }

  .courier-cargo-hero-shell .courier-cargo-hero-visual img.courier-cargo-hero-visual-truckyfiy {
    width: 650px;
    margin-top: 0;
  }
}

.courier-cargo-hero-visual img.courier-cargo-hero-visual-photo {
  width: min(100%, 760px);
  max-width: 760px;
  height: clamp(290px, 31vw, 402px);
  margin: 0;
  border-radius: 28px;
  object-fit: cover;
  object-position: 38% center;
  transform: translateX(-44px);
  transform-origin: center center;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}
body.express-delivery-page .courier-cargo-main {
  padding-top: 36px;
  gap: 20px;
}

body.express-delivery-page .courier-cargo-hero-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(10px, 1.2vw, 18px);
  padding: 22px clamp(18px, 2vw, 24px) 18px clamp(28px, 3vw, 42px);
}

body.express-delivery-page .courier-cargo-hero-copy {
  width: min(100%, 740px);
  gap: 12px;
}

body.express-delivery-page .courier-cargo-hero-copy h1 {
  max-width: 13.8ch;
}

body.express-delivery-page .courier-cargo-hero-copy > p {
  max-width: 31rem;
}

body.express-delivery-page .courier-cargo-hero-actions {
  gap: 10px;
}

body.express-delivery-page .courier-cargo-primary-link,
body.express-delivery-page .courier-cargo-secondary-link {
  min-height: 52px;
  padding: 0 24px;
}

body.express-delivery-page .courier-cargo-hero-highlights {
  gap: 10px;
  margin-top: 2px;
}

body.express-delivery-page .courier-cargo-highlight-card {
  padding: 14px 15px;
  border-radius: 18px;
}

body.express-delivery-page .courier-cargo-highlight-card strong {
  font-size: 16px;
}

body.express-delivery-page .courier-cargo-highlight-card p {
  margin-top: 6px;
  font-size: 12px;
}

body.express-delivery-page .courier-cargo-hero-visual {
  align-items: flex-start;
  margin-right: clamp(-74px, -4.4vw, -34px);
}

body.express-delivery-page .courier-cargo-hero-visual img {
  width: min(100%, 760px);
  max-width: 760px;
  margin: -10px 0 -10px 0;
  transform: translateX(-48px);
}

body.express-delivery-page .courier-cargo-vehicles-story {
  align-items: center;
  justify-self: center;
  text-align: center;
  max-width: 430px;
}

body.express-delivery-page .courier-cargo-vehicles-story h2 {
  max-width: 8.6ch;
  font-size: clamp(34px, 3.55vw, 54px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

body.express-delivery-page .courier-cargo-vehicles-story #expressVehiclesTitle {
  transform: none;
}

body.express-delivery-page .courier-cargo-vehicles-showcase {
  grid-template-columns: minmax(340px, 380px) minmax(260px, 1fr) minmax(340px, 380px);
  gap: 28px;
  align-items: stretch;
}

body.express-delivery-page .courier-cargo-vehicle-browser,
body.express-delivery-page .courier-cargo-vehicles-status {
  width: 100%;
  max-width: 380px;
}

body.express-delivery-page .courier-cargo-vehicle-browser {
  justify-self: start;
}

body.express-delivery-page .courier-cargo-vehicles-status {
  justify-self: end;
}

body.express-delivery-page .courier-cargo-vehicles-status-card {
  width: 100%;
  min-height: 100%;
}

body.express-delivery-page .courier-cargo-trust-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

body.express-delivery-page .courier-cargo-trust-header {
  max-width: none;
}

body.express-delivery-page .courier-cargo-trust-kicker {
  min-height: 32px;
  padding: 0 14px;
  border-width: 1px;
  border-color: rgba(17, 17, 17, 0.12);
  background: linear-gradient(180deg, #f7f7f8 0%, #eff1f3 100%);
  color: #3f4754;
  font-size: 11px;
  letter-spacing: 0.11em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

body.express-delivery-page .courier-cargo-trust-bento {
  width: 100%;
}

body.express-delivery-page .trust-card {
  background: #161616;
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: 20px;
  border-radius: 22px;
}

body.express-delivery-page .trust-card:hover {
  background: #1b1b1b;
  border-color: rgba(17, 24, 39, 0.12);
}

body.express-delivery-page .trust-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 13px;
  font-size: 20px;
}

body.express-delivery-page .trust-card > strong,
body.express-delivery-page .trust-card .trust-card-copy > strong,
body.express-delivery-page .trust-support-copy > strong {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

body.express-delivery-page .trust-card > p,
body.express-delivery-page .trust-card .trust-card-copy > p,
body.express-delivery-page .trust-support-copy > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.42;
}

body.express-delivery-page .trust-card--tracking {
  background: #1a1a1a;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 390px);
  gap: 24px;
  align-items: stretch;
}

body.express-delivery-page .trust-card--tracking .trust-card-copy {
  flex: 0 1 auto;
  min-width: 0;
  max-width: none;
}

body.express-delivery-page .trust-card--tracking .trust-card-copy > strong {
  max-width: 20ch;
  font-size: 22px;
  line-height: 1.04;
}

body.express-delivery-page .trust-card--verified > strong,
body.express-delivery-page .trust-card--price > strong,
body.express-delivery-page .trust-card--photo > strong,
body.express-delivery-page .trust-support-copy > strong {
  font-size: 20px;
  line-height: 1.08;
}

body.express-delivery-page .trust-card--tracking .trust-card-copy > p {
  max-width: 44ch;
}

body.express-delivery-page .trust-card--tracking .trust-price-rows {
  width: min(100%, 390px);
  margin-top: 0;
  justify-self: end;
  align-self: center;
}

body.express-delivery-page .trust-card--price {
  background: linear-gradient(180deg, rgba(8, 33, 16, 0.98) 0%, rgba(11, 28, 16, 0.98) 100%);
  border-color: rgba(0, 184, 64, 0.22);
}

body.express-delivery-page .trust-card--price:hover {
  background: linear-gradient(180deg, rgba(10, 39, 19, 0.98) 0%, rgba(13, 32, 18, 0.98) 100%);
  border-color: rgba(0, 184, 64, 0.3);
}

body.express-delivery-page .trust-price-row {
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
}

body.express-delivery-page .trust-price-row .material-icons-round {
  font-size: 15px;
}

body.express-delivery-page .trust-price-row-copy strong {
  font-size: 15px;
  line-height: 1.2;
}

body.express-delivery-page .trust-price-row-copy span {
  font-size: 13px;
  line-height: 1.32;
}

body.express-delivery-page .trust-doc-list {
  margin-top: 12px;
  gap: 10px;
}

body.express-delivery-page .trust-doc-list li {
  font-size: 14px;
}

body.express-delivery-page .trust-photo-stages {
  margin-top: 14px;
  padding-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

body.express-delivery-page .trust-photo-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.express-delivery-page .trust-photo-stage-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.34);
}

body.express-delivery-page .trust-card--photo {
  background:
    radial-gradient(circle at top right, rgba(120, 146, 175, 0.08) 0%, rgba(120, 146, 175, 0) 34%),
    linear-gradient(180deg, #202327 0%, #181a1d 100%);
  border-color: rgba(148, 163, 184, 0.14);
}

body.express-delivery-page .trust-card--photo:hover {
  background:
    radial-gradient(circle at top right, rgba(120, 146, 175, 0.11) 0%, rgba(120, 146, 175, 0) 36%),
    linear-gradient(180deg, #24282d 0%, #1b1e22 100%);
  border-color: rgba(148, 163, 184, 0.22);
}

body.express-delivery-page .trust-card--photo .trust-card-icon {
  background: rgba(148, 163, 184, 0.12);
  color: rgba(241, 245, 249, 0.9);
}

body.express-delivery-page .trust-card--photo .trust-photo-stages {
  border-top-color: rgba(148, 163, 184, 0.16);
}

body.express-delivery-page .trust-card--photo .trust-photo-stage {
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(148, 163, 184, 0.08);
  color: rgba(241, 245, 249, 0.82);
}

body.express-delivery-page .trust-card--photo .trust-photo-stage-arrow {
  color: rgba(148, 163, 184, 0.42);
}

body.express-delivery-page .trust-card--support {
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(126, 142, 62, 0.16) 0%, rgba(126, 142, 62, 0) 38%),
    linear-gradient(180deg, #202417 0%, #171a12 100%);
  border-color: rgba(138, 154, 72, 0.18);
}

body.express-delivery-page .trust-card--support:hover {
  background:
    radial-gradient(circle at top right, rgba(126, 142, 62, 0.2) 0%, rgba(126, 142, 62, 0) 40%),
    linear-gradient(180deg, #252a1b 0%, #1a1e14 100%);
  border-color: rgba(138, 154, 72, 0.26);
}

body.express-delivery-page .trust-support-inner {
  gap: 10px;
}

body.express-delivery-page .trust-card-icon--support {
  background: rgba(138, 154, 72, 0.14);
  color: rgba(248, 250, 240, 0.92);
  margin-bottom: 0;
}

body.express-delivery-page .trust-support-link {
  width: 100%;
  justify-content: space-between;
  align-self: stretch;
  margin-top: auto;
  min-height: 52px;
  padding: 0 18px 0 20px;
  border-radius: 18px;
  border-color: rgba(192, 204, 126, 0.16);
  background: linear-gradient(180deg, rgba(168, 182, 96, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(18, 22, 10, 0.22);
}

body.express-delivery-page .trust-support-link:hover {
  background: linear-gradient(180deg, rgba(168, 182, 96, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(192, 204, 126, 0.24);
}

body.express-delivery-page .trust-support-link-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.express-delivery-page .trust-support-link-bolt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(192, 204, 126, 0.18);
  font-size: 16px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.express-delivery-page .trust-support-link .material-icons-round {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

body.express-delivery-page .express-delivery-cta-shell {
  width: 100%;
  text-align: center;
  gap: 12px;
  padding: 26px 36px;
  border-radius: 36px;
}

body.express-delivery-page #expressCtaTitle {
  margin: 0 auto;
  max-width: none;
  color: #111111;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

body.express-delivery-page .express-delivery-cta-copy {
  margin: 0 auto;
  max-width: none;
  color: #667085;
  font-size: 15px;
  line-height: 1.35;
  white-space: nowrap;
}

body.express-delivery-page .express-delivery-cta-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

body.express-delivery-page .express-delivery-cta-actions .courier-cargo-primary-link,
body.express-delivery-page .express-delivery-cta-actions .courier-cargo-secondary-link {
  min-height: 52px;
  padding: 0 24px;
}

.courier-cargo-visual-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 8px 0 24px;
  border-top: none;
}

.courier-cargo-detail-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(98px, 118px) 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.courier-cargo-detail-card--wide {
  grid-column: auto;
}

.courier-cargo-detail-card--green {
  background: transparent;
  border-color: transparent;
}

.courier-cargo-detail-card + .courier-cargo-detail-card {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.courier-cargo-detail-label {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courier-cargo-detail-card strong {
  display: block;
  margin-top: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.courier-cargo-section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.courier-cargo-section-heading--compact {
  margin-bottom: 0;
}

.courier-cargo-section-heading h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.courier-cargo-section-heading p,
.courier-cargo-faq-sidebar p {
  margin: 0;
  max-width: 38ch;
  color: var(--home-text-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.courier-cargo-how-shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid #e3e3e3;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.courier-cargo-how-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1180px;
}

.courier-cargo-how-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  background: #f7f7f7;
  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courier-cargo-how-heading h2 {
  margin: 0;
  max-width: none;
  color: #111111;
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.courier-cargo-how-heading p {
  margin: 0;
  max-width: none;
  color: #5b6472;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.courier-cargo-how-flow {
  display: grid;
  grid-template-columns:
    minmax(178px, 1fr) 24px
    minmax(178px, 1fr) 24px
    minmax(178px, 1fr) 24px
    minmax(178px, 1fr) 24px
    minmax(178px, 1fr);
  gap: 6px;
  align-items: center;
}

.courier-cargo-how-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-height: 152px;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid #ececec;
  background: #fafaf9;
}

.courier-cargo-how-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b5bdc8;
}

.courier-cargo-how-arrow .material-icons-round {
  font-size: 16px;
}

.courier-cargo-how-media {
  position: relative;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #ececec;
  overflow: hidden;
}

.courier-cargo-how-media--route,
.courier-cargo-how-media--status,
.courier-cargo-how-media--confirm,
.courier-cargo-how-media--pickup,
.courier-cargo-how-media--done {
  background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 100%);
}

.courier-cargo-how-media--truck,
.courier-cargo-how-media--cargo,
.courier-cargo-how-media--search {
  background: linear-gradient(180deg, #f7f9f7 0%, #ffffff 100%);
}

.courier-cargo-how-placeholder {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #6b7280;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.courier-cargo-how-route-line {
  position: relative;
  height: 2px;
  margin: 0 18px;
  background: #d8dde4;
}

.courier-cargo-how-route-line::before,
.courier-cargo-how-route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.courier-cargo-how-route-line::before {
  left: -2px;
  background: #111111;
}

.courier-cargo-how-route-line::after {
  right: -2px;
  background: #00a63e;
}

.courier-cargo-how-route-points {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #5b6472;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.courier-cargo-how-cargo-stack {
  display: grid;
  gap: 8px;
}

.courier-cargo-how-cargo-stack span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ececec;
}

.courier-cargo-how-cargo-stack span:nth-child(1) {
  width: 76%;
}

.courier-cargo-how-cargo-stack span:nth-child(2) {
  width: 92%;
}

.courier-cargo-how-cargo-stack span:nth-child(3) {
  width: 64%;
}

.courier-cargo-how-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.courier-cargo-how-search-icon .material-icons-round,
.courier-cargo-how-media--truck .material-icons-round {
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  font-size: 30px;
}

.courier-cargo-how-confirm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e1eee4;
  background: #f5f8f5;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.courier-cargo-how-confirm-chip .material-icons-round {
  color: #00a63e;
  font-size: 18px;
}

.courier-cargo-how-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.courier-cargo-how-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #ececec;
  background: #ffffff;
  color: #5b6472;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.courier-cargo-how-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f5f8f5;
  border: 1px solid #e1eee4;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.courier-cargo-how-status-pill .material-icons-round {
  color: #00a63e;
  font-size: 18px;
}

.courier-cargo-how-progress {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}

.courier-cargo-how-progress span {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: #d9dde3;
}

.courier-cargo-how-progress span.is-active {
  background: #111111;
}

.courier-cargo-how-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 38px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.courier-cargo-how-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.courier-cargo-how-copy h3 {
  margin: 0;
  color: #111111;
  max-width: 10.5ch;
  font-size: clamp(18px, 1.65vw, 20px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.courier-cargo-how-copy p {
  margin: 0;
  max-width: 18ch;
  color: #5b6472;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.courier-cargo-advantages {
  width: 100%;
}

.courier-cargo-advantages-shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.courier-cargo-advantages-heading {
  margin: 0 auto;
  max-width: 760px;
  color: #0f0f0f;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
}

.courier-cargo-advantages-panel {
  overflow: hidden;
  border: 1px solid #ededed;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.courier-cargo-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #efefef;
}

.courier-cargo-advantages-grid--row2 {
  border-bottom: none;
}

.courier-cargo-advantages-card {
  display: grid;
  grid-template-rows: 40px 1fr auto;
  gap: 1rem;
  padding: 1.45rem 1.5rem;
  border-right: 1px solid #efefef;
  transition: background 0.15s;
}

.courier-cargo-advantages-card:last-child {
  border-right: none;
}

.courier-cargo-advantages-card:hover {
  background: #fafafa;
}

.courier-cargo-advantages-card--instant {
  grid-column: span 2;
}

.courier-cargo-advantages-icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.courier-cargo-advantages-icon-wrap svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #0f0f0f;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.courier-cargo-advantages-card-title {
  margin-bottom: 5px;
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.courier-cargo-advantages-card-desc {
  color: #5b6472;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.courier-cargo-advantages-card-badge-zone {
  min-height: 28px;
}

.courier-cargo-advantages-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: #0f0f0f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.courier-cargo-advantages-badge svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.courier-cargo-advantages-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.8rem;
  border-top: 1px solid #2f2f2f;
  background: #1a1a1a;
}

.courier-cargo-advantages-strip-text {
  color: #888888;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.courier-cargo-advantages-strip-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.courier-cargo-advantages-strip-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.courier-cargo-advantages-strip-cta:hover svg {
  transform: translateX(3px);
}

.courier-cargo-trust {
  width: 100%;
}

.courier-cargo-trust-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid #1e1e1e;
  border-radius: 30px;
  background: #111111;
}

.courier-cargo-trust-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 220px;
}

.courier-cargo-trust-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.courier-cargo-trust-header h2 {
  margin: 0;
  color: #ffffff;
  max-width: 8ch;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.courier-cargo-trust-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 0.82fr;
  grid-template-rows: auto auto;
  gap: 8px;
  min-width: 0;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.trust-card-label {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.trust-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.trust-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  flex-shrink: 0;
}

.trust-card--tracking {
  grid-column: 1 / 3;
  grid-row: 1;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.trust-card--tracking .trust-card-copy {
  display: flex;
  flex: 0 1 220px;
  flex-direction: column;
  gap: 0;
}

.trust-card--tracking .trust-card-copy strong {
  max-width: 12ch;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1;
}

.trust-card--tracking .trust-card-copy > p {
  margin: 0;
  max-width: 23ch;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.3;
}

.trust-order-mock {
  display: flex;
  flex: 1 1 280px;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-order-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.trust-order-mock-id {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust-order-mock-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b840;
  box-shadow: 0 0 0 3px rgba(0, 184, 64, 0.18);
  animation: trust-pulse 2s ease-in-out infinite;
}

@keyframes trust-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(0, 184, 64, 0.18);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 184, 64, 0.06);
  }
}

.trust-order-mock-eta {
  color: #00b840;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-order-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-order-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 7px;
  align-items: center;
}

.trust-order-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  flex-shrink: 0;
}

.trust-order-step-icon .material-icons-round {
  font-size: 13px;
}

.trust-order-step--done .trust-order-step-icon {
  background: rgba(0, 184, 64, 0.15);
  color: #00b840;
}

.trust-order-step--active .trust-order-step-icon {
  background: rgba(0, 184, 64, 0.2);
  color: #4ade80;
  box-shadow: 0 0 0 3px rgba(0, 184, 64, 0.1);
}

.trust-order-step--pending .trust-order-step-icon {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.25);
}

.trust-order-step-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-order-step-body strong {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust-order-step--done .trust-order-step-body strong,
.trust-order-step--active .trust-order-step-body strong {
  color: #ffffff;
}

.trust-order-step--pending .trust-order-step-body strong {
  color: rgba(255, 255, 255, 0.3);
}

.trust-order-step-body span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 600;
}

.trust-order-step-now {
  color: #4ade80 !important;
  font-size: 9px !important;
  font-weight: 700 !important;
}

.trust-order-step-connector {
  width: 2px;
  height: 8px;
  margin-left: 11px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-order-step-connector--done {
  background: rgba(0, 184, 64, 0.4);
}

.trust-order-step-connector--active {
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.88) 0%, rgba(0, 184, 64, 0.5) 58%, rgba(0, 184, 64, 0.12) 100%);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.16);
}

.trust-order-mock-driver {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-order-mock-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.trust-order-mock-driver-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.trust-order-mock-driver-info strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 700;
}

.trust-order-mock-driver-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}

.trust-order-mock-driver-vehicle {
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.trust-order-mock-driver-plate {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-order-mock-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0, 184, 64, 0.12);
  border: 1px solid rgba(0, 184, 64, 0.2);
  color: #4ade80;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.trust-order-mock-verified .material-icons-round {
  font-size: 10px;
}

.trust-card--price {
  grid-column: 1;
  grid-row: 2;
  justify-content: space-between;
  gap: 10px;
  border-color: rgba(0, 184, 64, 0.15);
  background: rgba(0, 184, 64, 0.06);
}

.trust-card--price:hover {
  background: rgba(0, 184, 64, 0.1);
  border-color: rgba(0, 184, 64, 0.25);
}

.trust-card--price .trust-card-label {
  color: rgba(0, 184, 64, 0.6);
}

.trust-card--price > strong {
  max-width: 13ch;
  font-size: 14px;
  line-height: 1.1;
}

.trust-price-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.trust-price-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 10px;
}

.trust-price-row--fixed {
  background: rgba(0, 184, 64, 0.1);
  border: 1px solid rgba(0, 184, 64, 0.18);
}

.trust-price-row--overtime {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-price-row .material-icons-round {
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-price-row--fixed .material-icons-round {
  color: #4ade80;
}

.trust-price-row--overtime .material-icons-round {
  color: rgba(255, 255, 255, 0.3);
}

.trust-price-row-copy strong {
  display: block;
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-price-row-copy span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.24;
}

.trust-card--verified {
  grid-column: 3;
  grid-row: 1;
}

.trust-card--verified strong {
  font-size: 13px;
}

.trust-doc-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-doc-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.trust-doc-list li .material-icons-round {
  font-size: 13px;
  color: #00b840;
  flex-shrink: 0;
}

.trust-card--photo {
  grid-column: 2;
  grid-row: 2;
}

.trust-card--photo strong {
  font-size: 13px;
}

.trust-photo-stages {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-photo-stages span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trust-photo-stages .material-icons-round {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.trust-card--support {
  grid-column: 3;
  grid-row: 2;
  justify-content: space-between;
  gap: 10px;
}

.trust-support-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-card-icon--support {
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 8px;
}

.trust-support-copy strong {
  font-size: 13px;
  margin-bottom: 6px;
}

.trust-support-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
}

.trust-support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.trust-support-link:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.trust-support-link .material-icons-round {
  font-size: 12px;
}

.courier-cargo-showcase {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.courier-cargo-showcase-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.courier-cargo-showcase-media img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
}

.courier-cargo-showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.courier-cargo-showcase-kicker {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.courier-cargo-showcase-copy h2 {
  margin: 0;
  max-width: none;
  color: #111111;
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.courier-cargo-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
}

.courier-cargo-showcase-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 0;
  border-top: none;
}

.courier-cargo-showcase-item .material-icons-round {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #111111;
  font-size: 22px;
}

.courier-cargo-showcase-item strong {
  display: block;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.courier-cargo-showcase-item p {
  margin: 6px 0 0;
  max-width: 36ch;
  color: #5b6471;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.courier-cargo-vehicles-showcase {
  grid-template-columns: minmax(320px, 380px) minmax(280px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  justify-content: start;
  overflow: hidden;
}

.courier-cargo-vehicle-browser {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "stage"
    "drawer";
  row-gap: 0;
  width: min(100%, 400px);
  max-width: 380px;
  padding: 18px 18px 18px;
  border: 1px solid #e7eaec;
  border-radius: 28px;
  background: #ffffff;
  justify-self: start;
  align-self: start;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.courier-cargo-vehicle-browser-stage {
  grid-area: stage;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  grid-template-areas:
    "prev media next"
    "copy copy copy";
  gap: 10px 10px;
  align-items: center;
}

.courier-cargo-vehicle-browser-arrow {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.courier-cargo-vehicle-browser-arrow:hover {
  transform: translateY(-1px);
  color: #111111;
  opacity: 0.72;
}

.courier-cargo-vehicle-browser-arrow:focus-visible {
  outline: none;
  color: #111111;
  opacity: 0.72;
}

.courier-cargo-vehicle-browser-arrow .material-icons-round {
  font-size: 30px;
}

.courier-cargo-vehicle-browser-arrow--prev {
  grid-area: prev;
}

.courier-cargo-vehicle-browser-arrow--next {
  grid-area: next;
}

.courier-cargo-vehicle-browser-media-card {
  grid-area: media;
  min-height: 190px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.courier-cargo-vehicle-browser-media-card h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(24px, 1.8vw, 31px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-align: center;
  text-wrap: balance;
}

.courier-cargo-vehicle-browser-media-card p {
  margin: -4px 0 4px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.courier-cargo-vehicle-browser-media {
  width: 100%;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.courier-cargo-vehicle-browser-media img {
  display: block;
  width: 100%;
  max-width: 270px;
  height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.12));
}

.courier-cargo-vehicle-browser-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: center;
  min-width: 0;
}

.courier-cargo-vehicle-browser-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px 12px;
  width: 100%;
  max-width: 280px;
}

.courier-cargo-vehicle-browser-metric {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
}

.courier-cargo-vehicle-browser-metric .material-icons-round {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef8ec;
  color: #59b646;
  font-size: 18px;
  flex-shrink: 0;
}

.courier-cargo-vehicle-browser-metric-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.courier-cargo-vehicle-browser-metric-label {
  color: #7a8491;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.courier-cargo-vehicle-browser-metric strong {
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.courier-cargo-vehicle-browser-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.courier-cargo-vehicle-browser-price span {
  color: #66707d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.courier-cargo-vehicle-browser-price strong {
  color: #111111;
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.courier-cargo-vehicle-browser-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d9dfe3;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.courier-cargo-vehicle-browser-toggle:hover {
  transform: translateY(-1px);
  border-color: #cbd4d9;
  background: #fdfdfd;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.courier-cargo-vehicle-browser-toggle .material-icons-round {
  font-size: 18px;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.courier-cargo-vehicle-browser-toggle[aria-expanded="true"] .material-icons-round {
  transform: rotate(90deg);
}

.courier-cargo-vehicle-browser-drawer {
  grid-area: drawer;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-18px);
  background: #ffffff;
  border-top: 0 solid transparent;
  transition:
    max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    padding-top 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-top 0.24s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.courier-cargo-vehicle-browser-drawer.is-open {
  max-height: 620px;
  opacity: 1;
  transform: translateX(0);
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #eceff1;
}

.courier-cargo-vehicle-browser-detail-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid #f1f3f4;
}

.courier-cargo-vehicle-browser-detail-row:first-child {
  border-top: none;
}

.courier-cargo-vehicle-browser-detail-row span {
  color: #66707d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.courier-cargo-vehicle-browser-detail-row strong {
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.courier-cargo-vehicles-story {
  align-items: flex-start;
  justify-content: center;
  min-height: auto;
  padding-left: 0;
  border-left: none;
  justify-self: start;
  min-width: 0;
  width: 100%;
  max-width: min(100%, 440px);
  container-type: inline-size;
  transition:
    opacity 0.24s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.courier-cargo-vehicles-story h2 {
  max-width: 100%;
  font-size: clamp(38px, 3.8vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: normal;
  white-space: normal;
}

.courier-cargo-vehicles-story #courierCargoVehiclesTitle {
  transform: none;
}

.courier-cargo-vehicles-title-line {
  display: block;
  white-space: nowrap;
}

.courier-cargo-vehicles-story .courier-cargo-vehicles-title-accent {
  color: #00b840;
}

@media (min-width: 768px) {
  .courier-cargo-vehicles-story #courierCargoVehiclesTitle {
    font-size: clamp(30px, 4vw, 63px);
  }
}

@supports (font-size: 1cqi) {
  @media (min-width: 768px) {
    .courier-cargo-vehicles-story #courierCargoVehiclesTitle {
      font-size: clamp(30px, 18cqi, 63px);
    }
  }
}

@media (min-width: 1440px) {
  /* Allow the first column to grow smoothly with the card */
  .courier-cargo-vehicles-showcase {
    grid-template-columns: auto minmax(280px, 320px) minmax(0, 1fr);
  }

  .courier-cargo-vehicle-browser {
    max-width: 380px;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s ease,
      max-width 0.44s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* --- Drawer-open state --- */
  .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicle-browser {
    grid-template-columns: minmax(300px, 380px) minmax(240px, 1fr);
    grid-template-areas: "stage drawer";
    column-gap: 24px;
    row-gap: 0;
    max-width: 760px;
    width: 100%;
  }

  .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicle-browser-stage {
    align-content: start;
  }

  .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicle-browser-drawer {
    align-content: start;
    max-height: none;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 24px;
    border-top: none;
    border-left: 0 solid transparent;
  }

  .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicle-browser-drawer.is-open {
    opacity: 1;
    transform: translateX(0);
    border-left: 1px solid #eceff1;
  }

  .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicles-story {
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
    overflow: hidden;
    transition:
      opacity 0.28s ease,
      transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.express-delivery-page .courier-cargo-vehicles-showcase.is-drawer-open {
    grid-template-columns: minmax(680px, 760px) minmax(300px, 340px);
    gap: 28px;
    align-items: start;
    justify-content: start;
  }

  body.express-delivery-page .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicle-browser {
    grid-column: 1;
    grid-row: 1;
  }

  body.express-delivery-page .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicles-story {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    opacity: 0;
    transform: translateX(26px);
    pointer-events: none;
    max-width: 0;
    overflow: hidden;
  }

  body.express-delivery-page .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicles-status {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    width: 100%;
    max-width: 340px;
  }

  body.express-delivery-page .courier-cargo-vehicles-showcase.is-drawer-open .courier-cargo-vehicles-status-card {
    width: 100%;
  }

  body.home-page #truckModal .truck-modal-content {
    width: min(560px, calc(100vw - 32px));
    max-width: min(560px, calc(100vw - 32px));
  }
}

.courier-cargo-vehicles-status {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.courier-cargo-vehicles-status-card {
  width: min(100%, 320px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.courier-cargo-vehicles-status .trust-order-mock-header {
  gap: 12px;
  margin-bottom: 0;
}

.courier-cargo-vehicles-status .trust-order-steps {
  flex: 1;
}

.courier-cargo-vehicles-status .trust-order-mock-id {
  font-size: 14px;
}

.courier-cargo-vehicles-status .trust-order-mock-dot {
  width: 8px;
  height: 8px;
}

.courier-cargo-vehicles-status .trust-order-mock-eta {
  font-size: 14px;
}

.courier-cargo-vehicles-status .trust-order-step {
  grid-template-columns: 38px 1fr;
  gap: 10px;
}

.courier-cargo-vehicles-status .trust-order-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.courier-cargo-vehicles-status .trust-order-step-icon .material-icons-round {
  font-size: 18px;
}

.courier-cargo-vehicles-status .trust-order-step-body strong {
  font-size: 13px;
}

.courier-cargo-vehicles-status .trust-order-step-body span {
  font-size: 12px;
}

.courier-cargo-vehicles-status .trust-order-step-now {
  font-size: 12px !important;
}

.courier-cargo-vehicles-status .trust-order-step-connector {
  width: 3px;
  height: 14px;
  margin-left: 17px;
  border-radius: 999px;
}

.courier-cargo-vehicles-status .trust-order-step-connector--done {
  background: rgba(74, 222, 128, 0.42);
}

.courier-cargo-vehicles-status .trust-order-step-connector--active {
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.98) 0%, rgba(34, 197, 94, 0.62) 54%, rgba(0, 184, 64, 0.14) 100%);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.28);
}

.courier-cargo-vehicles-status .trust-order-mock-driver {
  margin-top: auto;
  gap: 10px;
  padding-top: 12px;
}

.courier-cargo-vehicles-status .trust-order-mock-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 14px;
}

.courier-cargo-vehicles-status .trust-order-mock-driver-info strong {
  font-size: 14px;
}

.courier-cargo-vehicles-status .trust-order-mock-driver-meta {
  gap: 6px 8px;
}

.courier-cargo-vehicles-status .trust-order-mock-driver-vehicle {
  font-size: 12px;
}

.courier-cargo-vehicles-status .trust-order-mock-driver-plate {
  min-height: 22px;
  padding: 0 9px;
  font-size: 11px;
}

.courier-cargo-vehicles-status .trust-order-mock-verified {
  padding: 6px 10px;
  font-size: 11px;
}

.courier-cargo-vehicles-status .trust-order-mock-verified .material-icons-round {
  font-size: 13px;
}

.courier-cargo-scenarios-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 36px 34px;
  border: 1px solid #e7e7e7;
  border-radius: 36px;
  background: #ffffff;
  overflow: hidden;
}

.courier-cargo-scenarios-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0;
  width: 100%;
  padding-bottom: 0;
  border-bottom: none;
  text-align: center;
}

.courier-cargo-scenarios-heading h2 {
  margin: 0;
  max-width: none;
  color: #111111;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
  text-align: center;
}

.courier-cargo-scenarios-slider {
  position: relative;
}

.courier-cargo-scenarios-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  padding-bottom: 0;
  transform: none !important;
  transition: none !important;
  will-change: auto;
  touch-action: pan-x pan-y;
}

.courier-cargo-scenarios-track::-webkit-scrollbar {
  display: none;
}

.courier-cargo-scenario-slide {
  flex: 0 0 clamp(320px, 31vw, 390px);
  min-width: clamp(320px, 31vw, 390px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 320px;
  border: 1px solid #e6ebef;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 184, 64, 0.08) 0%, rgba(0, 184, 64, 0) 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.courier-cargo-scenario-slide:hover {
  transform: translateY(-3px);
  border-color: #dbe3e8;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.09);
}

.courier-cargo-scenario-photo {
  position: relative;
  min-height: 188px;
  background: #f3f5f0;
  overflow: hidden;
}

.courier-cargo-scenario-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.courier-cargo-scenario-slide--text {
  grid-template-columns: minmax(0, 1fr);
  min-height: 320px;
}

.courier-cargo-scenario-slide--text .courier-cargo-scenario-body {
  border-left: none;
}

.courier-cargo-scenario-slide--text .courier-cargo-scenario-body > div {
  max-width: none;
}

.courier-cargo-scenario-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.courier-cargo-scenario-photo--placeholder-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
}

.courier-cargo-scenario-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #b5bbc4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courier-cargo-scenario-placeholder svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.courier-cargo-scenario-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 44px);
  gap: 10px;
}

.courier-cargo-scenario-mosaic span {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1e1e1e;
  position: relative;
}

.courier-cargo-scenario-mosaic span::before,
.courier-cargo-scenario-mosaic span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #555555;
  transform: translateY(-50%);
}

.courier-cargo-scenario-mosaic span::before {
  left: 13px;
  box-shadow: 7px 0 0 #555555;
}

.courier-cargo-scenario-mosaic span::after {
  right: 13px;
}

.courier-cargo-scenario-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(32, 35, 39, 0.76);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.courier-cargo-scenario-tag--inline {
  position: static;
  width: fit-content;
  margin-bottom: 16px;
  background: #f3f5f7;
  color: #152033;
  backdrop-filter: none;
}

.courier-cargo-scenario-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px 22px;
  border-left: none;
  text-align: left;
}

.courier-cargo-scenario-body > div {
  max-width: none;
}

.courier-cargo-scenario-title {
  margin: 0 0 14px;
  color: #152033;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.courier-cargo-scenario-desc {
  margin: 0;
  color: #667281;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: -0.02em;
}

.courier-cargo-scenario-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.courier-cargo-scenario-cta:hover {
  opacity: 0.6;
  transform: translateX(2px);
}

.courier-cargo-scenario-cta svg,
.courier-cargo-scenarios-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.courier-cargo-scenarios-nav {
  position: absolute;
  top: 50%;
  left: -18px;
  right: -18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: none;
  background: transparent;
  transform: translateY(-50%);
  pointer-events: none;
}

.courier-cargo-scenarios-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid #e3e9ee;
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: background-color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
}

.courier-cargo-scenarios-btn:hover:not(:disabled) {
  background: #ffffff;
  border-color: #d3dbe3;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.courier-cargo-scenarios-btn[data-scenarios-prev]:hover:not(:disabled) {
  transform: translateX(-2px);
}

.courier-cargo-scenarios-btn[data-scenarios-next]:hover:not(:disabled) {
  transform: translateX(2px);
}

.courier-cargo-scenarios-btn:active:not(:disabled) {
  transform: scale(0.94);
}

.courier-cargo-scenarios-btn:disabled {
  opacity: 0.42;
  cursor: default;
}

.courier-cargo-scenarios-pagination {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.courier-cargo-scenarios-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d4dce4;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.courier-cargo-scenarios-dot:hover,
.courier-cargo-scenarios-dot:focus-visible {
  background: #b8c4cf;
}

.courier-cargo-scenarios-dot:focus-visible {
  outline: 2px solid rgba(82, 188, 83, 0.28);
  outline-offset: 2px;
}

.courier-cargo-scenarios-dot.is-active {
  background: #52bc53;
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .courier-cargo-scenarios-slider {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .courier-cargo-scenarios-shell {
    gap: 16px;
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .courier-cargo-scenarios-heading {
    justify-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .courier-cargo-scenarios-heading h2 {
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 0.94;
    text-align: left;
    text-wrap: normal;
  }

  .courier-cargo-scenario-slide {
    min-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr;
    border-radius: 24px;
  }

  .courier-cargo-scenario-slide--text {
    grid-template-rows: 1fr;
  }

  .courier-cargo-scenario-photo {
    min-height: 200px;
  }

  .courier-cargo-scenario-body {
    gap: 16px;
    padding: 18px 16px;
    border-left: none;
    border-top: 1px solid #edf1f3;
  }

  .courier-cargo-scenario-slide--text .courier-cargo-scenario-body {
    border-top: none;
  }

  .courier-cargo-scenario-body > div {
    max-width: none;
  }

  .courier-cargo-scenario-title {
    font-size: 21px;
  }

  .courier-cargo-scenario-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .courier-cargo-scenarios-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    justify-content: space-between;
    gap: 12px;
    padding: 0 4px;
    pointer-events: auto;
  }

  .courier-cargo-scenarios-btn {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .courier-cargo-scenarios-pagination {
    display: flex;
    padding-bottom: 0;
  }
}

.courier-cargo-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.courier-cargo-flow-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
}

.courier-cargo-flow-card--accent {
  background:
    radial-gradient(circle at top right, rgba(0, 184, 64, 0.14) 0%, rgba(0, 184, 64, 0) 30%),
    linear-gradient(180deg, #f3fff2 0%, #ffffff 100%);
}

.courier-cargo-categories-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 28px 28px;
  border: 1px solid #e7e7e7;
  border-radius: 34px;
  background: #ffffff;
  overflow: hidden;
}

.courier-cargo-categories-shell::after {
  content: "";
  position: absolute;
  bottom: 28px;
  right: 0;
  width: 84px;
  height: 236px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 72%);
  pointer-events: none;
}

.courier-cargo-categories-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.courier-cargo-categories-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6fbf4 0%, #edf8e9 100%);
  border: 1px solid rgba(0, 184, 64, 0.14);
  color: #2f6b3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courier-cargo-categories-shell h2 {
  margin: 0;
  color: #111111;
  max-width: none;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.courier-cargo-categories-heading p {
  margin: 0;
  max-width: none;
  color: #5b6472;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.courier-cargo-categories-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(204px, 220px);
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.courier-cargo-categories-rail::-webkit-scrollbar {
  display: none;
}

.courier-cargo-categories-rail:active {
  cursor: grabbing;
}

.courier-cargo-category-card {
  display: flex;
  flex-direction: column;
  min-height: 224px;
  padding: 14px 14px 12px;
  border-radius: 24px;
  border: 1px solid #ecebe8;
  background: #fbfbfa;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  scroll-snap-align: start;
}

.courier-cargo-category-card:hover {
  border-color: #ddddda;
  background: #ffffff;
}

.courier-cargo-category-media {
  min-height: 156px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px 12px 0;
  overflow: hidden;
}

.courier-cargo-category-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 148px;
  height: auto;
  object-fit: contain;
}

.courier-cargo-category-card--furniture .courier-cargo-category-media img {
  max-width: 210px;
}

.courier-cargo-category-card--tech .courier-cargo-category-media img {
  max-width: 158px;
}

.courier-cargo-category-card--boxes .courier-cargo-category-media img {
  max-width: 184px;
}

.courier-cargo-category-card--pallets .courier-cargo-category-media img {
  max-width: 184px;
}

.courier-cargo-category-card--construction .courier-cargo-category-media img {
  max-width: 184px;
}

.courier-cargo-category-card--equipment .courier-cargo-category-media img {
  max-width: 158px;
}

.courier-cargo-category-card--shopping .courier-cargo-category-media img {
  max-width: 162px;
}

.courier-cargo-category-card--goods .courier-cargo-category-media img {
  max-width: 136px;
}

.courier-cargo-category-media--placeholder .material-icons-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0;
  color: #c4c8cf;
  font-size: 42px;
}

.courier-cargo-category-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 8px 4px 2px;
  text-align: center;
}

.courier-cargo-category-copy h3 {
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
}

.courier-cargo-vehicles-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px 24px 24px;
  border: 1px solid #e7e7e7;
  border-radius: 34px;
  background:
    radial-gradient(circle at top center, rgba(57, 181, 74, 0.08) 0%, rgba(57, 181, 74, 0) 30%),
    #ffffff;
  overflow: hidden;
}

.courier-cargo-vehicles-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.courier-cargo-vehicles-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6fbf4 0%, #edf8e9 100%);
  border: 1px solid rgba(0, 184, 64, 0.14);
  color: #2f6b3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courier-cargo-vehicles-shell h2 {
  margin: 0;
  color: #111111;
  max-width: none;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.courier-cargo-vehicles-heading p {
  margin: 0;
  max-width: 40ch;
  color: #5b6472;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

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

.courier-cargo-vehicle-card {
  position: relative;
  display: flex;
  min-height: 286px;
  padding: 132px 18px 18px;
  border: none;
  background: transparent;
  text-align: inherit;
  font: inherit;
  cursor: pointer;
}

.courier-cargo-vehicle-card::before {
  content: "";
  position: absolute;
  inset: 70px 0 0;
  border-radius: 26px;
  border: 1px solid #eceff1;
  background: linear-gradient(180deg, #f6f7f8 0%, #eef2f4 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.courier-cargo-vehicle-card:hover::before {
  transform: translateY(-2px);
  border-color: #dfe4e8;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.065);
}

.courier-cargo-vehicle-card.is-active::before {
  border-color: rgba(0, 166, 62, 0.22);
  background: linear-gradient(180deg, #f4fbf5 0%, #edf8f0 100%);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.065);
}

.courier-cargo-vehicle-card:focus-visible {
  outline: none;
}

.courier-cargo-vehicle-card:focus-visible::before {
  border-color: #00a63e;
  box-shadow: 0 0 0 4px rgba(0, 166, 62, 0.14), 0 24px 56px rgba(15, 23, 42, 0.08);
}

.courier-cargo-vehicle-media,
.courier-cargo-vehicle-copy {
  position: relative;
  z-index: 1;
}

.courier-cargo-vehicle-media {
  position: absolute;
  top: 2px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.courier-cargo-vehicle-media img,
.courier-cargo-bike-svg {
  display: block;
  width: min(100%, 236px);
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.1));
}

.courier-cargo-bike-svg {
  width: min(100%, 220px);
  overflow: visible;
}

.courier-cargo-vehicle-card--xs .courier-cargo-vehicle-media {
  top: 14px;
}

.courier-cargo-vehicle-card--xs .courier-cargo-bike-svg {
  transform: translateY(4px);
}

.courier-cargo-vehicle-card--s .courier-cargo-vehicle-media img {
  width: min(100%, 222px);
}

.courier-cargo-vehicle-card--mk .courier-cargo-vehicle-media img {
  width: min(100%, 258px);
  transform: translateY(-2px);
}

.courier-cargo-vehicle-card--l .courier-cargo-vehicle-media img {
  width: min(100%, 252px);
  transform: translateY(-4px);
}

.courier-cargo-vehicle-copy {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.courier-cargo-vehicle-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7dde2;
  color: #1c2530;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courier-cargo-vehicle-copy h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.courier-cargo-vehicle-copy p {
  margin: 0;
  max-width: 20ch;
  color: #66707d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.38;
}

.courier-cargo-vehicle-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7dde2;
  color: #111827;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.courier-cargo-vehicle-action .material-icons-round {
  font-size: 18px;
}

.courier-cargo-vehicle-card.is-active .courier-cargo-vehicle-action {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  transform: rotate(180deg);
}

.courier-cargo-vehicle-details {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  margin-top: 0;
  padding: 0 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(57, 181, 74, 0.06) 0%, rgba(57, 181, 74, 0) 30%),
    #f7f8f8;
  border: 1px solid transparent;
  box-shadow: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.courier-cargo-vehicle-details.is-open {
  margin-top: 8px;
  padding-top: 18px;
  padding-bottom: 22px;
  border-color: #e8ecef;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.courier-cargo-vehicle-details-preview-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.courier-cargo-vehicle-details-preview {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f4f7f5 0%, #eef4f1 100%);
  overflow: hidden;
}

.courier-cargo-vehicle-details-preview .courier-cargo-vehicle-media {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  pointer-events: auto;
}

.courier-cargo-vehicle-details-preview img,
.courier-cargo-vehicle-details-preview .courier-cargo-bike-svg {
  width: min(100%, 320px);
  height: auto;
}

.courier-cargo-vehicle-details-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.courier-cargo-vehicle-details-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7dde2;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courier-cargo-vehicle-details-head h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.courier-cargo-vehicle-details-head p {
  margin: 0;
  max-width: 34ch;
  color: #5b6472;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.courier-cargo-vehicle-details-table {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.courier-cargo-vehicle-detail-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid #dde3e7;
}

.courier-cargo-vehicle-detail-row:first-child {
  border-top: none;
}

.courier-cargo-vehicle-detail-row span {
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.courier-cargo-vehicle-detail-row strong {
  margin: 0;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.courier-cargo-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.courier-cargo-steps li,
.courier-cargo-confidence-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.94);
  background: rgba(255, 255, 255, 0.92);
}

.courier-cargo-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.courier-cargo-steps strong,
.courier-cargo-confidence-item strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.courier-cargo-steps p,
.courier-cargo-confidence-item p {
  margin: 8px 0 0;
  color: var(--home-text-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.courier-cargo-confidence-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.courier-cargo-confidence-item .material-icons-round {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #ffffff;
  font-size: 24px;
}

.courier-cargo-quick-actions {
  margin-top: 0;
}

.home-faq.courier-cargo-faq,
.popular-services.courier-cargo-popular {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.courier-cargo-faq .home-faq-shell {
  max-width: none;
}

.courier-cargo-faq-layout {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}

.courier-cargo-faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.home-page.courier-cargo-page .courier-cargo-faq-sidebar p {
  max-width: none;
}

.courier-cargo-faq-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 979px) {
  .courier-cargo-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courier-cargo-advantages-grid--row2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .courier-cargo-advantages-card {
    border-bottom: 1px solid #efefef;
  }

  .courier-cargo-advantages-card:nth-child(2n) {
    border-right: none;
  }

  .courier-cargo-advantages-card--price {
    order: 1;
  }

  .courier-cargo-advantages-card--track {
    order: 2;
  }

  .courier-cargo-advantages-card--low {
    order: 3;
  }

  .courier-cargo-advantages-card--hours {
    order: 4;
  }

  .courier-cargo-advantages-card--instant {
    order: 5;
  }

  .courier-cargo-advantages-card--support {
    order: 6;
  }

  .courier-cargo-advantages-card--drivers {
    order: 7;
  }

  .courier-cargo-trust-shell {
    display: flex;
    flex-direction: column;
  }

  .courier-cargo-trust-header {
    max-width: none;
  }

  .courier-cargo-trust-header h2 {
    max-width: none;
  }

  .courier-cargo-hero-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .courier-cargo-hero-visual {
    margin-right: 0;
    align-items: center;
    justify-content: center;
  }

  .courier-cargo-hero-visual img.courier-cargo-hero-visual-truckflex {
    width: min(100%, 640px);
    margin: 0;
    transform: none;
  }

  .courier-cargo-hero-visual img.courier-cargo-hero-visual-truckyfiy {
    width: min(98%, 640px);
    margin: 0;
    transform: translateX(-2%);
  }

  .courier-cargo-hero-visual img.courier-cargo-hero-visual-photo {
    width: min(100%, 560px);
    max-width: 100%;
    height: clamp(260px, 50vw, 360px);
    transform: translateX(-22px);
  }
  body.express-delivery-page .courier-cargo-hero-shell {
    gap: 18px;
    padding: 24px 22px 20px;
  }

  body.express-delivery-page .courier-cargo-hero-visual {
    margin-right: 0;
    align-items: center;
  }

  body.express-delivery-page .courier-cargo-hero-visual img {
    width: min(100%, 540px);
    max-width: 100%;
    margin: -4px auto 0;
    transform: translateX(-32px);
  }

  body.express-delivery-page .courier-cargo-vehicles-story {
    justify-self: center;
    max-width: 520px;
  }

  body.express-delivery-page .courier-cargo-vehicles-story h2 {
    max-width: 11ch;
  }

  body.express-delivery-page .courier-cargo-trust-shell {
    padding: 0;
    border-radius: 0;
    gap: 10px;
  }

  body.express-delivery-page .trust-card--tracking {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.express-delivery-page .trust-card--tracking .trust-price-rows {
    width: 100%;
    justify-self: stretch;
  }

  .courier-cargo-how-heading {
    gap: 14px;
    max-width: none;
  }

  .courier-cargo-how-flow {
    overflow-x: auto;
    grid-template-columns:
      200px 24px
      200px 24px
      200px 24px
      200px 24px
      200px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .courier-cargo-how-flow::-webkit-scrollbar {
    display: none;
  }

  .courier-cargo-trust-bento {
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .trust-card--tracking {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .trust-card--price {
    grid-column: 2;
    grid-row: 1;
  }

  .trust-card--verified {
    grid-column: 2;
    grid-row: 2;
  }

  .trust-card--photo {
    grid-column: 1;
    grid-row: 3;
  }

  .trust-card--support {
    grid-column: 2;
    grid-row: 3;
  }

  .courier-cargo-hero-highlights,
  .courier-cargo-visual-details,
  .courier-cargo-flow-grid {
    grid-template-columns: 1fr;
  }

  .courier-cargo-vehicles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .courier-cargo-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .courier-cargo-vehicles-showcase {
    grid-template-columns: minmax(320px, 380px) minmax(280px, 320px);
    gap: 22px;
    align-items: start;
  }

  .courier-cargo-vehicle-browser-stage {
    grid-template-columns: auto minmax(220px, 0.8fr) minmax(0, 1fr) auto;
  }

  .courier-cargo-vehicles-story {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid #eff1f2;
    max-width: 720px;
  }

  .courier-cargo-visual-panel {
    min-height: 0;
  }

  .courier-cargo-faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .courier-cargo-main {
    padding-top: 12px;
    gap: 24px;
  }

  .courier-cargo-hero-shell,
  .courier-cargo-advantages-panel,
  .courier-cargo-scenarios-shell,
  .courier-cargo-vehicle-browser,
  .courier-cargo-vehicles-status-card {
    border-radius: 30px;
  }

  .courier-cargo-hero-shell {
    padding: 30px 28px 26px;
    gap: 22px;
  }

  .courier-cargo-hero-copy {
    gap: 14px;
  }

  .courier-cargo-eyebrow {
    min-height: 30px;
    padding: 0 13px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .courier-cargo-hero-copy h1 {
    max-width: 10.2ch;
    font-size: clamp(42px, 6vw, 56px);
    line-height: 0.92;
  }

  .courier-cargo-hero-copy > p {
    max-width: 32ch;
    font-size: 16px;
    line-height: 1.45;
  }

  .courier-cargo-hero-actions {
    width: 100%;
    gap: 10px;
  }

  .courier-cargo-primary-link,
  .courier-cargo-secondary-link {
    min-height: 52px;
    padding: 0 22px;
    font-size: 15px;
  }

  .courier-cargo-hero-visual {
    min-height: 280px;
  }

  .courier-cargo-hero-visual img.courier-cargo-hero-visual-truckyfiy {
    width: min(96%, 580px);
    transform: translateX(0);
  }

  .courier-cargo-advantages-heading {
    max-width: none;
    font-size: clamp(28px, 3.35vw, 36px);
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .courier-cargo-advantages-card {
    min-height: 188px;
    padding: 20px 20px 18px;
  }

  .courier-cargo-advantages-card-title {
    font-size: 17px;
  }

  .courier-cargo-advantages-card-desc {
    font-size: 14px;
    line-height: 1.46;
  }

  .courier-cargo-advantages-card--instant {
    justify-items: center;
    text-align: center;
  }

  .courier-cargo-advantages-card--instant .courier-cargo-advantages-card-body {
    max-width: 30ch;
  }

  .courier-cargo-showcase {
    gap: 22px;
  }

  .courier-cargo-vehicles-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    grid-template-areas:
      "browser status"
      "story story";
    gap: 20px 22px;
    align-items: start;
  }

  .courier-cargo-vehicle-browser {
    grid-area: browser;
    width: 100%;
    max-width: none;
    padding: 20px 20px 18px;
  }

  .courier-cargo-vehicle-browser-stage {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    grid-template-areas:
      "prev media next"
      "copy copy copy";
    gap: 14px 12px;
  }

  .courier-cargo-vehicle-browser-media-card {
    min-height: 206px;
    gap: 14px;
  }

  .courier-cargo-vehicle-browser-media-card h3 {
    font-size: clamp(28px, 3.4vw, 34px);
  }

  .courier-cargo-vehicle-browser-media-card p {
    font-size: 14px;
  }

  .courier-cargo-vehicle-browser-media img {
    max-width: 280px;
    height: 156px;
  }

  .courier-cargo-vehicle-browser-copy {
    gap: 14px;
  }

  .courier-cargo-vehicle-browser-metrics {
    max-width: 100%;
    gap: 10px;
  }

  .courier-cargo-vehicle-browser-metric {
    justify-content: center;
  }

  .courier-cargo-vehicle-browser-toggle {
    min-height: 40px;
  }

  .courier-cargo-vehicles-status {
    grid-area: status;
    align-self: stretch;
  }

  .courier-cargo-vehicles-status-card {
    width: 100%;
    min-height: 100%;
    padding: 18px;
  }

  .courier-cargo-vehicles-story {
    grid-area: story;
    max-width: 760px;
    padding-top: 14px;
  }

  .courier-cargo-vehicles-story h2 {
    max-width: 12ch;
    font-size: clamp(42px, 5.6vw, 58px);
    line-height: 0.94;
  }

  .courier-cargo-vehicles-story #courierCargoVehiclesTitle {
    transform: none;
  }

  .courier-cargo-scenarios-shell {
    padding: 30px 28px;
  }

  .courier-cargo-scenarios-heading h2 {
    max-width: none;
    font-size: clamp(28px, 3.25vw, 36px);
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .courier-cargo-scenario-slide {
    min-height: 360px;
  }

  .courier-cargo-scenario-body {
    padding: 28px;
  }

  .courier-cargo-scenario-title {
    font-size: clamp(26px, 3.2vw, 34px);
  }

  .courier-cargo-scenario-desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .courier-cargo-faq .home-faq-shell {
    padding: 28px;
    border-radius: 30px;
  }

  .courier-cargo-faq-sidebar {
    gap: 14px;
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  body.home-page.courier-cargo-page {
    padding-top: 78px !important;
  }

  .courier-cargo-main {
    padding: 10px 14px 0;
    gap: 18px;
  }

  .courier-cargo-advantages-heading {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 0.98;
  }

  .courier-cargo-hero-shell,
  .courier-cargo-flow-card {
    border-radius: 26px;
  }

  .courier-cargo-hero-shell {
    padding: 28px 18px;
    gap: 18px;
  }

  .courier-cargo-hero-copy {
    width: 100%;
    gap: 18px;
  }

  .courier-cargo-eyebrow {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .courier-cargo-hero-copy h1 {
    max-width: 10.4ch;
    font-size: clamp(38px, 10vw, 52px);
    line-height: 0.92;
  }

  .courier-cargo-hero-copy > p {
    max-width: 30ch;
  }

  .courier-cargo-hero-copy > p,
  .courier-cargo-section-heading p,
  .courier-cargo-faq-sidebar p {
    font-size: 15px;
    line-height: 1.5;
  }

  .courier-cargo-hero-tags span,
  .courier-cargo-scenario-tags span,
  .courier-cargo-faq-pills .home-faq-tab {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .courier-cargo-primary-link,
  .courier-cargo-secondary-link {
    width: 100%;
    min-height: 54px;
  }

  .courier-cargo-hero-visual img {
    width: min(100%, 300px);
    max-width: 100%;
    margin: 0 auto;
  }

  .courier-cargo-hero-visual img.courier-cargo-hero-visual-truckflex {
    width: min(100%, 320px);
    transform: none;
    transform-origin: center center;
  }

  .courier-cargo-hero-visual img.courier-cargo-hero-visual-truckyfiy {
    width: min(100%, 320px);
    transform: translateX(-2%);
    transform-origin: center center;
  }

  .courier-cargo-hero-visual img.courier-cargo-hero-visual-photo {
    width: min(100%, 320px);
    height: 232px;
    border-radius: 22px;
    transform: translateX(-10px);
    object-position: 36% center;
  }
  body.express-delivery-page .courier-cargo-main {
    padding: 0 14px 0;
    gap: 16px;
  }

  body.express-delivery-page .courier-cargo-hero-shell {
    grid-template-columns: 1fr;
    padding: 18px 14px 16px;
    gap: 12px;
    align-items: start;
  }

  body.express-delivery-page .courier-cargo-hero-copy {
    display: contents;
  }

  body.express-delivery-page .courier-cargo-eyebrow {
    order: 1;
    justify-self: start;
  }

  body.express-delivery-page .courier-cargo-hero-copy h1 {
    order: 2;
    max-width: 8.2ch;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 0.9;
  }

  body.express-delivery-page .courier-cargo-hero-visual {
    order: 3;
    min-height: 0;
    margin-right: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4px 0 2px;
  }

  body.express-delivery-page .courier-cargo-hero-visual img {
    width: min(100%, 412px);
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }

  body.express-delivery-page .courier-cargo-hero-copy > p {
    order: 4;
    max-width: none;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
  }

  body.express-delivery-page .courier-cargo-hero-actions {
    order: 5;
    gap: 10px;
    margin-top: 2px;
  }

  body.express-delivery-page .courier-cargo-hero-highlights {
    order: 6;
    gap: 8px;
    margin-top: 2px;
  }

  body.express-delivery-page .courier-cargo-highlight-card {
    padding: 12px 14px;
  }

  body.express-delivery-page .courier-cargo-highlight-card strong {
    font-size: 15px;
  }

  body.express-delivery-page .courier-cargo-highlight-card p {
    color: #5b6472;
    font-size: 13px;
    line-height: 1.42;
  }

  body.express-delivery-page .courier-cargo-advantages-card-desc {
    color: #535d6b;
    font-size: 15px;
    line-height: 1.46;
  }

  body.express-delivery-page .courier-cargo-vehicles-story {
    max-width: none;
    text-align: center;
  }

  body.express-delivery-page .courier-cargo-vehicles-story h2 {
    max-width: 11ch;
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 0.95;
  }

  body.express-delivery-page .courier-cargo-trust-shell {
    padding: 0;
    border-radius: 0;
    gap: 10px;
  }

  body.express-delivery-page .trust-card {
    padding: 16px;
    border-radius: 18px;
  }

  body.express-delivery-page .trust-card > strong,
  body.express-delivery-page .trust-card .trust-card-copy > strong,
  body.express-delivery-page .trust-support-copy > strong {
    font-size: 18px;
  }

  body.express-delivery-page .trust-card--tracking .trust-card-copy > strong {
    max-width: none;
    font-size: 20px;
  }

  body.express-delivery-page .trust-card--tracking .trust-card-copy > p {
    max-width: none;
  }

  body.express-delivery-page .trust-price-row {
    padding: 11px 12px;
  }

  body.express-delivery-page .trust-price-row-copy strong {
    font-size: 14px;
  }

  body.express-delivery-page .trust-price-row-copy span {
    font-size: 12px;
  }

  body.express-delivery-page .trust-photo-stages {
    gap: 8px;
  }

  body.express-delivery-page .trust-photo-stage {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  body.express-delivery-page .trust-support-link {
    min-height: 48px;
    padding: 0 16px 0 18px;
    font-size: 14px;
  }

  body.express-delivery-page .trust-support-link-bolt {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  body.express-delivery-page .express-delivery-cta-shell {
    width: 100%;
    gap: 14px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  body.express-delivery-page #expressCtaTitle {
    font-size: clamp(26px, 7.8vw, 34px);
    white-space: normal;
  }

  body.express-delivery-page .express-delivery-cta-copy {
    font-size: 14px;
    line-height: 1.42;
    white-space: normal;
  }

  body.express-delivery-page .express-delivery-cta-actions {
    margin-top: 4px;
  }

  .courier-cargo-section-heading {
    margin-bottom: 14px;
  }

  .courier-cargo-section-heading h2 {
    max-width: 10ch;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 0.98;
  }

  .courier-cargo-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .courier-cargo-vehicles-showcase {
    padding: 0;
    border-radius: 0;
  }

  .courier-cargo-how-shell {
    padding: 18px;
    border-radius: 24px;
    gap: 16px;
  }

  .courier-cargo-how-heading h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 0.98;
  }

  .courier-cargo-how-heading p {
    max-width: none;
    font-size: 14px;
  }

  .courier-cargo-how-card {
    min-height: 0;
    padding: 16px 14px;
    border-radius: 20px;
  }

  .courier-cargo-how-copy h3 {
    max-width: 10.5ch;
    font-size: 19px;
  }

  .courier-cargo-how-copy p {
    max-width: 18ch;
    font-size: 13px;
  }

  .courier-cargo-how-arrow .material-icons-round {
    font-size: 16px;
  }

  .courier-cargo-advantages-card {
    padding: 16px;
  }

  .courier-cargo-advantages-strip {
    padding: 18px;
  }

  .courier-cargo-trust-shell {
    display: flex;
    grid-template-columns: none;
    padding: 20px 16px;
    border-radius: 26px;
    gap: 16px;
  }

  .courier-cargo-trust-header h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 38px);
  }

  .courier-cargo-trust-bento {
    grid-template-columns: 1fr;
  }

  .trust-card--tracking,
  .trust-card--price,
  .trust-card--verified,
  .trust-card--photo,
  .trust-card--support {
    grid-column: 1;
    grid-row: auto;
  }

  .trust-card {
    padding: 18px;
    border-radius: 20px;
  }

  .trust-card--tracking {
    gap: 20px;
  }

  .trust-price-big strong {
    font-size: clamp(52px, 14vw, 72px);
  }

  .courier-cargo-categories-shell {
    padding: 18px;
    border-radius: 24px;
    gap: 14px;
  }

  .courier-cargo-vehicles-shell {
    padding: 16px;
    border-radius: 24px;
    gap: 14px;
  }

  .courier-cargo-categories-shell::after {
    bottom: 18px;
    width: 54px;
    height: 210px;
  }

  .courier-cargo-categories-rail {
    grid-auto-columns: minmax(176px, 66vw);
    gap: 12px;
  }

  .courier-cargo-categories-heading {
    gap: 8px;
  }

  .courier-cargo-categories-shell h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1;
  }

  .courier-cargo-vehicles-shell h2 {
    max-width: none;
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1;
  }

  .courier-cargo-categories-heading p {
    max-width: none;
    font-size: 14px;
  }

  .courier-cargo-vehicles-heading p {
    max-width: 26ch;
    font-size: 13px;
  }

  .courier-cargo-showcase-media img {
    min-height: 260px;
    border-radius: 18px;
  }

  .courier-cargo-showcase-copy {
    gap: 14px;
  }

  .courier-cargo-showcase-kicker {
    font-size: 14px;
  }

  .courier-cargo-showcase-copy h2 {
    max-width: none;
    font-size: clamp(30px, 8vw, 40px);
    white-space: normal;
  }

  .courier-cargo-vehicles-story {
    align-items: center;
    text-align: center;
    padding-top: 0;
    border-top: none;
    max-width: none;
  }

  .courier-cargo-vehicle-browser {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
    column-gap: 16px;
    row-gap: 0;
  }

  .courier-cargo-vehicles-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .courier-cargo-vehicles-status-card {
    width: min(100%, 420px);
  }

  .courier-cargo-vehicle-browser-stage {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "prev media next"
      "copy copy copy";
    gap: 14px 12px;
  }

  .courier-cargo-vehicle-browser-arrow--prev {
    grid-area: prev;
  }

  .courier-cargo-vehicle-browser-arrow--next {
    grid-area: next;
  }

  .courier-cargo-vehicle-browser-media-card {
    grid-area: media;
    min-height: 194px;
    gap: 14px;
  }

  .courier-cargo-vehicle-browser-media-card h3 {
    font-size: clamp(28px, 7vw, 34px);
  }

  .courier-cargo-vehicle-browser-media-card p {
    font-size: 14px;
  }

  .courier-cargo-vehicle-browser-media img {
    width: 100%;
    max-width: 270px;
    height: 150px;
  }

  .courier-cargo-vehicle-browser-copy {
    grid-area: copy;
    align-items: center;
    text-align: center;
  }

  .courier-cargo-vehicle-browser-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 460px;
  }

  .courier-cargo-vehicle-browser-toggle {
    align-self: center;
  }

  .courier-cargo-vehicle-browser-drawer {
    grid-template-columns: 1fr;
  }

  .courier-cargo-vehicle-browser-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .courier-cargo-vehicle-browser-detail-row:nth-child(2) {
    border-top: 1px solid #f1f3f4;
  }

  .courier-cargo-vehicles-story h2 {
    max-width: 10ch;
    font-size: clamp(34px, 9vw, 48px);
    line-height: 0.94;
  }

  .courier-cargo-showcase-item {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .courier-cargo-showcase-item .material-icons-round {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .courier-cargo-category-card {
    min-height: 210px;
    padding: 12px 12px 10px;
    border-radius: 22px;
  }

  .courier-cargo-vehicles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .courier-cargo-vehicle-card {
    min-height: 264px;
    padding: 120px 14px 16px;
  }

  .courier-cargo-vehicle-card::before {
    inset: 62px 0 0;
    border-radius: 24px;
  }

  .courier-cargo-vehicle-media {
    top: 2px;
    left: 14px;
    right: 14px;
  }

  .courier-cargo-vehicle-card--xs .courier-cargo-vehicle-media {
    top: 10px;
  }

  .courier-cargo-vehicle-media img,
  .courier-cargo-bike-svg {
    width: min(100%, 208px);
  }

  .courier-cargo-vehicle-card--mk .courier-cargo-vehicle-media img,
  .courier-cargo-vehicle-card--l .courier-cargo-vehicle-media img {
    width: min(100%, 220px);
  }

  .courier-cargo-vehicle-copy {
    gap: 7px;
  }

  .courier-cargo-vehicle-copy h3 {
    font-size: 22px;
  }

  .courier-cargo-vehicle-copy p {
    max-width: 18ch;
    font-size: 12px;
  }

  .courier-cargo-vehicle-details {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 24px;
  }

  .courier-cargo-vehicle-details.is-open {
    padding-top: 16px;
    padding-bottom: 16px;
    max-height: 640px;
  }

  .courier-cargo-vehicle-details-preview-block {
    gap: 12px;
  }

  .courier-cargo-vehicle-details-preview {
    min-height: 170px;
    padding: 10px;
    border-radius: 20px;
  }

  .courier-cargo-vehicle-details-preview img,
  .courier-cargo-vehicle-details-preview .courier-cargo-bike-svg {
    width: min(100%, 280px);
  }

  .courier-cargo-vehicle-details-head h3 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1;
  }

  .courier-cargo-vehicle-details-head p {
    font-size: 14px;
  }

  .courier-cargo-vehicle-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .courier-cargo-vehicle-detail-row span,
  .courier-cargo-vehicle-detail-row strong {
    font-size: 14px;
  }

  .courier-cargo-category-media {
    min-height: 140px;
    padding: 6px 10px 0;
  }

  .courier-cargo-category-copy {
    padding: 6px 4px 2px;
  }

  .courier-cargo-category-copy h3 {
    font-size: 18px;
  }

  .courier-cargo-category-media img {
    width: auto;
    max-width: 100%;
    max-height: 126px;
  }

  .courier-cargo-category-card--furniture .courier-cargo-category-media img {
    max-width: 174px;
  }

  .courier-cargo-category-card--tech .courier-cargo-category-media img {
    max-width: 136px;
  }

  .courier-cargo-category-card--boxes .courier-cargo-category-media img {
    max-width: 156px;
  }

  .courier-cargo-category-card--pallets .courier-cargo-category-media img {
    max-width: 154px;
  }

  .courier-cargo-category-card--construction .courier-cargo-category-media img {
    max-width: 156px;
  }

  .courier-cargo-category-card--equipment .courier-cargo-category-media img {
    max-width: 134px;
  }

  .courier-cargo-category-card--shopping .courier-cargo-category-media img {
    max-width: 140px;
  }

  .courier-cargo-category-card--goods .courier-cargo-category-media img {
    max-width: 116px;
  }

  .courier-cargo-category-media--placeholder .material-icons-round {
    font-size: 36px;
  }

  .courier-cargo-steps li,
  .courier-cargo-confidence-item {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }

  .courier-cargo-step-index,
  .courier-cargo-confidence-item .material-icons-round {
    min-width: 46px;
    width: 46px;
    min-height: 46px;
    height: 46px;
    border-radius: 15px;
  }
}

@media (max-width: 479px) {
  body.express-delivery-page .courier-cargo-main {
    padding: 0 10px 0;
    gap: 12px;
  }

  body.express-delivery-page .courier-cargo-eyebrow {
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  body.express-delivery-page .courier-cargo-hero-shell {
    padding: 18px 12px 14px;
    gap: 10px;
    border-radius: 22px;
  }

  body.express-delivery-page .courier-cargo-hero-copy h1 {
    max-width: none;
    font-size: clamp(28px, 9vw, 34px);
  }

  body.express-delivery-page .courier-cargo-vehicles-showcase {
    gap: 14px;
  }

  body.express-delivery-page .courier-cargo-vehicles-story h2 {
    max-width: 10ch;
    font-size: clamp(27px, 8.4vw, 32px);
    white-space: normal;
  }
  body.express-delivery-page .courier-cargo-hero-visual img {
    width: min(100%, 352px);
  }

  body.express-delivery-page .courier-cargo-hero-copy > p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
  }

  body.express-delivery-page .courier-cargo-hero-actions {
    gap: 8px;
  }

  body.express-delivery-page .courier-cargo-highlight-card {
    padding: 11px 12px;
  }

  body.express-delivery-page .courier-cargo-highlight-card strong {
    font-size: 14px;
  }

  body.express-delivery-page .courier-cargo-highlight-card p {
    color: #5b6472;
    font-size: 12px;
    line-height: 1.42;
  }

  body.express-delivery-page .courier-cargo-advantages-card-desc {
    color: #55606f;
    font-size: 14px;
    line-height: 1.48;
  }

  body.express-delivery-page .courier-cargo-vehicle-browser,
  body.express-delivery-page .courier-cargo-vehicles-status {
    max-width: none;
  }

  body.express-delivery-page .courier-cargo-trust-kicker {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  body.express-delivery-page .trust-card--tracking {
    gap: 12px;
  }

  body.express-delivery-page .trust-card--tracking .trust-card-copy > strong {
    font-size: 18px;
  }

  body.express-delivery-page .express-delivery-cta-shell {
    width: 100%;
    padding: 22px 14px;
  }

  body.express-delivery-page #expressCtaTitle {
    max-width: 11ch;
    font-size: clamp(24px, 8.8vw, 30px);
  }

  body.express-delivery-page .express-delivery-cta-actions {
    gap: 10px;
  }

  .courier-cargo-advantages-grid,
  .courier-cargo-advantages-grid--row2 {
    grid-template-columns: 1fr;
  }

  .courier-cargo-advantages-card {
    border-right: none;
  }

  .courier-cargo-advantages-card--instant {
    grid-column: span 1;
  }

  .courier-cargo-vehicle-browser-stage {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    grid-template-areas:
      "prev media next"
      "copy copy copy";
  }

  .courier-cargo-vehicle-browser-arrow {
    width: 28px;
    min-height: 28px;
  }

  .courier-cargo-vehicles-status-card {
    width: 100%;
  }

  .courier-cargo-vehicle-browser-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 320px;
    gap: 10px 8px;
  }

  .courier-cargo-vehicle-browser-metric {
    gap: 8px;
  }

  .courier-cargo-vehicle-browser-metric .material-icons-round {
    width: 32px;
    height: 32px;
  }

  .courier-cargo-vehicle-browser-metric strong {
    font-size: 14px;
  }

  .courier-cargo-vehicles-status .trust-order-mock-driver {
    flex-wrap: wrap;
  }

  .courier-cargo-vehicles-status .trust-order-mock-verified {
    margin-left: 52px;
  }
}

/* ==========================================
   СТРАНИЦА ДЛЯ БИЗНЕСА
========================================== */
body.home-page.business-page {
  --home-text-strong: #17212b;
  --home-text-body: #36404d;
  --home-text-muted: #5d6877;
  --home-text-subtle: #7e8896;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0) 22%),
    linear-gradient(180deg, #f4f6f8 0%, #eef1f4 52%, #e5e9ed 100%);
  color: var(--home-text-body);
}

.business-page-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 36px 5% 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.business-hero-shell,
.business-solutions,
.business-proof,
.business-process,
.business-cta {
  border: 1px solid rgba(118, 128, 141, 0.16);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(246, 248, 250, 0.98) 0%, rgba(231, 235, 239, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 56px rgba(77, 88, 102, 0.14);
}

.business-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 22px;
  padding: 34px;
  border-color: rgba(118, 128, 141, 0.16);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0) 24%),
    linear-gradient(180deg, rgba(248, 249, 251, 0.99) 0%, rgba(233, 237, 241, 0.97) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 56px rgba(77, 88, 102, 0.14);
}

.business-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.business-hero-shell .business-page-eyebrow {
  border-color: #d6d6d6;
  background: #f7f7f7;
  color: #4b5563;
}

.business-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  color: #13202b;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.business-hero-shell .business-hero-copy h1 {
  color: #13202b;
}

.business-hero-copy p,
.business-section-heading p,
.business-proof-copy p,
.business-cta-copy p {
  margin: 0;
  max-width: 36ch;
  color: var(--home-text-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.business-hero-shell .business-hero-copy p {
  color: var(--home-text-muted);
}

.business-hero-actions,
.business-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.business-primary-link,
.business-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.business-primary-link {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #041109;
  box-shadow: 0 18px 36px rgba(34, 197, 94, 0.22);
}

.business-secondary-link {
  border: 1px solid rgba(118, 128, 141, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: #22303d;
}

.business-hero-shell .business-secondary-link {
  border-color: rgba(118, 128, 141, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: #22303d;
}

.business-primary-link:hover,
.business-secondary-link:hover {
  transform: translateY(-1px);
}

.business-secondary-link:hover {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(219, 249, 229, 0.9);
}

.business-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 6px;
}

.business-metric-pill,
.business-proof-card,
.business-process-card,
.business-solution-card,
.business-signal-card {
  border: 1px solid rgba(118, 128, 141, 0.14);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.business-metric-pill {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 108px;
  padding: 18px;
  border-radius: 22px;
}

.business-metric-pill strong {
  color: #17212b;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.business-hero-shell .business-metric-pill,
.business-hero-shell .business-signal-card:not(.business-signal-card--photo) {
  border-color: rgba(118, 128, 141, 0.14);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.business-hero-shell .business-metric-pill strong,
.business-hero-shell .business-signal-card strong {
  color: #17212b;
}

.business-hero-shell .business-metric-pill span,
.business-hero-shell .business-signal-card p {
  color: var(--home-text-muted);
}

.business-metric-pill span {
  color: var(--home-text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.business-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.business-signal-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px;
}

.business-signal-card--photo {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(33, 40, 49, 0.08) 0%, rgba(33, 40, 49, 0.48) 58%, rgba(33, 40, 49, 0.72) 100%),
    url('Images/business-cargo.jpg') center / cover no-repeat;
  border-color: rgba(118, 128, 141, 0.14);
}

.business-signal-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(245, 248, 252, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4f7fb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-signal-card strong,
.business-solution-card h3,
.business-proof-card strong,
.business-process-card h3,
.business-section-heading h2,
.business-proof-copy h2,
.business-cta-copy h2 {
  margin: 0;
  color: #17212b;
  letter-spacing: -0.04em;
}

.business-signal-card--photo strong,
.business-signal-card--photo p {
  color: #f8fbff;
}

.business-signal-card strong {
  max-width: 16ch;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.02;
}

.business-signal-card p,
.business-solution-card p,
.business-proof-card span,
.business-process-card p {
  margin: 10px 0 0;
  color: var(--home-text-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

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

.business-signal-grid .business-signal-card {
  min-height: 172px;
}

.business-signal-grid .material-icons-round,
.business-solution-icon .material-icons-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: #1f9f4c;
  font-size: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.business-hero-shell .business-signal-grid .material-icons-round {
  background: rgba(255, 255, 255, 0.72);
  color: #1f9f4c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.business-section-heading,
.business-proof,
.business-process,
.business-cta {
  padding: 34px;
}

.business-section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  margin-bottom: 24px;
}

.business-section-heading h2,
.business-proof-copy h2,
.business-cta-copy h2 {
  max-width: 14ch;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 850;
  line-height: 0.98;
}

.business-section-heading p {
  max-width: 40ch;
  font-size: 17px;
}

.business-solutions {
  padding: 34px;
}

.business-solution-grid,
.business-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.business-solution-card,
.business-process-card,
.business-proof-card {
  border-radius: 26px;
  padding: 24px;
}

.business-solution-card {
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.business-solution-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.business-solution-icon {
  margin-bottom: 18px;
}

.business-solution-card h3,
.business-process-card h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.02;
}

.business-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.business-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(118, 128, 141, 0.14);
  background: rgba(255, 255, 255, 0.66);
  color: #546071;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.business-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

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

.business-proof-card {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.business-proof-card strong {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.business-section-heading--compact {
  margin-bottom: 20px;
}

.business-step-number {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  color: #169246;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.business-process-card {
  min-height: 230px;
}

.business-cta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 10px;
  background:
    radial-gradient(circle at right top, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0) 32%),
    linear-gradient(180deg, rgba(242, 246, 248, 0.98) 0%, rgba(226, 231, 236, 0.98) 100%);
}

.business-cta-copy p {
  max-width: 34ch;
  margin-top: 14px;
  font-size: 17px;
}

body.home-page.business-page .site-footer {
  margin-top: 0;
  padding-bottom: 24px;
  background: transparent;
  border-top-color: rgba(118, 128, 141, 0.16);
}

body.home-page.business-page .footer-top::after {
  border-bottom-color: rgba(118, 128, 141, 0.16);
}

body.home-page.business-page .footer-nav a:hover {
  color: #86efac;
}

.fleet-page-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 36px 5% 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fleet-hero,
.fleet-grid-section,
.fleet-note {
  border: 1px solid rgba(118, 128, 141, 0.16);
  border-radius: 34px;
  background: #fbfbfa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 42px rgba(77, 88, 102, 0.08);
}

.fleet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: #f7f7f5;
}

.fleet-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.fleet-hero-copy h1,
.fleet-section-heading h2 {
  margin: 0;
  color: #13202b;
  letter-spacing: -0.06em;
}

.fleet-hero-copy h1 {
  max-width: none;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: pretty;
}

.fleet-hero-copy p,
.fleet-note p {
  margin: 0;
  color: var(--home-text-muted);
  letter-spacing: -0.02em;
}

.fleet-hero-copy p {
  max-width: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.fleet-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.fleet-hero-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fleet-preview-card,
.fleet-card {
  border: 1px solid rgba(118, 128, 141, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fleet-preview-card {
  min-height: 0;
  padding: 16px 18px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.fleet-preview-card--wide {
  grid-column: 1 / -1;
}

.fleet-preview-kicker {
  color: #748091;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-preview-size {
  color: #17212b;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.fleet-preview-label {
  color: #17212b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.fleet-preview-note {
  color: var(--home-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.fleet-grid-section {
  padding: 34px;
}

.fleet-section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.fleet-section-heading h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 850;
  line-height: 0.98;
}

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

.fleet-card {
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.fleet-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.22);
  background: #ffffff;
}

.fleet-card-media {
  min-height: 200px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f4;
}

.fleet-card-media img {
  width: min(100%, 230px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.12));
}

.fleet-card-body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.fleet-card-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fleet-card-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  color: #14853f;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.fleet-card-title {
  color: #17212b;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.fleet-card p {
  margin: 0;
  color: var(--home-text-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.fleet-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.fleet-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(118, 128, 141, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: #546071;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fleet-note {
  padding: 24px 34px;
  margin-bottom: 10px;
}

.fleet-note p {
  max-width: 46ch;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

body.home-page.fleet-page .business-primary-link {
  background: #22c55e;
  color: #041109;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.16);
}

@media (max-width: 979px) {
  .fleet-page-main {
    padding: 24px 14px 0;
    gap: 18px;
  }

  .fleet-hero,
  .fleet-grid-section,
  .fleet-note {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .fleet-hero {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .fleet-hero-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-hero-copy h1 {
    max-width: none;
    font-size: clamp(32px, 9vw, 44px);
  }

  .fleet-hero-copy p {
    max-width: none;
    font-size: 16px;
  }

  .fleet-hero-actions {
    width: 100%;
  }

  .fleet-hero-actions .business-primary-link,
  .fleet-hero-actions .business-secondary-link {
    flex: 1 1 100%;
  }

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

@media (max-width: 767px) {
  .fleet-hero,
  .fleet-grid-section,
  .fleet-note {
    padding: 22px 18px;
  }

  .fleet-preview-card {
    min-height: 0;
    padding: 18px;
  }

  .fleet-preview-card--wide {
    grid-column: auto;
  }

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

  .fleet-preview-size {
    font-size: 26px;
  }

  .fleet-card-media {
    min-height: 176px;
    padding: 20px;
  }

  .fleet-card-title {
    font-size: 22px;
  }

  .fleet-note p {
    font-size: 16px;
  }
}

/* ==========================================
   ГЛАВНАЯ: БЫСТРЫЕ ДЕЙСТВИЯ
========================================== */
.home-quick-actions {
  max-width: 1300px;
  margin: 8px auto 0;
  padding: 0 5%;
}

.home-quick-actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-action-card {
  min-height: 256px;
  padding: 30px 32px;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ecece7;
  background: #f3f3f1;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.home-action-card:hover {
  border-color: #dfdfd8;
  background: #f1f1ee;
}

.home-quick-actions .home-quick-actions-grid .home-action-card-order {
  background-color: #dffbe6;
}

.home-action-card-track {
  background: #f3f3f1;
}

.home-quick-actions .home-quick-actions-grid .home-action-card-track {
  background-color: #ffffff;
}

.home-action-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.home-action-card-arrow {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #171717;
  color: #ffffff;
  font-size: 31px;
  transition: transform 0.2s ease;
}

.home-action-card:hover .home-action-card-arrow {
  transform: translateX(3px);
}

.home-action-card-top h2 {
  margin: 0;
  max-width: 8ch;
  color: #111111;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.home-action-card-note {
  margin: 0;
  margin-top: auto;
  max-width: 30ch;
  color: #626262;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

@media (min-width: 980px) {
  .home-quick-actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================
   ГЛАВНАЯ: ПРЕИМУЩЕСТВА (SELLING POINTS) - ПРЕМИУМ ДИЗАЙН
========================================== */
.home-features {
  max-width: 1300px;
  margin: clamp(28px, 4vw, 48px) auto 0;
  padding: 0 5%;
}

.home-features-heading {
  margin-bottom: 18px;
}

.home-features-heading h2 {
  margin: 0;
  color: var(--home-text-strong);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.home-features-heading p {
  margin: 8px 0 0;
  color: var(--home-text-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

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

.home-feature-card {
  --feature-accent: #22c55e;
  position: relative;
  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 24px;
  padding: 24px 24px 26px;
  min-height: 212px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.025);
  overflow: hidden;
  z-index: 1;
}

.home-feature-card--green {
  --feature-accent: #27b762;
}

.home-feature-card--orange {
  --feature-accent: #ff7d2d;
}

.home-feature-card--blue {
  --feature-accent: #2b9ff5;
}

.home-feature-card--purple {
  --feature-accent: #8b5cf6;
}

.home-feature-card:hover {
  transform: translateY(-3px);
  border-color: #dce2ea;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.home-feature-card::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--feature-accent);
}

.home-feature-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: transparent;
  color: var(--feature-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.3s ease;
}

.home-feature-card:hover .home-feature-icon {
  transform: translateY(-2px) scale(1.03);
}

.home-feature-icon .material-icons-round {
  font-size: 28px;
}

.home-feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: center;
}

.home-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 18px;
}

.home-feature-card h3 {
  margin: 0;
  color: var(--home-text-strong);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.home-feature-card p {
  margin: 0;
  color: var(--home-text-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.012em;
}

@media (max-width: 979px) {
  .home-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .home-feature-card {
    min-height: 198px;
    padding: 22px 22px 24px;
    border-radius: 22px;
  }
}

@media (max-width: 767px) {
  .home-features {
    margin-top: 22px;
  }

  .home-features-heading {
    margin-bottom: 14px;
  }

  .home-features-heading h2 {
    font-size: 32px;
    line-height: 1;
  }

  .home-features-heading p {
    margin-top: 6px;
    font-size: 14px;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-feature-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 118px;
    padding: 16px 18px 16px 14px;
    border-radius: 20px;
    gap: 14px;
    align-items: center;
    justify-content: start;
    overflow: hidden;
  }

  .home-feature-card::before {
    left: auto;
    right: 18px;
    bottom: 16px;
    width: 26px;
    height: 3px;
  }

  .home-feature-icon {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 78px;
    height: 78px;
    border-radius: 0;
    flex-shrink: 0;
    align-self: center;
    justify-self: center;
  }

  .home-feature-card:hover .home-feature-icon,
  .home-feature-card:active .home-feature-icon,
  .home-feature-card:focus-visible .home-feature-icon {
    transform: scale(1.04) rotate(-3deg);
  }

  .home-feature-icon .material-icons-round {
    font-size: 24px;
  }

  .home-feature-copy {
    min-width: 0;
    gap: 6px;
    width: 100%;
    padding: 0 34px 0 0;
    align-items: flex-start;
    text-align: left;
  }

  .home-feature-card h3 {
    width: 100%;
    max-width: none;
    font-size: 18px;
    line-height: 1.1;
  }

  .home-feature-card p {
    width: 100%;
    max-width: none;
    font-size: 13.4px;
    line-height: 1.38;
  }
}

@media (max-width: 479px) {
  .home-features {
    padding: 0 12px;
  }

  .home-features-grid {
    gap: 10px;
  }

  .home-feature-card {
    grid-template-columns: 68px minmax(0, 1fr);
    padding: 14px 14px 14px 12px;
    border-radius: 18px;
    min-height: 106px;
    gap: 12px;
  }

  .home-feature-icon {
    width: 68px;
    height: 68px;
  }

  .home-feature-copy {
    padding-right: 26px;
  }

  .home-feature-card h3 {
    font-size: 16px;
  }

  .home-feature-card p {
    font-size: 12px;
    line-height: 1.35;
    max-width: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .home-feature-card:hover {
    transform: none;
  }

  .home-feature-card:hover .home-feature-icon {
    transform: scale(1.04) rotate(-3deg);
  }

  .home-services-preview-card:hover {
    transform: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }

  .time-card,
  .vert-controls,
  .vert-controls button {
    -webkit-tap-highlight-color: transparent;
  }

  .time-card,
  .vert-controls button {
    user-select: none;
    -webkit-user-select: none;
  }

  .vert-controls button:hover:not(:disabled),
  .vert-controls button:active:not(:disabled),
  .vert-controls button:focus,
  .vert-controls button:focus-visible {
    color: var(--home-text-strong, #333);
    background: #ffffff;
    transform: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }

  .time-card.hover-outline:hover,
  .time-card.hover-outline:active,
  .time-card.hover-outline.active {
    border-color: #e5e7eb;
    transform: none;
    box-shadow: none;
  }

  .home-action-card:hover .home-action-card-arrow,
  .home-gallery-nav:hover,
  .hero-gallery-prev:hover,
  .hero-gallery-next:hover {
    transform: none;
  }
}

/* ==========================================
   ГЛАВНАЯ: СКИДКИ И CASHBACK
========================================== */
.home-savings {
  max-width: 1300px;
  margin: 20px auto 0;
  padding: 0 5%;
}

.home-savings-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(22px, 3.2vw, 36px);
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.home-savings-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 520px;
}

.home-savings-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.home-savings-eyebrow .material-icons-round {
  font-size: 18px;
}

.home-savings-copy h2 {
  margin: 16px 0 0;
  color: var(--home-text-strong);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.home-savings-copy p {
  margin: 14px 0 0;
  max-width: 45ch;
  color: var(--home-text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.home-savings-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.home-savings-link:hover,
.home-savings-link:focus-visible {
  transform: translateY(-2px);
  background: #020617;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.home-savings-link .material-icons-round {
  font-size: 18px;
}

.home-savings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.home-savings-card {
  position: relative;
  min-width: 0;
  min-height: 190px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-savings-card:hover,
.home-savings-card:focus-visible {
  transform: translateY(-3px);
  border-color: #d1d5db;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.home-savings-card img {
  display: block;
  width: 100%;
  height: 122px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  clip-path: inset(0 round 24px);
}

.home-savings-card-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.home-savings-card-title {
  display: block;
  margin-top: 12px;
  color: var(--home-text-strong);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

@media (max-width: 979px) {
  .home-savings-shell {
    grid-template-columns: 1fr;
  }

  .home-savings-copy {
    max-width: none;
  }

  .home-savings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-savings {
    margin-top: 14px;
  }

  .home-savings-shell {
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .home-savings-copy h2 {
    font-size: 28px;
    line-height: 1.02;
  }

  .home-savings-copy p {
    font-size: 14px;
  }

  .home-savings-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-savings-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    min-height: 112px;
    padding: 10px;
    border-radius: 24px;
    gap: 12px;
  }

  .home-savings-card img {
    height: 92px;
    border-radius: 20px;
    clip-path: inset(0 round 20px);
  }

  .home-savings-card-badge {
    top: 18px;
    left: 18px;
    min-height: 26px;
    font-size: 11px;
  }

  .home-savings-card-title {
    margin-top: 0;
    font-size: 17px;
  }
}

@media (max-width: 479px) {
  .home-savings {
    padding: 0 12px;
  }

  .home-savings-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .home-savings-link {
    width: 100%;
  }

  .home-savings-card {
    grid-template-columns: 98px minmax(0, 1fr);
    min-height: 102px;
    border-radius: 22px;
  }

  .home-savings-card img {
    height: 82px;
    border-radius: 18px;
    clip-path: inset(0 round 18px);
  }

  .home-savings-card-title {
    font-size: 15px;
    letter-spacing: -0.02em;
  }
}

/* ==========================================
   ГЛАВНАЯ: РАЗДЕЛИТЕЛЬ СЕРВИСОВ
========================================== */
.home-services-divider {
  max-width: 1300px;
  margin: 26px auto 0;
  padding: 0 5%;
}

.home-services-divider-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.home-services-divider-shell::before,
.home-services-divider-shell::after {
  content: "";
  display: block;
  width: min(100%, 136px);
  height: 1px;
  flex: 1 1 136px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.12) 100%);
}

.home-services-divider-shell::after {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.12) 0%, rgba(17, 24, 39, 0) 100%);
}

.home-services-divider-shell h2 {
  margin: 0;
  padding: 0 2px;
  color: var(--home-text-strong);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
}

@media (max-width: 767px) {
  .home-services-divider {
    margin-top: 18px;
  }

  .home-services-divider-shell {
    gap: 12px;
  }

  .home-services-divider-shell::before,
  .home-services-divider-shell::after {
    flex-basis: 56px;
  }

  .home-services-divider-shell h2 {
    font-size: 24px;
  }
}

/* ==========================================
   ГЛАВНАЯ: ПРЕВЬЮ УСЛУГ
========================================== */
.home-services-preview {
  max-width: 1300px;
  margin: 24px auto 0;
  padding: 0 5%;
}

.home-services-divider#homeServices {
  scroll-margin-top: calc(var(--flexlast-header-height, 132px) + 24px);
}

.home-services-preview-shell {
  padding: 0;
}

.home-services-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-services-preview-card {
  display: block;
  position: relative;
  height: 256px;
  min-height: 256px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-services-preview-card--cargo {
  overflow: hidden;
  padding-right: 206px;
}

.home-services-preview-card--express {
  overflow: hidden;
  padding-right: 248px;
}

.home-services-preview-card--moving {
  overflow: hidden;
  padding-right: 272px;
}

.home-services-preview-card--loaders {
  overflow: hidden;
  padding-right: 226px;
}

.home-services-preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 184, 64, 0.18);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.home-services-preview-card:focus-visible {
  outline: 3px solid rgba(0, 184, 64, 0.28);
  outline-offset: 3px;
  transform: translateY(-3px);
  border-color: rgba(0, 184, 64, 0.22);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.home-services-preview-card h3 {
  margin: 0;
  color: var(--home-text-strong);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-services-preview-card p {
  margin: 12px 0 0;
  max-width: 34ch;
  color: var(--home-text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.home-services-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-services-preview-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f6f7f8;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.home-business-teaser {
  max-width: 1300px;
  margin: 14px auto 0;
  padding: 0 5%;
}

.home-business-teaser-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 292px;
  padding: clamp(34px, 4.2vw, 54px) clamp(40px, 5.2vw, 72px) clamp(34px, 4.2vw, 54px) 32px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.home-business-teaser-copy {
  min-width: 0;
}

.home-business-teaser h2 {
  margin: 0;
  max-width: 12ch;
  color: #111827;
  font-size: clamp(32px, 3.05vw, 46px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-business-teaser p {
  max-width: 44ch;
  margin: 14px 0 0;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.home-business-teaser-actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
  max-width: 460px;
}

.home-business-teaser-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  flex: 1 1 0;
  min-height: 50px;
  padding: 0 18px 0 24px;
  border-radius: 999px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.home-business-teaser-button .material-icons-round {
  font-size: 22px;
  line-height: 1;
}

.home-business-teaser-button--primary {
  background: #1d1d1b;
  color: #ffffff;
}

.home-business-teaser-button--secondary {
  background: #f5f4f2;
  color: #111827;
}

.home-business-teaser-button:hover,
.home-business-teaser-button:focus-visible {
  transform: translateY(-1px);
}

.home-business-teaser-button--primary:hover,
.home-business-teaser-button--primary:focus-visible {
  background: #111827;
  color: #ffffff;
}

.home-business-teaser-button--secondary:hover,
.home-business-teaser-button--secondary:focus-visible {
  background: #ecebea;
  color: #111827;
}

.home-business-teaser-button:focus-visible {
  outline: 3px solid rgba(0, 184, 64, 0.22);
  outline-offset: 3px;
}

.home-business-teaser-media {
  position: relative;
  justify-self: end;
  width: min(100%, 640px);
  max-width: 100%;
  aspect-ratio: 5 / 3;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  transform: translateX(clamp(34px, 3.4vw, 58px));
}

.home-business-teaser-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.25);
  transform-origin: center right;
}

@media (max-width: 760px) {
  .home-business-teaser {
    margin-top: 12px;
    padding: 0 14px;
  }

  .home-business-teaser-shell {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .home-business-teaser h2 {
    max-width: none;
    font-size: 28px;
    line-height: 1.04;
  }

  .home-business-teaser p {
    max-width: none;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .home-business-teaser-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .home-business-teaser-button {
    min-width: 0;
    min-height: 46px;
    padding: 0 12px 0 15px;
    gap: 8px;
    font-size: 14px;
  }

  .home-business-teaser-media {
    width: 100%;
    aspect-ratio: 5 / 3;
    justify-self: stretch;
    transform: none;
  }

  .home-business-teaser-image {
    transform: scale(1.1);
    transform-origin: center;
  }
}

.home-service-links {
  max-width: 1300px;
  margin: 14px auto 0;
  padding: 0 5%;
}

.home-service-links--local .home-service-links-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.home-service-links-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #eef1f5;
}

.home-service-links-media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.home-service-links-media.hero-upload-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 46%),
    #eef1f5;
  pointer-events: none;
}

.home-service-links-media.hero-upload-placeholder.has-test-image::before {
  display: none;
}

.home-service-links-media .hero-placeholder-upload-image {
  z-index: 1;
}

.home-service-links-media .hero-gallery-upload-button {
  z-index: 2;
}

@media (min-width: 761px) {
  .home-service-links--local .home-service-links-media img {
    width: calc(100% + 48px);
    transform: translateX(-24px);
  }
}

.home-service-links-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: clamp(22px, 2.45vw, 34px) clamp(30px, 3vw, 42px);
  border-radius: 0;
  background: #ffffff;
  color: #111827;
  box-shadow: none;
}

.home-service-links h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 1.95vw, 32px);
  font-weight: 820;
  line-height: 1.03;
  letter-spacing: 0;
}

.home-service-links-copy p {
  max-width: 54ch;
  margin: 11px 0 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.46;
  letter-spacing: 0;
}

.home-service-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 14px;
  padding-top: 0;
}

.home-service-links-list a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f6f7f8;
  border: 1px solid #e5e7eb;
  color: #1f2937;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.home-service-links-list a:hover,
.home-service-links-list a:focus-visible {
  background: #f0fff4;
  border-color: rgba(0, 184, 64, 0.24);
  color: #111827;
}

.home-service-links-list a:focus-visible {
  outline: 3px solid rgba(0, 184, 64, 0.22);
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .home-service-links {
    margin-top: 12px;
  }

  .home-service-links--local .home-service-links-shell {
    display: block;
    min-height: 0;
    border-radius: 24px;
  }

  .home-service-links-media {
    width: 100%;
    height: 230px;
    min-height: 230px;
    border-radius: 0;
  }

  .home-service-links-media img {
    min-height: 0;
  }

  .home-service-links-card {
    width: 100%;
    margin: 0;
    padding: 22px 20px 24px;
    border-radius: 0;
  }

  .home-service-links h2 {
    font-size: 27px;
    line-height: 1.06;
  }

  .home-service-links-copy p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.52;
  }

  .home-service-links-list {
    gap: 8px;
    margin-top: 16px;
  }

  .home-service-links-list a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }
}

.home-services-preview-boxes {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 156px;
  height: 124px;
  pointer-events: none;
}

.home-services-preview-box {
  position: absolute;
  display: block;
  border-radius: 10px;
  background: linear-gradient(180deg, #f3e6cf 0%, #e3c9a6 100%);
  border: 1px solid rgba(165, 128, 79, 0.22);
  box-shadow:
    0 16px 28px rgba(91, 67, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.home-services-preview-box::before,
.home-services-preview-box::after {
  content: "";
  position: absolute;
  background: rgba(143, 104, 53, 0.18);
}

.home-services-preview-box::before {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.home-services-preview-box::after {
  left: 10%;
  right: 10%;
  top: 18%;
  height: 1px;
}

.home-services-preview-box--tall {
  right: 70px;
  bottom: 8px;
  width: 58px;
  height: 76px;
}

.home-services-preview-box--wide {
  right: 0;
  bottom: 0;
  width: 74px;
  height: 52px;
}

.home-services-preview-box--small {
  right: 106px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.home-services-preview-visual {
  position: absolute;
  right: 18px;
  bottom: 10px;
  pointer-events: none;
}

.home-services-preview-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.home-services-preview-visual--cargo {
  right: -24px;
  bottom: 2px;
  width: 276px;
}

.home-services-preview-visual--cargo img {
  filter: drop-shadow(0 16px 22px rgba(15, 23, 42, 0.08));
}

.home-services-preview-visual--express {
  right: 10px;
  bottom: 18px;
  width: 214px;
  opacity: 0.98;
}

.home-services-preview-visual--express img {
  filter: drop-shadow(0 20px 28px rgba(15, 23, 42, 0.08));
}

.home-services-preview-image--express-square {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.home-services-preview-visual--moving {
  right: -22px;
  bottom: 0;
  width: 318px;
}

.home-services-preview-visual--moving img {
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.08));
}

.home-services-preview-visual--loaders {
  right: -18px;
  bottom: -8px;
  width: 312px;
}

.home-services-preview-visual--loaders img {
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.08));
}

.task-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.task-panel--home {
  margin-top: clamp(38px, 5vw, 72px);
  scroll-margin-top: 150px;
}

.task-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.task-panel-title {
  margin: 0;
  color: #111827;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.task-panel-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid #edf0f4;
  border-radius: 18px;
  background: #f3f5f8;
}

.task-panel-tab {
  appearance: none;
  border: 0;
  min-width: 128px;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 14px;
  background: transparent;
  color: #737b88;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.task-panel-tab[aria-selected="true"] {
  background: #fff;
  color: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

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

.task-card {
  --task-accent: #42bb4f;
  position: relative;
  min-height: 324px;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--task-accent) 30%, #e6ebf1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%),
    radial-gradient(circle at 92% 92%, color-mix(in srgb, var(--task-accent) 16%, transparent) 0 26%, transparent 48%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.045);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.task-card:hover,
.task-card:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--task-accent) 55%, #dce4eb);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.09);
  outline: none;
}

.task-card::after {
  content: attr(data-watermark);
  position: absolute;
  right: -18px;
  bottom: -20px;
  color: color-mix(in srgb, var(--task-accent) 18%, transparent);
  font-family: "Material Icons Round";
  font-size: 128px;
  line-height: 1;
  transform: rotate(-12deg);
  pointer-events: none;
}

.task-card-title {
  position: relative;
  z-index: 1;
  min-height: 50px;
  margin: 0;
  color: #17202d;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.task-card-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 15px;
  margin: 24px 0 22px;
  padding: 0;
  color: #4b5565;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.01em;
  list-style: none;
}

.task-card-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.task-card-list li::before {
  content: "done";
  color: color-mix(in srgb, var(--task-accent) 76%, #2f9f45);
  font-family: "Material Icons Round";
  font-size: 18px;
  line-height: 1.15;
}

.task-card-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: auto;
  border: 1px solid color-mix(in srgb, var(--task-accent) 56%, #d5ead8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: color-mix(in srgb, var(--task-accent) 82%, #218f35);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.task-card-price span {
  margin-right: 5px;
  font-size: 14px;
  font-weight: 800;
}

body.home-page .task-panel--home + .home-quick-actions {
  margin-top: clamp(30px, 3.5vw, 48px);
}

body.home-page .task-panel--home + .home-quick-actions + .home-business-teaser {
  margin-top: clamp(30px, 3.5vw, 48px);
}

@media (max-width: 979px) {
  .task-panel-head {
    display: block;
  }

  .task-panel-tabs {
    width: 100%;
    margin-top: 18px;
    overflow-x: auto;
  }

  .task-panel-tab {
    flex: 0 0 auto;
  }

  .task-panel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .task-card {
    min-height: 0;
  }

  .home-services-preview-shell {
    padding: 0;
  }

  .home-services-preview-grid {
    gap: 14px;
  }

  .home-services-preview-card {
    min-height: 0;
  }

  .home-services-preview-card--cargo {
    padding-right: 180px;
  }

  .home-services-preview-card--express {
    padding-right: 234px;
  }

  .home-services-preview-card--moving {
    padding-right: 230px;
  }

  .home-services-preview-card--loaders {
    padding-right: 210px;
  }

  .home-services-preview-visual--cargo {
    right: -20px;
    bottom: 32px;
    width: 204px;
  }

  .home-services-preview-visual--express {
    right: 2px;
    bottom: -8px;
    width: 204px;
  }

  .home-services-preview-visual--moving {
    right: -30px;
    bottom: 0;
    width: 276px;
  }

  .home-services-preview-visual--loaders {
    right: 4px;
    bottom: 0;
    width: 188px;
  }
}

@media (max-width: 767px) {
  .task-panel {
    padding: 0 14px;
  }

  .task-panel--home {
    margin-top: 34px;
  }

  .task-panel-title {
    font-size: 31px;
    line-height: 1.02;
  }

  .task-panel-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 16px;
    overflow: visible;
  }

  .task-panel-tab {
    min-width: 0;
    min-height: 38px;
    padding: 0 8px;
    font-size: 12.5px;
  }

  .task-card {
    padding: 22px 22px 20px;
    border-radius: 22px;
  }

  .task-card::after {
    right: -12px;
    bottom: -18px;
    font-size: 118px;
  }

  .task-card-title {
    min-height: 0;
    font-size: 21px;
  }

  .task-card-list {
    gap: 12px;
    margin: 18px 0 20px;
    font-size: 14.5px;
  }

  .home-services-preview {
    margin-top: 16px;
  }

  .home-services-preview-shell {
    padding: 0;
  }

  .home-services-preview-grid {
    grid-template-columns: 1fr;
  }

  .home-services-preview-card {
    padding: 20px;
    border-radius: 22px;
  }

  .home-services-preview-card--cargo {
    padding-right: 20px;
  }

  .home-services-preview-card--express {
    padding-right: 20px;
  }

  .home-services-preview-card--moving {
    padding-right: 20px;
  }

  .home-services-preview-card--loaders {
    padding-right: 20px;
  }

  .home-services-preview-card h3 {
    font-size: 24px;
  }

  .home-services-preview-card p {
    margin-top: 12px;
    font-size: 13px;
  }

  .home-services-preview-boxes {
    display: none;
  }

  .home-services-preview-visual {
    display: none;
  }
}

/* ==========================================
   БЛОК ПОПУЛЯРНЫХ УСЛУГ
========================================== */
.popular-services {
  max-width: 1300px;
  margin: 16px auto 20px;
  padding: 0 5%;
}
.popular-services-shell {
  padding: 32px 30px 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.82);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.045);
  text-align: center;
}

.popular-services-shell h2 {
  margin: 0;
  max-width: none;
  color: var(--home-text-strong);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: var(--home-track-tight);
  text-wrap: balance;
}

.popular-services-title-line {
  display: inline;
}

.popular-services-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.popular-services-marquee-track,
.popular-services-tag-group {
  display: contents;
}

.popular-services-tag-group--clone {
  display: none;
}

.popular-service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f4f6f8;
  border: 1px solid #e5e7eb;
  color: var(--home-text-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.popular-services--transport .popular-service-tag {
  --popular-tag-accent: #5f82d9;
  --popular-tag-bg: #f8faff;
  --popular-tag-border: #e7edf9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px 10px 15px;
  border-radius: 999px;
  background: var(--popular-tag-bg);
  border: 1px solid var(--popular-tag-border);
  color: #4b4f59;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.popular-services--transport .popular-service-tag-icon {
  color: var(--popular-tag-accent);
  font-size: 18px;
  line-height: 1;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(1) {
  --popular-tag-accent: #5f82d9;
  --popular-tag-bg: #f8faff;
  --popular-tag-border: #e7edf9;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(2) {
  --popular-tag-accent: #9a6a46;
  --popular-tag-bg: #fbf7f4;
  --popular-tag-border: #eee3dc;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(3) {
  --popular-tag-accent: #c47746;
  --popular-tag-bg: #fff8f4;
  --popular-tag-border: #f0e2d8;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(4) {
  --popular-tag-accent: #8069d7;
  --popular-tag-bg: #f8f6ff;
  --popular-tag-border: #e9e4f8;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(5) {
  --popular-tag-accent: #6578cf;
  --popular-tag-bg: #f7f9ff;
  --popular-tag-border: #e5e9f8;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(6) {
  --popular-tag-accent: #b28b2f;
  --popular-tag-bg: #fffaf0;
  --popular-tag-border: #eee8d6;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(7) {
  --popular-tag-accent: #4b9aa2;
  --popular-tag-bg: #f3fbfc;
  --popular-tag-border: #dceff1;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(8) {
  --popular-tag-accent: #d1608d;
  --popular-tag-bg: #fff7fa;
  --popular-tag-border: #f3e1e9;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(9) {
  --popular-tag-accent: #4a9b6a;
  --popular-tag-bg: #f4fbf7;
  --popular-tag-border: #dcefe4;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(10) {
  --popular-tag-accent: #9a69d1;
  --popular-tag-bg: #fbf7ff;
  --popular-tag-border: #ecdef7;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(11) {
  --popular-tag-accent: #4a9b80;
  --popular-tag-bg: #f3fbf8;
  --popular-tag-border: #daeee6;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(12) {
  --popular-tag-accent: #5d78d0;
  --popular-tag-bg: #f7f9ff;
  --popular-tag-border: #e3e9f8;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(13) {
  --popular-tag-accent: #64748b;
  --popular-tag-bg: #f8fafc;
  --popular-tag-border: #e2e8f0;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(14) {
  --popular-tag-accent: #6378b8;
  --popular-tag-bg: #f7f9ff;
  --popular-tag-border: #e5e9f7;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(15) {
  --popular-tag-accent: #a57a42;
  --popular-tag-bg: #fbf8f2;
  --popular-tag-border: #eee5d7;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(16) {
  --popular-tag-accent: #579a73;
  --popular-tag-bg: #f5fbf7;
  --popular-tag-border: #dfeee5;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(17) {
  --popular-tag-accent: #c0636b;
  --popular-tag-bg: #fff7f7;
  --popular-tag-border: #f1e0e1;
}

.popular-services--transport .popular-services-tag-group .popular-service-tag:nth-child(18) {
  --popular-tag-accent: #68758b;
  --popular-tag-bg: #f8fafc;
  --popular-tag-border: #e2e8f0;
}

.popular-service-tag:hover {
  background: #f6fcf6;
  border-color: rgba(0, 184, 64, 0.2);
  color: #00a33a;
}

.popular-services--transport .popular-service-tag:hover {
  transform: none;
  background: var(--popular-tag-bg);
  border-color: color-mix(in srgb, var(--popular-tag-accent) 20%, var(--popular-tag-border));
  color: #3f4650;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@keyframes home-popular-tags-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--home-popular-tags-loop-distance, 0px) * -1), 0, 0);
  }
}

/* ==========================================
   БАННЕР ПРИЛОЖЕНИЯ
========================================== */
.loaders-service-types {
  max-width: 1300px;
  margin: 28px auto 0;
  padding: 0 5%;
  font-family: var(--home-font-sans, "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.loaders-service-types-shell {
  padding: 36px 32px 32px;
  background: #ffffff;
  border: 1px solid #e8e4db;
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.03);
}

.loaders-service-types-header {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.loaders-service-types-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #00a33a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.loaders-service-types-header h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: var(--home-track-tight);
  text-wrap: balance;
}

.loaders-service-types-header p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.45;
  text-wrap: balance;
}

.loaders-service-types-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loaders-service-type-card {
  min-height: 148px;
  padding: 22px;
  background: #fbfaf7;
  border: 1px solid #ece7dd;
  border-radius: 20px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.loaders-service-type-card:hover {
  background: #ffffff;
  border-color: #ddd6c8;
}

.loaders-service-type-card h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.loaders-service-type-card p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.55;
  max-width: 28ch;
}

.home-app-banner {
  max-width: 1300px;
  margin: 28px auto 0;
  padding: 0 5%;
}

.home-app-banner-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 540px) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 32px);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 184, 64, 0.1) 0%, transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(59, 130, 246, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.home-app-banner-shell::before,
.home-app-banner-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.home-app-banner-shell::before {
  top: -160px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 64, 0.12) 0%, rgba(0, 184, 64, 0) 72%);
}

.home-app-banner-shell::after {
  inset: auto auto -180px -180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0) 70%);
}

.home-app-banner-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
  min-width: 0;
}

.home-app-banner-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 184, 64, 0.14);
  background: linear-gradient(180deg, rgba(0, 184, 64, 0.1) 0%, rgba(0, 184, 64, 0.06) 100%);
  color: #008d33;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-app-banner-copy h2,
.home-app-banner-title {
  margin: 16px 0 0;
  max-width: min(15.5ch, calc(100% - 10px)) !important;
  width: 100%;
  padding-right: 10px;
  color: var(--home-text-strong);
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--home-track-tight);
  white-space: normal !important;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  word-break: normal;
}

.home-app-banner-title-break {
  display: block;
}

.home-app-banner-copy p {
  margin: 14px 0 0;
  max-width: min(34ch, calc(100% - 10px));
  width: 100%;
  padding-right: 10px;
  box-sizing: border-box;
  color: var(--home-text-body);
  font-size: 17px;
  line-height: 1.58;
}

.home-app-banner-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 18px;
}

.home-app-banner-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  padding: 0;
  border-radius: 14px;
  border: 0;
  background: transparent;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  overflow: visible;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.home-app-banner-store:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.04);
}

.home-app-banner-store:focus-visible {
  outline: 3px solid rgba(0, 184, 64, 0.22);
  outline-offset: 2px;
}

.home-app-banner-store img {
  display: block;
  width: auto;
  height: 48px;
}

.home-app-banner-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 18px);
  min-height: clamp(310px, 28vw, 430px);
  padding: 0 8px;
  isolation: isolate;
}

.home-app-banner-visual::before,
.home-app-banner-visual::after {
  content: none;
}

.home-app-banner-phone {
  display: block;
  width: clamp(240px, 19vw, 330px);
  max-width: none;
  position: relative;
  object-fit: contain;
  object-position: center;
  clip-path: none;
  filter: drop-shadow(0 22px 34px rgba(15, 23, 42, 0.2));
  transition: transform 0.28s ease;
}

.home-app-banner-phone:first-child {
  z-index: 2;
  transform: translate(20px, 0) scale(2.52);
}

.home-app-banner-phone:last-child {
  z-index: 1;
  transform: translate(-20px, 0) scale(2.52);
}

@media (max-width: 1439px) {
  .home-app-banner-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 24px;
  }

  .home-app-banner-copy {
    max-width: min(640px, 100%);
  }

  .home-app-banner-copy h2,
  .home-app-banner-title {
    max-width: min(15ch, calc(100% - 8px)) !important;
    padding-right: 8px;
  }

  .home-app-banner-copy p {
    max-width: min(34ch, calc(100% - 8px));
    padding-right: 8px;
  }

  .home-app-banner-visual {
    justify-content: center;
    min-height: 340px;
    margin-top: 0;
  }

  .home-app-banner-phone:first-child {
    transform: translate(14px, 0) scale(2.18);
  }

  .home-app-banner-phone:last-child {
    transform: translate(-14px, 0) scale(2.18);
  }
}

@media (max-width: 767px) {
  .home-app-banner {
    margin-top: 18px;
    padding: 0 14px;
  }

  .home-app-banner-shell {
    gap: 14px;
    padding: 20px 16px;
    border-radius: 24px;
  }

  .home-app-banner-copy {
    max-width: 100%;
    text-align: left;
  }

  .home-app-banner-kicker {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .home-app-banner-copy h2,
  .home-app-banner-title {
    margin-top: 14px;
    max-width: calc(100% - 4px) !important;
    padding-right: 4px;
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .home-app-banner-copy p {
    margin-top: 12px;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    font-size: 15px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .home-app-banner-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 14px;
  }

  .home-app-banner-store {
    min-height: 0;
    min-width: 0;
    padding: 0;
    border-radius: 14px;
  }

  .home-app-banner-store img {
    width: auto;
    height: 44px;
  }

  .home-app-banner-visual {
    min-height: 250px;
    gap: 6px;
    margin-top: 0;
  }

  .home-app-banner-phone {
    width: clamp(184px, 46vw, 248px);
  }

  .home-app-banner-phone:first-child {
    transform: translate(8px, 0) scale(1.78);
  }

  .home-app-banner-phone:last-child {
    transform: translate(-8px, 0) scale(1.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-app-banner-store,
  .home-app-banner-phone {
    transition: none;
  }
}

/* ==========================================
   ГЛАВНАЯ: FAQ
========================================== */
.home-faq {
  max-width: 1300px;
  margin: 14px auto 0;
  padding: 0 5%;
}

.home-faq-shell {
  padding: 28px;
  border-radius: 32px;
  background: #fcfcfa;
  border: 1px solid #e8e8e1;
}

.home-faq .home-faq-shell {
  background-color: #ffffff;
}

.home-faq-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.home-faq-sidebar h2 {
  margin: 0;
  color: var(--home-text-strong);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--home-track-tight);
  text-wrap: balance;
}

.home-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.home-faq-tab {
  border: 1px solid #e7e7e3;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  background: #ffffff;
  color: var(--home-text-muted);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-faq-tab:hover {
  border-color: #d8d8d2;
  color: var(--home-text-body);
}

.home-faq-tab.is-active {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.home-faq-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-faq-panel[hidden] {
  display: none !important;
}

.home-faq-item {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e8e8e1;
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.home-faq-item.is-open {
  border-color: rgba(0, 184, 64, 0.26);
  background: #fdfefd;
}

.home-faq-question {
  width: 100%;
  min-height: 60px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  color: var(--home-text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.home-faq-question span:first-child {
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.home-faq-icon {
  flex: 0 0 auto;
  font-size: 20px;
  color: #6b7280;
  transition: transform 0.22s ease;
}

.home-faq-item.is-open .home-faq-icon {
  transform: rotate(180deg);
}

.home-faq-answer {
  padding: 0 20px 18px;
}

.home-faq-answer p {
  max-width: 56ch;
  color: var(--home-text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

/* ==========================================
   СПИСОК НАПРАВЛЕНИЙ ДОСТАВКИ
========================================== */
.home-services-showcase {
  max-width: 1300px;
  margin: 24px auto 0;
  padding: 0 5%;
}

.home-services-showcase-shell {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.home-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.home-service-row--reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.home-service-media {
  position: relative;
  min-height: 360px;
  padding: 20px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
}

.home-service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.75), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 24%);
  pointer-events: none;
}

.home-service-media--cargo {
  background: linear-gradient(180deg, #dff3e4 0%, #eef7ef 50%, #ffffff 100%);
}

.home-service-media--express {
  background: linear-gradient(180deg, #dbeafe 0%, #edf5ff 45%, #ffffff 100%);
}

.home-service-media--moving {
  background: linear-gradient(180deg, #efe6dc 0%, #f6efe8 44%, #ffffff 100%);
}

.home-service-media--loaders {
  background: linear-gradient(180deg, #f3eadf 0%, #f8f2eb 46%, #ffffff 100%);
}

.home-service-visual {
  position: absolute;
  inset: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 30px rgba(17, 17, 17, 0.08));
  user-select: none;
  pointer-events: none;
}

.home-service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  width: min(100%, 560px);
  padding-right: 8px;
}

.home-service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #7a7a7a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-service-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #cfcfcf;
}

.home-service-copy h3 {
  margin: 0;
  max-width: 11ch;
  color: var(--home-text-strong);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: pretty;
}

.home-service-copy h3.home-service-title--wide {
  max-width: none;
  white-space: nowrap;
}

.home-service-copy p {
  margin: 14px 0 0;
  max-width: 32ch;
  color: var(--home-text-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.home-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  max-width: 520px;
}

.home-service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fafafa;
  border: 1px solid #dddddd;
  color: #666666;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.home-service-row--reverse .home-service-media {
  order: 2;
}

.home-service-row--reverse .home-service-copy {
  order: 1;
}

/* ==========================================
   АДАПТИВ (МОБИЛЬНАЯ ВЕРСИЯ)
========================================== */
@media (max-width: 979px) {
  body { padding-top: 86px; }
  .delivery-categories { padding: 0 14px; margin-top: 44px; }
  .delivery-categories-shell { padding: 30px 20px 28px; border-radius: 28px; }
  .delivery-categories-shell h2 { font-size: 34px; line-height: 0.96; max-width: 9ch; }
  .delivery-categories-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
  .delivery-category-card-top { min-height: 270px; padding: 22px; border-radius: 24px; }
  .delivery-category-card-copy { max-width: 60%; gap: 12px; }
  .delivery-category-kicker { min-height: 34px; padding: 0 13px; font-size: 11px; }
  .delivery-category-card-top h3 { font-size: 30px; line-height: 0.94; max-width: 7ch; }
  .delivery-category-card > p { font-size: 16px; line-height: 1.3; max-width: 18ch; }
  .delivery-category-tags { gap: 8px; max-width: 100%; }
  .delivery-category-tag { min-height: 34px; padding: 0 12px; font-size: 13px; }
  .delivery-category-image { width: 54%; height: 38%; right: 8px; bottom: 10px; }
  .delivery-category-image--cargo { width: 54%; height: 40%; right: 0; bottom: 8px; }
  .delivery-category-image--express { width: 58%; height: 42%; right: -6px; bottom: 8px; }
  .delivery-category-image--moving { width: 60%; height: 40%; right: 0; bottom: 8px; }
  .services-page-main { padding-top: 24px; }
  .services-page-hero { padding: 0 14px; }
  .services-page-hero-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 22px;
    border-radius: 28px;
  }
  .services-page-copy h1 { max-width: 9ch; font-size: clamp(36px, 10vw, 54px); }
  .services-page-copy p { max-width: 28ch; font-size: 16px; }
  .services-page-actions { width: 100%; }
  .services-page-primary-link,
  .services-page-secondary-link {
    flex: 1 1 100%;
    min-height: 48px;
  }
  .services-page-summary { grid-template-columns: 1fr; }
  .services-page-summary-card { min-height: 0; }
  .business-page-main {
    padding: 24px 14px 0;
    gap: 18px;
  }
  .business-hero-shell,
  .business-solutions,
  .business-proof,
  .business-process,
  .business-cta {
    padding: 26px 22px;
    border-radius: 28px;
  }
  .business-hero-shell,
  .business-proof,
  .business-cta {
    grid-template-columns: 1fr;
  }
  .business-hero-shell {
    gap: 18px;
  }
  .business-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(38px, 10vw, 58px);
  }
  .business-hero-copy p,
  .business-section-heading p,
  .business-proof-copy p,
  .business-cta-copy p {
    max-width: 100%;
    font-size: 16px;
  }
  .business-hero-actions,
  .business-cta-actions {
    width: 100%;
  }
  .business-primary-link,
  .business-secondary-link {
    flex: 1 1 100%;
    min-height: 48px;
  }
  .business-metrics,
  .business-signal-grid,
  .business-solution-grid,
  .business-proof-grid,
  .business-process-grid {
    grid-template-columns: 1fr;
  }
  .business-signal-card--photo {
    min-height: 240px;
  }
  .business-signal-card strong {
    max-width: 15ch;
    font-size: 28px;
  }
  .business-section-heading {
    gap: 12px;
    margin-bottom: 18px;
  }
  .business-section-heading h2,
  .business-proof-copy h2,
  .business-cta-copy h2 {
    max-width: 12ch;
    font-size: clamp(32px, 8vw, 46px);
  }
  .business-solution-card h3,
  .business-process-card h3 {
    font-size: 24px;
  }
  .business-proof-card,
  .business-process-card,
  .business-solution-card,
  .business-signal-card {
    border-radius: 24px;
  }
  .business-proof-card,
  .business-process-card {
    min-height: 0;
  }
  /* Адаптив для услуг */
  .loaders-service-types { padding: 0 14px; margin-top: 28px; }
  .loaders-service-types-shell { padding: 28px 20px 20px; border-radius: 24px; }
  .loaders-service-types-header h2 { font-size: 30px; max-width: 11ch; margin-left: auto; margin-right: auto; }
  .loaders-service-types-grid { gap: 10px; }
  .loaders-service-type-card { min-height: 0; padding: 18px; border-radius: 18px; }
  .loaders-service-type-card h3 { font-size: 20px; }
  .loaders-service-type-card p { font-size: 14px; line-height: 1.5; }
  .popular-services,
  .home-service-links { padding: 0 14px; margin-top: 28px; }
  .popular-services-shell { padding: 24px 20px 20px; border-radius: 24px; }
  .popular-services-shell h2 { font-size: 30px; line-height: 30px; max-width: 11ch; }
  .popular-services-tags { margin-top: 26px; gap: 10px; }
  .popular-service-tag { min-height: 40px; padding: 10px 14px; font-size: 13px; }
  .home-services-showcase { padding: 0 14px; margin-top: 18px; }
  .home-services-showcase-shell { gap: 36px; }
  .home-service-row,
  .home-service-row--reverse { grid-template-columns: 1fr; gap: 18px; }
  .home-service-row--reverse .home-service-media,
  .home-service-row--reverse .home-service-copy { order: initial; }
  .home-service-media { min-height: 260px; padding: 14px; border-radius: 24px; }
  .home-service-visual { inset: 14px; }
  .home-service-copy { width: 100%; padding-right: 0; }
  .home-service-copy h3 { max-width: none; }
  .home-service-copy h3.home-service-title--wide { white-space: normal; }
  .home-service-copy p { max-width: 32ch; margin-top: 12px; font-size: 15px; line-height: 1.45; }
  .home-service-tags { margin-top: 16px; max-width: 100%; }
  .home-service-tags span { min-height: 30px; font-size: 12px; }
  .nav-links { display: none; }
  .login-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    font-size: 0;
    position: relative;
    border: 1px solid #d7deea;
    background: #f8fafc;
  }
  .login-btn::before {
    content: "☰";
    font-size: 22px;
    color: #1f2937;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
  }

  .hero {
    max-width: 100%;
    padding: 14px 10px 30px;
    gap: 14px;
    flex-direction: column-reverse;
  }
  .hero-left,
  .hero-right { width: 100%; }
  .hero-left { padding-top: 0; }
  .hero-right { margin-top: 0; }

  .loaders-hero-v2 {
    width: 100%;
    padding-top: 0;
  }

  .loaders-hero-v2-title {
    font-size: clamp(34px, 8vw, 54px);
  }

  .loaders-hero-v2-copy-layout {
    display: block;
  }

  .loaders-hero-v2-proof {
    grid-template-columns: 1fr;
  }

  .hero-spotlight {
    width: 100%;
    gap: 18px;
    transform: none;
  }
  .hero-spotlight-copy {
    gap: 8px;
  }
  .hero-spotlight-copy h1 {
    max-width: 10ch;
    font-size: clamp(34px, 8vw, 54px);
  }
  .hero-spotlight-accent {
    font-size: clamp(18px, 3.4vw, 26px);
  }
  .hero-spotlight-media,
  .hero-spotlight-image {
    min-height: 320px;
  }
  .hero-spotlight-badge {
    max-width: 250px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 18px;
  }
  .hero-spotlight-badge-main {
    top: 54px;
    right: 16px;
  }

  .hero-spotlight-support-visual {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  body.home-page--de .hero-spotlight-support-visual--carousel {
    width: min(100%, 540px);
    max-width: 540px;
    padding-bottom: 0;
  }

  body.home-page--de .hero-gallery--de-spotlight {
    max-width: 540px;
    height: clamp(320px, 64vw, 390px);
    min-height: 320px;
  }

  body.home-page--de .hero-gallery--de-spotlight .hero-gallery-viewport,
  body.home-page--de .hero-spotlight-gallery-card {
    border-radius: 16px;
  }

  body.home-page--de .hero-spotlight-gallery-card {
    grid-template-rows: minmax(158px, 1fr) auto;
  }

  body.home-page--de .hero-spotlight-gallery-media {
    min-height: 158px;
  }

  body.home-page--de .hero-spotlight-gallery-copy {
    gap: 8px;
    padding: 14px 16px 30px;
  }

  body.home-page--de .hero-spotlight-gallery-copy::before {
    top: -14px;
    height: 28px;
  }

  body.home-page--de .hero-spotlight-gallery-title {
    max-width: none;
    font-size: clamp(24px, 5.2vw, 29px);
    line-height: 1.04;
    letter-spacing: -0.038em;
  }

  body.home-page--de .hero-spotlight-gallery-description {
    max-width: none;
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.42;
    letter-spacing: -0.01em;
  }

  body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-copy {
    gap: 7px;
    padding: 13px 16px 26px;
  }

  body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-title {
    max-width: none;
    font-size: clamp(28px, 5.6vw, 34px);
    line-height: 0.98;
    letter-spacing: -0.038em;
  }

  body.home-page--de .hero-spotlight-gallery-card--pink .hero-spotlight-gallery-description {
    max-width: none;
    font-size: clamp(14px, 3.1vw, 16px);
    line-height: 1.2;
    letter-spacing: -0.012em;
  }

  body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dots--pill {
    gap: 8px;
  }

  body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot {
    width: 16px;
    height: 4px;
  }

  body.home-page--de .hero-gallery--de-spotlight .hero-gallery-dot.is-active {
    width: 34px;
    height: 4px;
  }

  body.home-page--de .hero-gallery--de-spotlight .hero-gallery-nav--de-below {
    display: none;
  }

  body.home-page--de .hero-gallery-slide-cta {
    left: 20px;
    bottom: 18px;
    min-height: 50px;
    max-width: calc(100% - 40px);
    padding: 0 20px;
    border-radius: 13px;
    font-size: 14px;
  }

  body.home-page--de .hero-gallery-slide-cta--loaders {
    left: 28px;
    bottom: 10px;
    width: 96px;
    height: 96px;
    min-height: 0;
    padding: 10px;
    border-radius: 20px;
    font-size: 12.2px;
    line-height: 1.05;
  }

  body.home-page--de .hero-gallery-slide-cta--loaders .hero-gallery-slide-cta-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 16px;
  }

  .hero-gallery {
    width: 100%;
    max-width: 100%;
    min-height: clamp(360px, 58vh, 490px);
  }
  .hero-gallery-viewport {
    min-height: 0;
  }
  .hero-gallery-slide {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-slide-copy {
    flex: 0 0 auto;
    height: auto;
    display: block;
  }
  .hero-slide-copy h2 {
    max-width: 18ch;
    min-height: 0;
    font-size: clamp(30px, 6vw, 42px);
  }
  .hero-slide-copy p {
    font-size: clamp(16px, 3.1vw, 24px);
    margin-top: 4px;
  }
  .hero-slide-media {
    min-height: 236px;
    border-radius: 30px;
  }
  .hero-slide-chip {
    padding: 6px 10px;
    max-width: min(52%, 214px);
  }
  .hero-slide-chip-yellow {
    font-size: clamp(11px, 2vw, 13px);
  }
  .hero-slide-chip-green,
  .hero-slide-chip-white {
    font-size: clamp(10px, 1.7vw, 12px);
  }
  .hero-slide-chip-right {
    top: 48px;
  }
  .hero-gallery-dot {
    width: 16px;
    height: 4px;
  }
  .hero-gallery-dot.is-active {
    width: 30px;
  }
  .hero-gallery-nav {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .widget-top,
  .widget-bottom {
    border-radius: 22px;
    padding: 10px;
  }
  .widget-top { padding-bottom: 32px; }
  .widget-bottom {
    margin-top: -24px;
    gap: 12px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.03), 0 8px 22px rgba(0,0,0,0.08);
  }
  .card { border-radius: 18px; padding: 12px; }
  .two-col-row { gap: 8px; }
  .radio-card { border-radius: 14px; padding: 12px; }
  .checkout-row .side-btn { width: 68px; height: 68px; border-radius: 18px; }
  .checkout-btn {
    height: 68px;
    border-radius: 18px;
    gap: 2px;
  }
  .checkout-label { font-size: 16px; }
  .total-price { font-size: 25px; }

  .site-footer { padding: 10px 14px 16px; margin-top: 24px; }
  .footer-container { gap: 18px; }
  .footer-container--compact { gap: 10px; }
  .footer-top { padding: 10px 0 12px; }
  .footer-top--with-app { justify-content: center; }
  .footer-top,
  .footer-middle,
  .footer-bottom-actions,
  .footer-copyright { flex-direction: column; align-items: center; gap: 14px; }
  .footer-nav { justify-content: center; flex-wrap: wrap; gap: 12px 16px; }
  .footer-top--with-app .footer-nav { justify-content: center; }
  .moving-footer-app--inline { width: 100%; justify-content: center; }
  .moving-footer-app--inline .app-badges { justify-content: center; }
  .opt-out-box { width: 100%; flex-wrap: wrap; }
}

/* ==========================================
   МОДАЛКА: ОПЦИИ К ЗАКАЗУ
========================================== */
.options-modal-content {
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
  animation: slideUp 0.3s forwards;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.options-title { font-size: 24px; font-weight: 800; line-height: 1.1; letter-spacing: var(--home-track-snug); color: var(--home-text-strong); padding: 28px 28px 20px; margin: 0; }
.options-body { padding: 0 28px 20px; overflow-y: auto; overflow-x: clip; display: flex; flex-direction: column; gap: 20px; flex: 1; overscroll-behavior-x: none; }

/* Текстовое поле */
.options-comment { width: 100%; border: 1px solid #e2e8f0; border-radius: 16px; padding: 16px; font-size: 15px; outline: none; resize: vertical; min-height: 80px; font-family: inherit; transition: 0.2s;}
.options-comment::placeholder { color: #888; font-weight: 400;}
.options-comment:focus { border-color: #6DB361; }

.address-details-trigger {
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  padding: 7px 10px 7px 12px;
  border: 1px solid #e7ebf0;
  border-radius: 18px;
  background: #f8f9fb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.address-details-trigger:hover {
  border-color: #d6dde6;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 8px 18px rgba(16,24,40,0.06);
}
.address-details-trigger.is-filled {
  border-color: rgba(89,191,70,0.32);
  background: #f7fbf6;
}
.address-details-icon,
.address-details-arrow {
  flex: 0 0 auto;
}
.address-details-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #59bf46;
  background: rgba(89,191,70,0.1);
}
.address-details-trigger.is-filled .address-details-icon {
  color: #ffffff;
  background: #59bf46;
}
.address-details-arrow {
  margin-left: auto;
  font-size: 18px;
  color: #98a2b3;
}
.address-details-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex: 1;
}
.address-details-label {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  color: #344054;
  white-space: nowrap;
}
.address-details-value {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: #667085;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.address-details-trigger.is-filled .address-details-value {
  color: #2d3748;
}
.address-details-trigger.is-empty .address-details-value {
  color: #7a8493;
}

.address-details-body {
  gap: 18px;
}
.address-details-title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: var(--home-track-snug);
  color: var(--home-text-strong);
}
.address-details-shell {
  width: min(94vw, 1260px);
  max-width: 1260px;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  gap: 8px;
  pointer-events: none;
  animation: slideUp 0.3s forwards;
  overscroll-behavior: contain;
}
.address-details-spacer {
  flex: 1 1 auto;
  min-width: 0;
}
.address-details-panel {
  pointer-events: auto;
  justify-content: space-between;
}
.address-details-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.address-details-bottom {
  padding: 10px 0 env(safe-area-inset-bottom);
  box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.04);
}
.address-details-target {
  padding: 16px 18px;
  margin-bottom: 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f6fbf3 0%, #f9fafb 100%);
  border: 1px solid rgba(109, 179, 97, 0.22);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.address-details-target-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6DB361;
}
.address-details-target-title {
  font-size: 17px;
  line-height: 1.35;
  color: var(--home-text-strong);
  overflow-wrap: anywhere;
}
.address-details-target-hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--home-text-subtle);
}
.address-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.address-details-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.address-details-field--full {
  gap: 10px;
}
.address-details-field-label {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--home-text-body);
}
.address-details-input {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0 16px;
  font: inherit;
  color: var(--home-text-body);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.address-details-input:focus,
.address-details-note:focus {
  border-color: #6DB361;
  box-shadow: 0 0 0 4px rgba(109, 179, 97, 0.12);
}
.address-details-note {
  min-height: 110px;
}

#addressDetailsModal {
  background: rgba(0, 0, 0, 0.32);
  padding: 0;
  align-items: center;
  justify-content: center;
}

@media (min-width: 980px) {
  #addressDetailsModal {
    --map-modal-top-gap: clamp(44px, 6vh, 72px);
  }

  #addressDetailsModal.modal-overlay {
    align-items: flex-end;
    box-sizing: border-box;
    padding-top: var(--map-modal-top-gap);
  }

  #addressDetailsModal .address-details-shell {
    width: min(88vw, 1160px);
    max-width: 1160px;
    height: calc(100dvh - var(--map-modal-top-gap));
    max-height: calc(100dvh - var(--map-modal-top-gap));
  }

  #addressDetailsModal .address-details-panel {
    flex-basis: clamp(440px, 33vw, 500px);
    width: clamp(440px, 33vw, 500px);
    padding: 26px 28px 24px;
  }
}

/* Строки с опциями */
.option-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-width: 0; cursor: pointer; -webkit-tap-highlight-color: transparent;}
.option-row.align-start { align-items: flex-start; }
.option-row > .option-name,
.option-row > .option-name-col { flex: 1; min-width: 0; }
.option-row--disabled { cursor: not-allowed; opacity: 1; }
.option-row--disabled .option-name,
.option-row--disabled .option-sub { color: var(--home-text-subtle); }
.option-row--disabled .opt-free,
.option-row--disabled .option-info-icon { color: #98a2b3; }
.option-name { display: block; min-width: 0; font-size: 16px; color: var(--home-text-body); font-weight: 500; line-height: 1.45; overflow-wrap: anywhere; }
.option-name-line { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.opt-free { color: #6DB361; font-weight: 700; margin-left: 4px; }
.opt-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 22px; padding: 0 8px; margin-left: 8px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; vertical-align: middle; }
.opt-badge--soon { color: #8a5a00; background: #fff4cc; border: 1px solid #f4d06f; }
.option-sub { display: block; min-width: 0; font-size: 13px; color: var(--home-text-subtle); margin-top: 4px; font-weight: 500; line-height: 1.45; overflow-wrap: anywhere; }
.option-name-col { display: flex; flex: 1; min-width: 0; flex-direction: column; }
.option-inline-tooltip { border: none; background: transparent; padding: 0; margin: 0; width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; cursor: help; flex: 0 0 16px; position: relative; z-index: 4; vertical-align: middle; }
.option-info-icon { font-size: 14px; color: #98a2b3; }
.option-tooltip-box { left: 50%; right: auto; transform: translateX(-50%) translateY(5px); width: min(270px, calc(100vw - 88px)); z-index: 1600; border: 1px solid rgba(226, 232, 240, 0.95); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16); opacity: 1; }
.option-tooltip-box::before { left: 50%; right: auto; margin-left: -8px; }
.info-tooltip-wrap:hover .option-tooltip-box,
.info-tooltip-wrap:focus-within .option-tooltip-box,
.option-inline-tooltip.is-forced-open .option-tooltip-box { transform: translateX(-50%) translateY(0); }
.option-inline-tooltip.is-forced-open .tooltip-box,
.option-inline-tooltip.is-forced-open .info-icon { opacity: 1; visibility: visible; color: #00b840; }
.option-row--disabled .option-inline-tooltip { opacity: 1; }

/* Счетчик сопровождающих */
.option-counter { display: flex; align-items: center; gap: 8px; border: 1px solid #e2e8f0; border-radius: 999px; padding: 4px 4px 4px 16px; }
.option-counter span { font-size: 15px; font-weight: 500; width: 12px; text-align: center; }
.option-counter button { width: 28px; height: 28px; border: none; background: transparent; border-radius: 50%; font-size: 18px; color: #333; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.2s;}
.option-counter button:hover { background: #f4f5f7; }

/* Переключатели в стиле iOS */
.opt-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; margin-left: 12px;}
.opt-switch input { opacity: 0; width: 0; height: 0; }
.opt-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #e2e8f0; transition: .3s; border-radius: 24px; }
.opt-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 2px; bottom: 2px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.15);}
.opt-switch input:checked + .opt-slider { background-color: #00b840; box-shadow: inset 0 0 0 1px rgba(0, 138, 48, 0.08); }
.opt-switch input:checked + .opt-slider:before { transform: translateX(20px); }
.opt-switch input:disabled + .opt-slider { cursor: not-allowed; background: #edf2f7; box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.16); }
.opt-switch input:disabled + .opt-slider:before { background: #ffffff; box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08); }

/* Подвал модалки */
.options-footer { padding: 16px 28px 28px; display: flex; gap: 12px; background: #fff; border-radius: 0 0 28px 28px; border-top: 1px solid #f0f0f0; margin-top: auto; }
.opt-back-btn { width: 64px; height: 56px; border-radius: 16px; background: #f4f6f8; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--home-text-body); transition: background 0.2s ease, color 0.2s ease; }
.opt-back-btn:hover { background: #e9edf1; }
.opt-confirm-btn { flex: 1; height: 56px; border-radius: 16px; background: #00b840; color: #fff; border: none; font-size: 18px; font-weight: 800; cursor: pointer; transition: background 0.2s ease; }
.opt-confirm-btn:hover { background: #00a239; }

@media (max-width: 767px) {
  .hero-gallery {
    min-height: 308px;
  }
  .hero-spotlight-copy h1 {
    font-size: clamp(30px, 8.8vw, 38px);
  }
  .hero-spotlight-accent {
    font-size: clamp(17px, 4.8vw, 21px);
  }
  .hero-spotlight-media,
  .hero-spotlight-image {
    min-height: 270px;
  }
  .hero-spotlight-badge {
    max-width: 210px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 16px;
  }
  .hero-spotlight-badge-main {
    top: 34px;
    right: 8px;
  }
  .hero-gallery-slide {
    gap: 8px;
  }
  .hero-slide-copy h2 {
    font-size: clamp(25px, 7.3vw, 31px);
  }
  .hero-slide-copy p {
    font-size: clamp(14px, 4.4vw, 19px);
    margin-top: 3px;
  }
  .hero-slide-media {
    min-height: 178px;
  }
  .hero-slide-chip {
    padding: 4px 8px;
    max-width: 56%;
  }
  .hero-slide-chip-yellow {
    font-size: clamp(10px, 3.2vw, 12px);
  }
  .hero-slide-chip-green,
  .hero-slide-chip-white {
    font-size: clamp(9px, 2.7vw, 11px);
  }
  .hero-slide-chip-right {
    right: 6%;
    top: 40px;
  }
  .hero-slide-chip-bottom {
    max-width: 72%;
  }
  .hero-gallery-controls {
    gap: 10px;
  }
  .hero-gallery-dots {
    gap: 10px;
  }
  .hero-gallery-dot {
    width: 14px;
    height: 4px;
  }
  .hero-gallery-dot.is-active {
    width: 22px;
  }
  .hero-gallery-nav {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .address-card { padding: 6px 10px; }
  .icon-btn { width: 42px; height: 42px; border-radius: 12px; }
  .truck-img { width: 82px; height: 52px; }
  .loader-img { width: 78px; height: 52px; }
  .loader-text { font-size: 13px; line-height: 1.42; }
  .address-details-grid {
    grid-template-columns: 1fr;
  }
  .address-details-trigger {
    min-height: 40px;
    padding: 6px 9px 6px 10px;
    border-radius: 16px;
  }
  .address-details-copy {
    gap: 6px;
  }
  .address-details-label {
    font-size: 11px;
  }
  .address-details-value {
    font-size: 12px;
  }
  .counter-box button { width: 38px; height: 38px; }
  .time-card .label { font-size: 10.75px; margin-bottom: 5px; }
  .time-info #rentalTimeText { font-size: 19px; }
  .vert-controls button { width: 36px; height: 30px; }
  .phone-group {
    border-radius: 18px;
    padding: 4px 10px 4px 14px;
  }
  .phone-group .label {
    font-size: 10px;
    margin-bottom: 2px;
  }
  .phone-wrapper input {
    font-size: 16.6px;
    font-weight: 500;
  }
  .phone-flag-button {
    padding: 8px 10px;
    border-radius: 10px;
  }
  .phone-iso-text {
    font-size: 14px;
  }
  .phone-country-menu {
    min-width: 210px;
    left: -2px;
  }
  .user-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 24px;
  }
  .radio-text, .calendar-wrap { font-size: 14px; line-height: 1.36; }
  .agreements { gap: 12px; }
  .checkbox-label { font-size: 12.2px; line-height: 1.52; }
}

@media (max-width: 979px) {
  #addressDetailsModal {
    padding: 0;
    background: rgba(15, 23, 42, 0.22);
  }
  #addressDetailsModal .address-details-shell {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    gap: 0;
  }
  #addressDetailsModal .address-details-spacer {
    display: none;
  }
  #addressDetailsModal .address-details-panel {
    width: 100%;
    flex: 1;
    border-radius: 0;
    padding: 16px 14px 14px;
    gap: 12px;
    min-height: 0;
    overflow: hidden;
    box-shadow: none;
  }
  #addressDetailsModal .address-details-title {
    margin-bottom: 16px;
    font-size: 22px;
  }
  #addressDetailsModal .address-details-bottom {
    padding: 10px 0 env(safe-area-inset-bottom);
  }
  #mapModal .map-modal-content {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    gap: 0;
    background: #f4f6f8;
    border-radius: 0;
    flex-direction: column;
    pointer-events: auto;
  }
  #mapModal .map-container,
  #mapModal .map-panel {
    box-shadow: none;
  }
  #mapModal .map-panel {
    width: 100%;
    flex: 1;
    border-radius: 0;
    padding: 16px 14px 14px;
    gap: 12px;
    min-height: 0;
    overflow: hidden;
  }
  #mapModal .map-container { border-radius: 0; }
  #mapModal .map-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  #mapModal .map-back-pill { flex: 1; }
  #mapModal.mobile-address-mode .map-container { display: none; }
  #mapModal.mobile-address-mode.show-map .map-container {
    display: block;
    width: 100%;
    height: clamp(220px, 34dvh, 320px);
    min-height: 220px;
    max-height: 320px;
    flex: 0 0 clamp(220px, 34dvh, 320px);
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dbe1ea;
  }
  #mapModal.mobile-address-mode .map-toggle-btn {
    display: inline-flex;
    background: #ffffff;
    border-color: #dbe1ea;
  }
  #mapModal .route-input-group {
    border-radius: 26px;
    padding: 10px 12px;
  }
  #mapModal .route-input-group.suggestions-open {
    overflow: visible;
  }
  #mapModal .suggestions-list {
    margin-top: 8px;
    border-radius: 26px;
    max-height: min(54vh, 460px);
  }
  #mapModal .route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .suggestions-list {
    max-height: none;
  }
  #mapModal .route-inputs {
    min-height: 0;
    overflow-y: auto;
  }
  #mapModal .route-inputs.inline-suggestions-mode:not(.autocomplete-focus-mode) {
    display: block;
    overflow: visible;
  }
  #mapModal .route-inputs.inline-suggestions-mode:not(.autocomplete-focus-mode) .route-input-block.suggestions-expanded {
    position: static;
    transform: none;
    transition: none;
    will-change: auto;
  }
  #mapModal .route-inputs.inline-suggestions-mode:not(.autocomplete-focus-mode) .route-input-block.suggestions-expanded .suggestions-list {
    position: absolute;
    top: var(--inline-suggestions-top, 0);
    left: var(--inline-suggestions-left, 0);
    right: var(--inline-suggestions-right, 0);
    bottom: env(safe-area-inset-bottom, 0);
    min-height: 0;
    max-height: none;
    margin: 0;
  }
  #mapModal .step-num {
    width: 40px;
    height: 56px;
    background: #ececee;
    color: #2d3748;
    font-size: 17px;
    font-weight: 600;
    border-radius: 16px;
  }
  #mapModal .route-input-group:hover .step-num,
  #mapModal .route-input-group.active .step-num,
  #mapModal .route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .step-num {
    background: #59bf46;
    color: #ffffff;
  }
  #mapModal .step-num-wrap:hover .step-num {
    color: #2d3748;
    background: #e7e8ea;
  }
  #mapModal .route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .step-num-wrap:hover .step-num {
    color: #ffffff;
    background: #59bf46;
  }
  #mapModal .step-num-wrap:hover .step-num::before,
  #mapModal .route-inputs.autocomplete-focus-mode .route-input-block.pinned-top .step-num-wrap:hover .step-num::before {
    opacity: 0;
  }
  #mapModal .input-wrap label {
    font-size: 11px;
    text-transform: lowercase;
    margin-bottom: 2px;
  }
  #mapModal .input-wrap input {
    font-size: 18px;
    line-height: 1.25;
    padding-right: 34px;
  }
  #mapModal .input-wrap.has-secondary-line input {
    line-height: 1.12;
  }
  #mapModal .secondary-address-line {
    padding-right: 34px;
    font-size: 13px;
  }
  #mapModal .clear-btn,
  #mapModal .locate-btn {
    width: 48px;
    height: 48px;
  }
  #mapModal .clear-btn {
    right: 2px;
    width: 30px;
    height: 30px;
    border-radius: 0;
  }
  #mapModal .locate-btn {
    border-radius: 18px;
    margin-left: 8px;
  }
  #mapModal .clear-btn .material-icons-round {
    font-size: 19px;
  }
  #mapModal .locate-btn .material-icons-round {
    font-size: 24px;
  }
  #mapModal .panel-bottom {
    padding: 10px 0 env(safe-area-inset-bottom);
    box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.04);
  }
  #mapModal .add-stop-btn,
  #mapModal .btn-confirm,
  #mapModal .btn-cancel {
    min-height: 52px;
    font-size: 16px;
  }

  .pac-container {
    border-radius: 16px;
  }
  .pac-item {
    min-height: 64px;
    font-size: 17px;
    padding: 14px 14px 14px 42px;
  }
  .pac-item .pac-item-query {
    font-size: 19px;
  }
}

/* ==========================================
   КАПЧА И РАСШИФРОВКА СУММЫ
========================================== */
.captcha-modal-content {
  width: min(92vw, 900px);
  max-width: 900px;
  max-height: calc(100dvh - 32px);
  background: #fff;
  border-radius: 26px;
  padding: 20px 20px 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: slideUp 0.3s forwards;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
}

.captcha-header {
  margin-bottom: 8px;
}

.captcha-header-copy {
  max-width: 640px;
}

.captcha-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.captcha-title { font-size: 21px; font-weight: 800; line-height: 1.05; letter-spacing: var(--home-track-snug); color: #111827; margin-bottom: 0; text-align: left; }

.captcha-intro {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  display: none;
}

.captcha-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  grid-template-areas: "main side";
  gap: 14px;
  align-items: start;
}

.captcha-main-column {
  grid-area: main;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.captcha-side-column {
  grid-area: side;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  position: static;
}

.captcha-order-card,
.captcha-confirmation-card {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
}

.captcha-order-card {
  padding: 14px;
}

.captcha-order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.captcha-order-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.captcha-order-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: var(--home-track-snug);
  color: #111827;
}

.captcha-order-service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.captcha-route-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  align-items: start;
}

.captcha-route-stop {
  min-width: 0;
}

.captcha-route-stop-label {
  display: inline-block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.captcha-route-stop-value {
  display: block;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.captcha-route-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
}

.captcha-route-connector span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #d1d5db;
}

.captcha-route-meta {
  margin-top: 10px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.captcha-order-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin-top: 12px;
}

.captcha-order-fact {
  padding: 10px 0 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid #edf0f3;
}

.captcha-order-fact-label {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}

.captcha-order-fact-value {
  display: block;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.price-breakdown {
  background: #ffffff;
  border-radius: 22px;
  padding: 14px;
  margin-bottom: 0;
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

.captcha-main-column .price-breakdown {
  width: 100%;
}

.price-summary-note {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.price-row {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.4;
  color: #4b5563;
  margin-bottom: 8px;
  font-weight: 600;
}
.price-row:last-child { margin-bottom: 0; }
.price-row.green-text { color: #16a34a; font-weight: 600; }
.price-row.price-row--negative { color: #16a34a; }
.price-row.price-row--positive { color: #111827; }
.price-row--vat {
  margin-bottom: 14px;
  color: var(--home-text-strong);
}
.price-row__placeholder {
  color: #94a3b8;
  font-weight: 700;
}

.dotted-line {
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
  margin: 0 8px;
  opacity: 1;
}

.captcha-promo-btn {
  width: 100%;
  min-height: 40px;
  margin-top: 4px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.captcha-promo-btn:hover,
.captcha-promo-btn:focus-visible {
  border-color: #111827;
  background: #f8fafc;
  outline: none;
}

.captcha-promo-btn.is-active {
  border-color: rgba(22, 163, 74, 0.26);
  background: rgba(22, 163, 74, 0.06);
}

.price-total-box {
  background: transparent;
  border-radius: 0;
  padding: 12px 0 0;
  margin-top: 12px;
  box-shadow: none;
  border-top: 1px solid #e5e7eb;
}
.price-total-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.total-label { font-size: 12px; font-weight: 800; line-height: 1.25; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280; }
.total-value { font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: var(--home-track-snug); color: #111827; }

.captcha-payment-block {
  margin-bottom: 20px;
}

.captcha-payment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.captcha-payment-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--home-track-snug);
  color: var(--home-text-strong);
}

.captcha-payment-note {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: #64748b;
}

.captcha-payment-toggle {
  position: relative;
}

.captcha-payment-trigger {
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  color: var(--home-text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.captcha-payment-trigger:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  background: #fbfdff;
}

.captcha-payment-trigger:focus-visible {
  outline: none;
  border-color: rgba(22, 163, 74, 0.4);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.captcha-payment-trigger__lead {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.captcha-payment-trigger__icon,
.captcha-payment-dropdown-option__icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: #f4f5f7;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  flex-shrink: 0;
}

.captcha-payment-trigger__value,
.captcha-payment-dropdown-option__title {
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: inherit;
}

.captcha-payment-trigger__value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.captcha-payment-trigger__chevron {
  color: #64748b;
  transition: transform 0.18s ease, color 0.18s ease;
  flex-shrink: 0;
}

.captcha-payment-toggle.is-open .captcha-payment-trigger {
  border-color: rgba(22, 163, 74, 0.28);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.08);
}

.captcha-payment-toggle.is-open .captcha-payment-trigger__chevron {
  transform: rotate(180deg);
  color: #16a34a;
}

.captcha-payment-dropdown {
  width: 100%;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.captcha-payment-dropdown[hidden] {
  display: none;
}

.captcha-payment-dropdown-option {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--home-text-strong);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.captcha-payment-dropdown-option:hover {
  transform: translateY(-1px);
  background: #f8fafc;
  border-color: #e2e8f0;
}

.captcha-confirmation-card {
  padding: 14px;
}

.captcha-confirmation-head {
  margin-bottom: 6px;
}

.captcha-step-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.captcha-subtitle { font-size: 16px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: #111827; margin-bottom: 0; }

.captcha-confirmation-intro,
.captcha-submit-hint {
  display: none;
}

.captcha-phone-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f6f7f8;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.captcha-identity-block {
  margin-bottom: 6px;
}
.captcha-field-label {
  display: inline-block;
  margin-bottom: 4px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.captcha-image-wrapper {
  width: 100%;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
}
#captchaCanvas { width: 100%; height: 100%; letter-spacing: 5px; }

.captcha-refresh {
  background: transparent;
  border: none;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
}
.captcha-refresh:hover { text-decoration: underline; }

.captcha-input-group { margin-bottom: 6px; }
.captcha-input-group--compact { margin-bottom: 6px; }
.captcha-meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 8px;
}
.captcha-status {
  min-height: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #6b7280;
  margin-bottom: 0;
}
.captcha-status.is-pending {
  color: #64748b;
}
.captcha-status.is-success {
  color: #16a34a;
}
.captcha-status.is-error {
  color: #ef4444;
}
.captcha-turnstile-slot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 2px;
  min-height: 0;
}
.captcha-turnstile-slot[hidden] {
  display: none;
}
#turnstileWidget:empty {
  display: none !important;
}
#turnstileWidget iframe {
  border-radius: 14px;
}
#turnstileError {
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff4f4;
  border: 1px solid rgba(239, 68, 68, 0.16);
  font-weight: 600;
  line-height: 1.45;
}
.captcha-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  outline: none;
  transition: 0.2s;
}
.captcha-input:focus { border-color: #111827; }
.captcha-input--text {
  appearance: none;
}
.captcha-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.captcha-input.is-disabled {
  background: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
}
.captcha-field-error {
  min-height: 0;
  color: #ef4444;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.18s ease;
}
.captcha-field-error.is-visible {
  opacity: 1;
  max-height: 40px;
}

.captcha-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

#captchaModal {
  padding: 16px;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.captcha-back {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: 0.2s;
}
.captcha-back:hover { background: #e5e7eb; }
.captcha-submit {
  flex: 1;
  width: 100%;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 0.2s;
}
.captcha-submit:hover { background: #000000; }
.captcha-submit:disabled {
  background: #b7c4d5;
  cursor: not-allowed;
}
.captcha-submit:disabled:hover { background: #b7c4d5; }
.captcha-turnstile-retry {
  flex: none;
  min-height: 44px;
  border-radius: 14px;
  background: #eef3f8;
  color: var(--home-text-strong);
}
.captcha-turnstile-retry:hover {
  background: #e2e8f0;
  color: #111827;
}
.captcha-turnstile-retry:disabled,
.captcha-turnstile-retry:disabled:hover {
  background: #eef3f8;
  color: #94a3b8;
}

@media (max-width: 767px) {
  #captchaModal {
    padding: 12px;
    align-items: flex-start;
    overflow: hidden;
  }

  .captcha-modal-content {
    width: min(96vw, 560px);
    max-height: calc(100dvh - 24px);
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 24px 18px 0;
  }

  .captcha-title {
    font-size: 24px;
  }

  .captcha-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "side"
      "main";
    gap: 16px;
    min-height: auto;
    overflow: visible;
    padding: 0 0 20px;
  }

  .captcha-order-card,
  .captcha-confirmation-card,
  .price-breakdown {
    border-radius: 20px;
  }

  .captcha-order-card,
  .captcha-confirmation-card {
    padding: 18px;
  }

  .price-breakdown {
    padding: 18px;
  }

  .captcha-order-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .captcha-side-column {
    position: static;
  }

  .captcha-actions {
    position: sticky;
    bottom: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding: 12px 18px max(12px, env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: none;
  }

  .captcha-route-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .captcha-route-connector {
    justify-content: flex-start;
    padding-top: 0;
  }

  .captcha-route-connector span {
    width: 2px;
    height: 24px;
  }

  .captcha-order-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ==========================================
   ПРОМОКОД — МОДАЛЬНОЕ ОКНО
========================================== */

.promo-modal-content {
  position: relative;
  overflow: hidden;
  width: min(92vw, var(--promo-panel-width, 490px));
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideUp 0.3s forwards;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

#promoModal.modal-overlay {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 var(--promo-panel-left, max(18px, calc(50vw + 180px)));
}

body.home-page #promoModal.modal-overlay {
  padding: 0 0 0 var(--promo-panel-left, max(18px, calc(50vw + 180px)));
}

#promoModal .promo-modal-content {
  width: min(calc(100vw - var(--promo-panel-left, 10px) - 10px), var(--promo-panel-width, 490px));
}

.promo-modal-content::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 64, 0.12) 0%, rgba(0, 184, 64, 0) 74%);
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.65;
}

.promo-modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 42px;
}

.promo-modal-title {
  width: 100%;
  max-width: none;
  padding: 0 56px 0 56px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin: 0;
  text-wrap: balance;
  text-align: center;
}

.promo-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.promo-modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}
.promo-modal-close .material-icons-round { font-size: 22px; }

.promo-active-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f6fff8;
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 24px;
  padding: 16px;
}

.promo-active-banner[hidden],
#promoInputArea[hidden],
.promo-summary[hidden] {
  display: none !important;
}

.promo-active-icon .material-icons-round {
  font-size: 30px;
  color: #16a34a;
}

.promo-active-copy {
  flex: 1;
  min-width: 0;
}

.promo-active-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16a34a;
  margin: 1px 0 4px;
}

.promo-active-code {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.04em;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.promo-active-desc {
  font-size: 13px;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.45;
  margin: 4px 0 0;
}

.promo-summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 12px 16px 14px;
}

.promo-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.promo-summary-row + .promo-summary-row {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.promo-summary-row--total {
  margin-top: 4px;
  padding-top: 14px;
}

.promo-summary-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.promo-summary-value {
  font-size: 15px;
  color: #0f172a;
  font-weight: 800;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.promo-summary-value--accent {
  color: #16a34a;
}

.promo-summary-total {
  font-size: 30px;
  line-height: 1;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.promo-remove-btn {
  align-self: flex-end;
  margin-top: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.promo-remove-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #0f172a;
}

.promo-modal-hint {
  align-self: center;
  max-width: none;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  text-align: center;
}

#promoInputArea {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.promo-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.promo-code-field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.promo-code-input {
  width: 100%;
  min-width: 0;
  height: 58px;
  border: 1.5px solid #d1d5db;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: #111827;
  background: #fff;
  font-variant-numeric: tabular-nums;
}
.promo-code-input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}
.promo-code-input::placeholder {
  font-weight: 500;
  letter-spacing: 0;
  color: #94a3b8;
}

.promo-apply-btn {
  flex: 0 0 auto;
  height: 58px;
  min-width: 148px;
  padding: 0 24px;
  border-radius: 18px;
  background: #00b840;
  color: #fff;
  border: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.promo-apply-btn:hover {
  background: #00a63f;
}
.promo-apply-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.promo-status {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  display: none;
}

.promo-status:not(:empty) {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  margin-top: -2px;
  background: rgba(15, 23, 42, 0.04);
}
.promo-status--error {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.1);
}
.promo-status--success {
  color: #15803d;
  background: rgba(22, 163, 74, 0.1);
}
.promo-status--info { color: #64748b; }

.promo-modal-done-btn {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  background: #f3f4f6;
  color: #0f172a;
  border: 1px solid #d1d5db;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.015em;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.promo-modal-done-btn:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.promo-modal-close:focus-visible,
.promo-remove-btn:focus-visible,
.promo-code-input:focus-visible,
.promo-apply-btn:focus-visible,
.promo-modal-done-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 184, 64, 0.15);
}

@media (max-width: 640px) {
  .promo-modal-content {
    padding: 20px 16px 16px;
    border-radius: 28px;
    gap: 12px;
  }

  .promo-modal-title {
    font-size: 24px;
    padding: 0 52px;
  }

  .promo-modal-close {
    width: 42px;
    height: 42px;
  }

  #promoInputArea {
    padding: 14px;
    border-radius: 20px;
  }

  .promo-modal-hint {
    font-size: 14px;
    max-width: none;
  }

  .promo-input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-code-input,
  .promo-apply-btn {
    height: 56px;
    width: 100%;
    min-width: 0;
    border-radius: 18px;
    font-size: 18px;
  }

  .promo-apply-btn {
    padding: 0 18px;
  }

  .promo-summary-total {
    font-size: 26px;
  }

  .promo-modal-done-btn {
    min-height: 54px;
    border-radius: 18px;
    font-size: 16px;
  }
}

/* ==========================================
   КНОПКА СКИДКИ — АКТИВНОЕ СОСТОЯНИЕ
========================================== */
.discount-btn {
  position: relative;
  overflow: visible !important;
}

.discount-btn--active {
  background: #dcfce7 !important;
  color: #16a34a !important;
}
.discount-btn--active:hover { background: #bbf7d0 !important; }

.discount-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #16a34a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 20px;
  pointer-events: none;
  white-space: nowrap;
  border: 2px solid #fff;
  letter-spacing: 0.02em;
  z-index: 2;
}

html:not([data-theme='light']) .promo-modal-content {
  background:
    radial-gradient(circle at top left, rgba(0, 184, 64, 0.12), transparent 32%),
    linear-gradient(180deg, #0f1c2d 0%, #112236 100%) !important;
  color: var(--night-text) !important;
  border-color: rgba(148, 163, 184, 0.12) !important;
}
html:not([data-theme='light']) .promo-modal-title {
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .promo-modal-hint,
html:not([data-theme='light']) .promo-code-label,
html:not([data-theme='light']) .promo-summary-label {
  color: rgba(226, 232, 240, 0.74) !important;
}
html:not([data-theme='light']) .promo-code-input {
  background: rgba(255,255,255,0.06) !important;
  border-color: var(--night-border) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) #promoInputArea {
  background: rgba(15, 23, 42, 0.34) !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
}
html:not([data-theme='light']) .promo-code-input:focus {
  border-color: #00b840 !important;
}
html:not([data-theme='light']) .promo-active-banner {
  background: rgba(22, 163, 74, 0.12) !important;
  border-color: rgba(22, 163, 74, 0.3) !important;
}
html:not([data-theme='light']) .promo-active-code {
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .promo-active-desc,
html:not([data-theme='light']) .promo-summary-value {
  color: rgba(241, 245, 249, 0.92) !important;
}
html:not([data-theme='light']) .promo-summary {
  background: rgba(15, 23, 42, 0.48) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
}
html:not([data-theme='light']) .promo-summary-row + .promo-summary-row {
  border-color: rgba(148, 163, 184, 0.16) !important;
}
html:not([data-theme='light']) .promo-summary-total {
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .promo-modal-close {
  background: rgba(148,163,184,0.12) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .promo-remove-btn {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(148, 163, 184, 0.22) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .promo-modal-done-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .promo-status:not(:empty) {
  background: rgba(255, 255, 255, 0.06) !important;
}
html:not([data-theme='light']) .promo-status--error {
  background: rgba(239, 68, 68, 0.12) !important;
}
html:not([data-theme='light']) .promo-status--success {
  background: rgba(22, 163, 74, 0.14) !important;
}
html:not([data-theme='light']) .discount-badge {
  border-color: #0f1c2d !important;
}
html:not([data-theme='light']) .wallet-btn--active {
  background: rgba(12, 23, 38, 0.92) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .wallet-badge {
  border-color: #0f1c2d !important;
}
html:not([data-theme='light']) .payment-method-modal {
  background: rgba(0, 0, 0, 0.58) !important;
}
html:not([data-theme='light']) .payment-method-modal-content {
  background: #0f1c2d !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .payment-method-modal-title,
html:not([data-theme='light']) .payment-method-option__title {
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .payment-method-modal-subtitle,
html:not([data-theme='light']) .payment-method-option__subtitle {
  color: #a8b4c7 !important;
}
html:not([data-theme='light']) .payment-method-modal-close,
html:not([data-theme='light']) .payment-method-option {
  background: rgba(255,255,255,0.04) !important;
  border-color: var(--night-border) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .payment-method-option__icon {
  background: rgba(255,255,255,0.06) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .payment-method-option.is-selected {
  background: rgba(22, 163, 74, 0.12) !important;
  border-color: rgba(22, 163, 74, 0.28) !important;
}
html:not([data-theme='light']) .payment-method-modal-handle {
  background: rgba(255,255,255,0.18) !important;
}
html:not([data-theme='light']) .price-breakdown,
html:not([data-theme='light']) .price-total-box {
  background: rgba(255,255,255,0.04) !important;
}
html:not([data-theme='light']) .price-summary-note {
  color: #a8b4c7 !important;
}
html:not([data-theme='light']) .captcha-phone-chip,
html:not([data-theme='light']) .captcha-promo-btn {
  background: rgba(255,255,255,0.04) !important;
  border-color: var(--night-border) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .captcha-promo-btn.is-active {
  background: rgba(22, 163, 74, 0.12) !important;
  border-color: rgba(22, 163, 74, 0.28) !important;
}
html:not([data-theme='light']) .captcha-payment-title {
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .captcha-payment-note {
  color: #a8b4c7 !important;
}
html:not([data-theme='light']) .captcha-payment-trigger,
html:not([data-theme='light']) .captcha-payment-dropdown {
  background: rgba(255,255,255,0.04) !important;
  border-color: var(--night-border) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .captcha-payment-trigger__icon,
html:not([data-theme='light']) .captcha-payment-dropdown-option__icon {
  background: rgba(255,255,255,0.06) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .captcha-payment-trigger:hover,
html:not([data-theme='light']) .captcha-payment-dropdown-option:hover {
  background: rgba(255,255,255,0.06) !important;
}
html:not([data-theme='light']) .captcha-payment-toggle.is-open .captcha-payment-trigger {
  background: rgba(22, 163, 74, 0.12) !important;
  border-color: rgba(22, 163, 74, 0.28) !important;
}
html:not([data-theme='light']) .captcha-payment-trigger__chevron {
  color: #a8b4c7 !important;
}
html:not([data-theme='light']) .captcha-input.is-disabled {
  background: rgba(255,255,255,0.04) !important;
  color: #8ea0b8 !important;
}
html:not([data-theme='light']) .captcha-turnstile-retry {
  background: rgba(255,255,255,0.08) !important;
  color: var(--night-text) !important;
}
html:not([data-theme='light']) .captcha-turnstile-retry:hover {
  background: rgba(255,255,255,0.12) !important;
}

/* ==========================================
   УВЕДОМЛЕНИЕ ОБ УСПЕШНОМ ЗАКАЗЕ
========================================== */
.success-modal-content {
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 28px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: slideUp 0.3s forwards;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b840;
  margin-bottom: 24px;
}
.success-icon .material-icons-round { font-size: 48px; }
.success-title { font-size: 24px; font-weight: 800; line-height: 1.1; letter-spacing: var(--home-track-snug); color: var(--home-text-strong); margin-bottom: 12px; }
.success-text { font-size: 15px; color: var(--home-text-muted); line-height: 1.65; font-weight: 500; margin-bottom: 32px; }
.success-text strong { color: #111; }
.success-actions {
  width: 100%;
  display: grid;
  gap: 12px;
}
.success-view-order-btn,
.success-close-btn {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 0.2s;
}
.success-view-order-btn {
  background: #00b840;
  color: #fff;
}
.success-close-btn {
  background: #00b840;
  color: #fff;
  border: none;
}
.success-view-order-btn:hover { background: #00a037; }
.success-close-btn:hover { background: #00a037; }
.success-close-btn-secondary {
  background: #f3f4f6;
  color: var(--home-text-strong);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.success-close-btn-secondary:hover {
  background: #e5e7eb;
}

/* ==========================================
   АВТОРИЗАЦИЯ (ВХОД И РЕГИСТРАЦИЯ)
========================================== */
.auth-modal-content {
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  overflow: hidden;
  animation: slideUp 0.3s forwards;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}
.auth-header {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.auth-tab {
  border: none;
  min-height: 42px;
  background: transparent;
  border-radius: 14px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.auth-tab.active { background: #fff; color: #111827; box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08); }
.auth-close-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.auth-close-btn:hover { background: #cbd5e1; color: #0f172a; }
.auth-close-btn .material-icons-round { font-size: 22px; line-height: 1; }
.auth-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.auth-body [hidden] { display: none !important; }
.auth-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: var(--home-track-snug);
  color: #111827;
}
.auth-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth-input-wrap {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0 14px;
  min-height: 64px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
.auth-input-wrap:focus-within { border-color: #00b840; box-shadow: 0 0 0 4px rgba(0, 184, 64, 0.08); }
.auth-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  padding: 30px 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
  background: transparent;
}
.auth-input-wrap input::placeholder { color: transparent; }
.auth-floating-label {
  position: absolute;
  top: 50%;
  left: 14px;
  right: 14px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}
.auth-input-wrap input:focus + .auth-floating-label,
.auth-input-wrap input:not(:placeholder-shown) + .auth-floating-label,
.auth-input-wrap input:-webkit-autofill + .auth-floating-label {
  top: 9px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
}
.auth-birth-date-input {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.auth-input-wrap .auth-birth-date-input::placeholder {
  color: #c8d2dd;
  letter-spacing: 0.03em;
}
.auth-birth-date-input + .auth-floating-label {
  top: 9px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
}
.auth-phone-wrap { display: flex; align-items: center; gap: 12px; }
.auth-input-main { position: relative; flex: 1; min-width: 0; }
.auth-phone-wrap input { flex: 1; width: 100%; }
.auth-phone-wrap .auth-floating-label {
  left: 0;
  right: 0;
}
.auth-phone-wrap .phone-country-picker { z-index: 20; }
.auth-phone-wrap .phone-iso-text {
  font-size: 15px;
}
.auth-phone-wrap .phone-country-menu { min-width: 220px; }
.auth-mode-switch { width: fit-content; border: none; background: transparent; color: #00b840; font-size: 13px; font-weight: 800; padding: 0; margin: -2px 0 0; cursor: pointer; }
.auth-sms-btn {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dbe4ef;
  background: #f8fafc;
  color: #334155;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.auth-sms-btn:hover { background: #eff5fb; }
.auth-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #475569; line-height: 1.45; margin-top: 0; cursor: pointer; }
.auth-consent input { margin-top: 2px; width: 16px; height: 16px; accent-color: #00b840; flex-shrink: 0; }
.auth-consent a { color: #0f766e; text-decoration: underline; }
.auth-submit-btn {
  width: 100%;
  min-height: 52px;
  background: #00b840;
  color: #fff;
  border: none;
  padding: 0 16px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0;
}
.auth-submit-btn:hover { background: #00a037; transform: translateY(-1px); box-shadow: 0 18px 34px rgba(0, 184, 64, 0.2); }
.auth-submit-btn:disabled { cursor: wait; transform: none; background: #52bc53; box-shadow: none; }
.auth-error { color: #E53935; font-size: 13px; font-weight: 700; margin: 0; min-height: 18px; display: none; text-align: left; }
.auth-social { margin-top: -2px; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.auth-google-slot {
  min-height: 44px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.auth-google-slot > div,
.auth-google-slot iframe {
  max-width: 100% !important;
}

/* ==========================================
   TOAST-УВЕДОМЛЕНИЯ
========================================== */
.toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast-msg {
  min-width: 260px;
  max-width: min(92vw, 380px);
  background: rgba(17, 24, 39, 0.95);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.35;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .toast-stack {
    top: 12px;
    left: 12px;
    right: 12px;
  }
  .toast-msg {
    min-width: 0;
    max-width: 100%;
  }
}

/* ==========================================
   MOBILE HARDENING (GLOBAL)
========================================== */
@media (max-width: 979px) {
  body.express-delivery-page {
    padding-top: var(--flexlast-header-height, 92px) !important;
  }

  body {
    overflow-x: hidden;
    padding-top: 96px;
  }

  .header-action-button {
    width: 40px;
    height: 40px;
    min-height: 40px;
    border: none;
    border-radius: 12px;
    background: #f1f5f9;
    color: #334155;
    padding: 0;
  }

  .login-btn {
    min-height: 40px;
    height: 40px;
    width: auto;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border: none;
    background: #f1f5f9;
    color: #334155;
  }

  .header-action-button .material-icons-round,
  .login-btn .material-icons-round {
    color: #334155;
  }

  .login-btn::before {
    content: none;
  }

  .hero {
    padding: 4px 12px 28px;
    gap: 12px;
  }

  .hero-right {
    margin-top: -24px;
  }

  .widget-top {
    padding-bottom: 26px;
  }

  .widget-bottom {
    margin-top: -20px;
  }

  .address-card {
    padding: 8px 10px;
    gap: 6px;
  }

  .address-col input {
    font-size: 14px;
  }

  .loaders-card {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 13px;
    align-items: center;
  }

  .loader-text {
    flex: 1;
    min-width: 0;
  }

  .counter-box {
    margin-left: 6px;
    flex-shrink: 0;
  }

  .checkout-row {
    gap: 6px;
    align-items: stretch;
  }

  .checkout-row .side-btn {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
  }

  .checkout-btn {
    min-width: 0;
    height: 56px;
  }

  .checkout-label {
    font-size: 15px;
  }

  .total-price {
    font-size: 22px;
  }

  .modal-overlay:not(#mapModal) {
    padding: 10px;
  }

  body.home-page:not(.order-focus-page) #paymentMethodModal {
    padding: 0;
  }

  #truckModal {
    padding: 8px;
    align-items: stretch;
    justify-content: stretch;
  }

  .truck-modal-content,
  .date-modal-content,
  .options-modal-content,
  .captcha-modal-content,
  .success-modal-content,
  .auth-modal-content {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  #truckModal .truck-modal-content {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
  }

  .date-modal-content {
    border-radius: 18px;
  }

  .captcha-payment-trigger {
    min-height: 52px;
    padding: 11px 13px;
    border-radius: 16px;
  }

  .captcha-payment-trigger__icon,
  .captcha-payment-dropdown-option__icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 17px !important;
  }

  .captcha-payment-trigger__value,
  .captcha-payment-dropdown-option__title {
    font-size: 13px;
  }

  .captcha-payment-dropdown {
    border-radius: 16px;
    padding: 7px;
  }

  .captcha-payment-dropdown-option {
    min-height: 46px;
    padding: 9px 11px;
    border-radius: 13px;
  }

  .truck-modal-header {
    padding: calc(16px + env(safe-area-inset-top, 0px)) 16px 12px;
  }

  .truck-modal-title {
    font-size: 22px;
  }

  .truck-modal-caption {
    font-size: 13px;
  }

  .truck-close-btn {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .truck-list {
    flex: 1 1 auto;
    min-height: 0;
  }

  .truck-row {
    min-height: 96px;
    padding: 12px 12px;
    gap: 12px;
  }

  .truck-modal-footer {
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .truck-name-row {
    margin-bottom: 8px;
  }

  .truck-name {
    font-size: 18px;
  }

  .truck-label {
    font-size: 12px;
  }

  .truck-meta {
    gap: 6px;
  }

  .meta-pill {
    min-height: 30px;
    padding: 4px 9px;
    font-size: 11px;
  }

  .truck-pic {
    width: 80px;
    height: 58px;
  }

  .truck-check {
    width: 28px;
    height: 28px;
  }

  .date-modal-body {
    padding: 18px 18px 14px;
  }

  .date-modal-title {
    font-size: 22px;
  }

  .options-title {
    font-size: 22px;
    padding: 20px 20px 14px;
  }

  .options-body {
    padding: 0 20px 14px;
    gap: 14px;
  }

  .options-footer {
    padding: 14px 20px 20px;
  }

  .date-footer {
    padding: 14px 18px 18px;
  }

  .auth-header {
    padding: 14px;
  }

  .auth-body {
    padding: 18px;
    gap: 12px;
  }

  .auth-name-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .label {
    font-size: 10px;
  }

  .widget-top {
    border-radius: 24px;
    padding: 12px;
    padding-bottom: 32px;
  }

  .widget-bottom {
    border-radius: 24px;
    padding: 16px;
    margin-top: -24px;
  }

  .card {
    border-radius: 16px;
    padding: 12px 14px;
  }

  body {
    padding-top: 88px;
  }

  .header-action-button {
    width: 40px;
    height: 40px;
    min-height: 40px;
    border: none;
    border-radius: 12px;
    background: #f1f5f9;
    color: #334155;
    padding: 0;
  }

  .login-btn {
    min-height: 40px;
    height: 40px;
    width: auto;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 12px;
    border: none;
    background: #f1f5f9;
    color: #334155;
  }

  .header-action-button .material-icons-round,
  .login-btn .material-icons-round {
    color: #334155;
  }

  .hero {
    padding: 2px 8px 24px;
  }

  .hero-left {
    align-items: stretch;
    padding-top: 12px;
    padding-inline: 4px;
  }

  .loaders-hero-v2 {
    gap: 14px;
    padding-top: 6px;
  }

  .loaders-hero-v2-title {
    max-width: 10ch;
    font-size: clamp(31px, 10vw, 42px);
  }

  .loaders-hero-v2-subtitle {
    max-width: 30ch;
    font-size: 15px;
  }

  .loaders-hero-v2-copy-layout {
    display: block;
  }

  .loaders-hero-v2-copy {
    gap: 8px;
  }

  .loaders-hero-v2-actions {
    width: 100%;
    gap: 10px;
    margin-top: 12px;
  }

  .loaders-hero-v2-action {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .loaders-hero-v2-proof {
    gap: 8px;
    margin-top: 14px;
  }

  .loaders-hero-v2-proof-item {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .loaders-hero-v2-proof-item strong {
    font-size: 16px;
  }

  .hero-spotlight {
    margin-top: 6px;
    gap: 14px;
  }

  .hero-spotlight-copy {
    padding-left: 10px;
  }

  .hero-spotlight-copy h1 {
    font-size: 31px;
    max-width: 10ch;
  }

  .hero-spotlight-accent {
    font-size: 19px;
  }

  .hero-spotlight-media,
  .hero-spotlight-image {
    min-height: 238px;
  }

  .hero-spotlight-badge {
    max-width: 180px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  .hero-spotlight-badge-main {
    top: 28px;
    right: 6px;
  }

  .hero-gallery {
    min-height: 292px;
  }

  .hero-gallery-viewport {
    min-height: 0;
  }

  .hero-slide-copy h2 {
    font-size: 21px;
  }

  .hero-slide-copy p {
    font-size: 14px;
  }

  .hero-slide-media {
    min-height: 170px;
  }

  .hero-slide-chip {
    padding: 4px 7px;
    max-width: 58%;
  }

  .hero-slide-chip-right {
    top: 38px;
  }

  .hero-gallery-dot.is-active {
    width: 22px;
  }

  .hero-gallery-nav {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .hero-gallery-nav .material-icons-round {
    font-size: 20px;
  }

  .address-card {
    border-radius: 16px;
    padding: 12px 14px;
    gap: 4px;
  }
  .address-col input {
    font-size: 15px;
  }

  .truck-info strong {
    font-size: 16px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .loaders-card {
    padding: 8px;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .loader-img {
    width: 64px;
    height: 46px;
    flex-shrink: 0;
  }

  .loader-text {
    font-size: 13px;
    line-height: 1.35;
    min-width: 0;
    flex: 1;
  }
  .loader-text span {
    display: inline;
    white-space: normal;
  }
  #loadersTextLine1,
  #loadersTextLine2 {
    display: block;
  }
  #loadersTextLine1 {
    font-size: 13.5px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  #loadersTextLine2 {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .counter-box {
    width: auto;
    justify-content: space-between;
    margin-left: 4px;
    flex-shrink: 0;
    gap: 6px;
    padding: 5px;
    border-radius: 14px;
  }

  .two-col-row {
    flex-direction: column;
  }

  .options-card {
    font-size: 14px;
    width: 100%;
    min-height: 64px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .options-summary-value {
    font-size: 15px;
  }

  .time-card {
    border-radius: 16px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 8px;
    align-items: center;
  }
  .time-info {
    min-width: 0;
  }
  .time-info #rentalTimeText {
    font-size: 19px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vert-controls {
    flex-direction: row-reverse;
    justify-content: center;
    justify-self: end;
    align-self: center;
    width: max-content;
    height: auto;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
  }

  .counter-btn,
  .counter-box button,
  .vert-controls button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .phone-wrapper input {
    min-width: 0;
  }

  .delivery-time-row {
    flex-direction: row;
    gap: 5px;
    align-items: stretch;
  }

  .radio-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 62px;
    padding: 16px 14px;
    border-radius: 16px;
    background: #ffffff;
    border-color: #d9dee5;
    box-shadow: none;
  }

  .radio-card.active {
    background: #f1faee;
    border-color: #99d18e;
    box-shadow: inset 0 0 0 1px rgba(82, 188, 83, 0.12);
  }

  .radio-top {
    margin-bottom: 0;
    width: 22px;
    min-width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
  }

  .radio-card .checkmark {
    width: 24px;
    height: 24px;
    font-size: 20px;
    align-items: center;
    justify-content: center;
  }

  .radio-card .empty {
    width: 24px;
    height: 24px;
    border-width: 2px;
    border-color: #cfd5dc;
  }

  .radio-text {
    display: block;
    font-weight: 600;
  }

  .radio-text,
  .calendar-wrap {
    font-size: 13px;
    line-height: 1.25;
  }

  .calendar-wrap {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
    min-width: 0;
  }

  .calendar-wrap span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .calendar-wrap .material-icons-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 14px !important;
    border-radius: 6px;
    background: #eef2f6;
  }

  .checkout-row .side-btn {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .checkout-btn {
    height: 56px;
    border-radius: 16px;
  }

  .checkout-label {
    font-size: 15px;
  }

  .total-price {
    font-size: 26px;
  }

  .checkbox-label {
    font-size: 10px;
  }

  .date-modal-content {
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  .time-columns {
    gap: 20px;
  }

  .date-modal-body {
    padding: 16px 16px 10px;
  }

  .date-modal-title {
    font-size: 20px;
  }

  .date-picker-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .date-picker-label {
    width: auto;
  }

  .date-picker-value-btn,
  .time-tab {
    width: 100%;
    flex-basis: 100%;
  }

  .date-popup-layer {
    inset: 0 0 84px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
  }

  .picker-popup-card {
    width: min(100%, 344px);
    max-height: 100%;
    padding: 16px;
    border-radius: 22px;
    overflow-y: auto;
  }

  .picker-popup-header {
    margin-bottom: 14px;
  }

  .picker-popup-title {
    font-size: 19px;
    line-height: 24px;
  }

  .picker-popup-nav {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .calendar-weekdays {
    margin-bottom: 8px;
  }

  .calendar-weekdays span {
    font-size: 11px;
    line-height: 14px;
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-day-empty,
  .calendar-day-btn {
    aspect-ratio: auto;
    min-height: 44px;
  }

  .calendar-day-btn {
    border-radius: 14px;
    font-size: 17px;
  }

  .date-time-popup {
    width: min(100%, 344px);
  }

  .time-picker-wrapper--popup {
    margin-top: 6px;
    height: 188px;
    padding: 14px;
    border-radius: 18px;
  }

  .time-highlight {
    left: 14px;
    right: 14px;
    height: 56px;
    border-radius: 16px;
  }

  .time-picker-wrapper::before,
  .time-picker-wrapper::after {
    left: 14px;
    right: 14px;
    height: 38px;
  }

  .time-columns {
    gap: 28px;
  }

  .time-col {
    height: 180px;
    width: 72px;
  }

  .time-num,
  .time-spacer {
    height: 54px;
  }

  .time-num {
    font-size: 18px;
  }

  .time-num.active {
    font-size: 26px;
  }

  .time-colon {
    font-size: 26px;
  }

  .picker-popup-footer {
    margin-top: 16px;
  }

  .picker-popup-done-btn {
    height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }

  .options-title {
    font-size: 20px;
    padding: 16px 16px 10px;
  }

  .options-body {
    padding: 0 16px 10px;
    overflow-x: clip;
  }

  .options-footer {
    padding: 10px 16px 16px;
  }

  .date-footer {
    padding: 10px 16px 16px;
  }

  .auth-tab {
    font-size: 14px;
    padding: 8px;
  }

  .home-features,
  .home-services-divider,
  .home-services-preview,
  .home-quick-actions,
  .home-faq,
  .home-service-links,
  .popular-services {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-services-divider-shell {
    justify-content: center;
  }

  .home-services-divider-shell::before {
    display: block;
    flex: 1 1 56px;
  }

  .home-services-divider-shell::after {
    display: block;
    flex: 1 1 56px;
  }

  .home-services-divider-shell h2 {
    text-align: center;
  }

  .home-action-card {
    min-height: 172px;
    padding: 20px;
    border-radius: 22px;
    gap: 14px;
  }

  .home-action-card-top {
    gap: 10px;
  }

  .home-action-card-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .home-action-card-top h2 {
    max-width: 9ch;
    font-size: 24px;
    line-height: 1;
  }

  .home-action-card-note {
    font-size: 13px;
    line-height: 1.4;
  }

  .popular-services,
  .home-service-links {
    margin-top: 18px;
  }

  .popular-services-shell {
    padding: 22px 18px 18px;
    border-radius: 22px;
    text-align: center;
  }

  .popular-services-shell h2 {
    max-width: none;
    width: 100%;
    font-size: 26px;
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .popular-services-tags {
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .popular-service-tag {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .loaders-service-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- PERFECT MOBILE HEADER --- */
@media (max-width: 979px) {
  body {
    padding-top: 92px !important;
  }
  
  .header {
    padding: 12px 0 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .header .container {
    padding: 0 12px;
  }
  
  .top-bar {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important; /* Центрируем номер телефона */
    align-items: center !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  
  /* Скрываем определение города в мобильной версии */
  .top-bar > span:first-child {
    display: none !important; 
  }
  
  /* Стили для номера телефона */
  .top-bar > span:last-child {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-align: center !important;
  }
  
  .top-bar > span:last-child::after {
    display: none !important; /* Убираем ломающее верстку примечание */
  }
  
  .main-nav {
    min-height: auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px;
  }
  
  .logo {
    font-size: 26px !important;
    max-width: 140px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 767px) {
  .header .container {
    padding: 0 8px;
  }
}

/* ==========================================
   ПЕРЕОПРЕДЕЛЕНИЕ БЛОКА ПРИЛОЖЕНИЯ
========================================== */
@media (max-width: 979px) {
  .home-quick-actions {
    padding: 0 14px;
    margin-top: 6px;
  }

  .home-quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .home-action-card {
    min-height: 212px;
    padding: 24px;
    border-radius: 28px;
    gap: 14px;
  }

  .home-action-card-arrow {
    width: 56px;
    height: 56px;
    font-size: 27px;
  }

  .home-action-card-top h2 {
    max-width: 9ch;
    font-size: clamp(30px, 6vw, 42px);
  }

  .home-action-card-note {
    max-width: none;
    font-size: 15px;
  }

  .home-faq {
    padding: 0 14px;
    margin-top: 18px;
  }

  .home-faq-shell {
    padding: 22px 18px 18px;
    border-radius: 28px;
    text-align: center;
  }

  .home-faq-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-faq-sidebar h2 {
    max-width: none;
    width: 100%;
    font-size: 26px;
    line-height: 1.02;
    text-wrap: balance;
  }

  .home-faq-tabs {
    margin-top: 16px;
    gap: 8px;
    justify-content: center;
  }

  .home-faq-tab {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .home-faq-panel {
    gap: 8px;
    text-align: left;
  }

  .home-faq-item {
    border-radius: 20px;
  }

  .home-faq-question {
    min-height: 56px;
    padding: 16px 16px;
    gap: 12px;
  }

  .home-faq-question span:first-child {
    font-size: 17px;
  }

  .home-faq-answer {
    padding: 0 16px 16px;
  }

  .home-faq-answer p {
    max-width: none;
    font-size: 14px;
    line-height: 1.44;
  }
}

@media (max-width: 767px) {
  .home-quick-actions {
    margin-top: 2px;
  }

  .home-action-card {
    min-height: 188px;
    padding: 18px;
    border-radius: 24px;
    gap: 12px;
  }

  .home-action-card-top {
    gap: 12px;
  }

  .home-action-card-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .home-action-card-top h2 {
    font-size: 25px;
  }

  .home-action-card-note {
    font-size: 14px;
    line-height: 1.36;
  }

  .home-faq-shell {
    padding: 18px 14px 14px;
    border-radius: 24px;
  }

  .home-faq-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }

  .home-faq-tab {
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13.5px;
    justify-content: center;
  }

  .home-faq-item {
    border-radius: 18px;
  }

  .home-faq-question {
    min-height: 52px;
    padding: 14px 14px;
  }

  .home-faq-question span:first-child {
    font-size: 15px;
    line-height: 1.24;
  }

  .home-faq-icon {
    font-size: 18px;
  }

  .home-faq-answer {
    padding: 0 14px 14px;
  }

.home-faq-answer p {
  font-size: 13px;
}
}

@media (min-width: 768px) and (max-width: 979px) {
  .hero {
    flex-direction: column-reverse;
    padding: 2px 14px 30px;
    gap: 20px;
  }

  .hero-left {
    padding-top: 0;
  }

  .hero-right {
    margin-top: 0;
  }

  body.home-page .hero-right {
    margin-top: -24px;
  }

  body.home-page .hero-left {
    width: 100%;
    align-items: center;
  }

  body.home-page .hero-spotlight {
    width: min(100%, 760px);
    margin-top: 2px;
    margin-inline: auto;
    gap: 16px;
    transform: none;
    align-items: center;
  }

  body.home-page .hero-spotlight-copy {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  body.home-page .hero-spotlight-copy h1 {
    width: 100%;
    max-width: 8.6ch;
    margin-inline: auto;
    font-size: clamp(48px, 8.2vw, 72px);
    line-height: 0.9;
    letter-spacing: -0.062em;
    text-align: center;
    text-wrap: pretty;
  }

  body.home-page .hero-spotlight-rotating-word {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 0.94em;
    overflow: visible;
    -webkit-clip-path: inset(0 0 -0.18em 0);
    clip-path: inset(0 0 -0.18em 0);
    vertical-align: baseline;
    text-align: center;
  }

  body.home-page .hero-spotlight-accent {
    width: 100%;
    margin-inline: auto;
    font-size: clamp(22px, 4.2vw, 28px);
    line-height: 1.04;
    letter-spacing: -0.026em;
    text-align: center;
  }

  body.home-page .hero-spotlight-media,
  body.home-page .hero-spotlight-image {
    width: min(100%, 760px);
    min-height: clamp(300px, 43vw, 430px);
    margin-inline: auto;
  }

  body.home-page .hero-spotlight-badge-main {
    top: clamp(30px, 5vw, 54px);
    right: clamp(10px, 3vw, 24px);
  }

  body.home-page .hero-spotlight-support-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  body.home-page .popular-services-shell h2 {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 4.8vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-align: center;
  }

  body.home-page .widget-top {
    padding: 10px;
    padding-bottom: 28px;
    gap: 8px;
    border-radius: 22px;
  }

  body.home-page .widget-bottom {
    padding: 14px;
    gap: 10px;
    margin-top: -12px;
    border-radius: 22px;
  }

  body.home-page .truck-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 18px;
    align-items: center;
    padding: 12px 12px 12px 10px;
    gap: 8px 10px;
  }

  body.home-page .truck-img {
    width: 78px;
    height: 50px;
  }

  body.home-page .truck-info {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
  }

  body.home-page .truck-info strong {
    font-size: 16.8px;
    line-height: 1;
    letter-spacing: -0.028em;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  body.home-page .truck-info strong::after {
    content: "•";
    margin: 0 6px 0 7px;
    font-size: 0.68em;
    font-weight: 800;
    line-height: 1;
    color: #4b5565;
  }

  body.home-page .truck-info .green-text {
    margin-top: 0;
    font-size: 12.8px;
    line-height: 1.16;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #6f7c8f;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-page .arrow-icon {
    font-size: 20px;
    justify-self: end;
  }

  body.home-page .home-faq-sidebar h2 {
    font-size: clamp(34px, 4.8vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  body.home-page .home-faq-tab {
    min-height: 44px;
    padding: 0 16px;
    font-size: 15.5px;
    line-height: 1.08;
  }

  body.home-page .home-faq-question span:first-child {
    font-size: 18px;
    line-height: 1.24;
    letter-spacing: -0.022em;
  }

  body.home-page .home-faq-answer p {
    font-size: 15.5px;
    line-height: 1.52;
    letter-spacing: -0.01em;
  }

  .home-services-preview {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-quick-actions {
    margin-top: 18px;
  }

  .home-services-preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-services-preview-card {
    height: auto;
    min-height: 212px;
  }

  .home-services-preview-card--cargo {
    padding-right: 240px;
  }

  .home-services-preview-card--express {
    padding-right: 266px;
  }

  .home-services-preview-card--moving {
    padding-right: 308px;
  }

  .home-services-preview-card--loaders {
    padding-right: 248px;
  }

  .home-services-preview-visual--cargo {
    right: -4px;
    bottom: 34px;
    width: 232px;
  }

  .home-services-preview-visual--express {
    right: 4px;
    bottom: 16px;
    width: 224px;
  }

  .home-services-preview-visual--moving {
    right: -34px;
    width: 320px;
  }

  .home-services-preview-visual--loaders {
    right: 10px;
    width: 232px;
  }
}
@media (max-width: 767px) {
  .popular-services-shell {
    padding: 18px 14px 16px;
    border-radius: 20px;
    text-align: center;
  }

  .popular-services-shell h2 {
    max-width: 8ch;
    font-size: 26px;
    line-height: 1.02;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .popular-services-tags {
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .popular-service-tag {
    min-height: 34px;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
  }

  .loaders-service-types {
    margin-top: 18px;
    padding: 0 14px;
  }

  .loaders-service-types-shell {
    padding: 28px 18px 18px;
    border-radius: 24px;
  }

  .loaders-service-types-header h2 {
    max-width: 8ch;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .loaders-service-types-header p {
    font-size: 14px;
  }

  .loaders-service-types-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .loaders-service-type-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .loaders-service-type-card h3 {
    font-size: 19px;
  }

  .loaders-service-type-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-top {
    padding: 12px 0 10px;
  }

  .footer-top--with-app {
    gap: 12px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    width: 100%;
    gap: 8px;
  }

  .footer-nav li {
    display: flex;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    height: 100%;
    padding: 8px 10px;
    border-radius: 14px;
    background: #f8fafc;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
  }

  .footer-nav a[href="datenschutz.html"] {
    padding-inline: 12px;
    font-size: 11px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body.home-page.business-page .footer-nav a {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(118, 128, 141, 0.14);
  }

  .moving-footer-app--inline .app-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .moving-footer-app--inline .store-badge {
    width: 100%;
    max-width: none;
  }

  .moving-footer-app--inline .store-badge img {
    display: block;
    width: 100%;
    height: auto;
  }

  .footer-copyright {
    gap: 8px;
    padding-top: 16px;
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-container--compact .footer-copyright {
    padding-top: 6px;
  }
}

@media (max-width: 767px) {
  .business-hero-shell,
  .business-solutions,
  .business-proof,
  .business-process,
  .business-cta {
    padding: 22px 18px;
  }

  .business-page-eyebrow,
  .business-section-kicker {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

  .business-metric-pill strong {
    font-size: 24px;
  }

  .business-signal-card strong {
    font-size: 24px;
  }
}

/* === ЭЛЕГАНТНЫЙ БЛОК ПРОЦЕССА === */
.elegant-process {
  max-width: 1300px;
  margin: 20px auto 0;
  padding: 0 5%;
  background: transparent;
  font-family: var(--home-font-sans, "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.ep-container {
  padding: 36px 32px 32px;
  background: #ffffff;
  border: 1px solid #e8e4db;
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.03);
}

.ep-header {
  max-width: 620px;
  margin: 0 auto 26px;
  text-align: center;
}

.ep-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #00a33a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ep-header h2 {
  margin-bottom: 10px;
  color: #111827;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: var(--home-track-tight);
  line-height: 1.02;
  text-wrap: balance;
}

.ep-header p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.45;
  text-wrap: balance;
}

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

.ep-step {
  min-height: 176px;
  padding: 22px;
  background: #fbfaf7;
  border: 1px solid #ece7dd;
  border-radius: 20px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ep-step:hover {
  border-color: #ddd6c8;
  background: #ffffff;
}

.ep-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 24px;
  margin-bottom: 18px;
  color: #7a8594;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.ep-content h3 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.ep-content p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.55;
  max-width: 28ch;
}

@media (max-width: 979px) {
  .elegant-process {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .ep-step {
    min-height: 164px;
  }

  .ep-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .elegant-process {
    margin-top: 10px;
    padding: 0 14px;
  }

  .ep-container {
    padding: 28px 18px 18px;
    border-radius: 24px;
  }

  .ep-header h2 {
    font-size: 30px;
  }

  .ep-header p {
    font-size: 14px;
  }

  .ep-timeline {
    grid-template-columns: 1fr;
  }

  .ep-step {
    min-height: 0;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .ep-content h3 {
    font-size: 20px;
  }

  .ep-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 479px) {
  body.home-page .hero {
    padding-inline: 6px;
    gap: 10px;
  }

  body.home-page .hero-left {
    align-items: center;
  }

  body.home-page .hero-spotlight {
    margin-top: 2px;
    gap: 16px;
  }

  body.home-page .hero-spotlight-copy {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  body.home-page .hero-spotlight-copy h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(44px, 13.8vw, 52px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-align: center;
  }

  body.home-page .hero-spotlight-accent {
    width: 100%;
    font-size: clamp(20px, 6.4vw, 24px);
    line-height: 1.06;
    text-align: center;
  }

  body.home-page .popular-services,
  body.home-page .home-service-links {
    padding: 0 12px;
    margin-top: 16px;
  }

  body.home-page .popular-services-shell {
    padding: 18px 14px 16px;
    border-radius: 22px;
  }

  body.home-page .popular-services-shell h2 {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 26px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-align: center;
  }

  body.home-page .popular-services-shell h2.popular-services-title {
    text-wrap: initial;
  }

  body.home-page .popular-services-title-line {
    display: block;
  }

  body.home-page .home-services-divider {
    margin-top: 14px;
  }

  body.home-page .home-services-divider-shell {
    gap: 10px;
  }

  body.home-page .home-services-divider-shell::before,
  body.home-page .home-services-divider-shell::after {
    flex: 1 1 30px;
  }

  body.home-page .home-services-divider-shell h2 {
    font-size: 19px;
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview {
    margin-top: 12px;
  }

  body.home-page .home-services-preview-grid {
    gap: 12px;
  }

  body.home-page .home-quick-actions {
    margin-top: 14px;
  }

  body.home-page .task-panel--home + .home-quick-actions {
    margin-top: 28px;
  }

  body.home-page .task-panel--home + .home-quick-actions + .home-business-teaser {
    margin-top: 28px;
  }

  body.home-page .home-services-preview-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    grid-template-areas:
      "title visual"
      "copy visual"
      "tags tags";
    align-items: start;
    column-gap: 10px;
    row-gap: 9px;
    position: relative;
    height: auto;
    min-height: 190px;
    padding: 16px 16px 14px;
    border-radius: 22px;
    overflow: hidden;
  }

  body.home-page .home-services-preview-card--cargo,
  body.home-page .home-services-preview-card--express,
  body.home-page .home-services-preview-card--moving,
  body.home-page .home-services-preview-card--loaders {
    padding-right: 16px;
  }

  body.home-page .home-services-preview-card h3 {
    grid-area: title;
    max-width: none;
    position: relative;
    z-index: 1;
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.041em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview-card p {
    grid-area: copy;
    position: relative;
    z-index: 1;
    margin-top: 0;
    max-width: none;
    font-size: 12.8px;
    line-height: 1.38;
    letter-spacing: -0.015em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-services-preview-tags {
    grid-area: tags;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 2px;
    padding-top: 0;
    gap: 6px;
    justify-content: flex-start;
  }

  body.home-page .home-services-preview-tags span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11.2px;
    line-height: 1;
  }

  body.home-page .home-services-preview-card--cargo .home-services-preview-tags,
  body.home-page .home-services-preview-card--express .home-services-preview-tags,
  body.home-page .home-services-preview-card--moving .home-services-preview-tags,
  body.home-page .home-services-preview-card--loaders .home-services-preview-tags {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 5px;
    align-items: center;
  }

  body.home-page .home-services-preview-card--cargo .home-services-preview-tags span,
  body.home-page .home-services-preview-card--express .home-services-preview-tags span,
  body.home-page .home-services-preview-card--moving .home-services-preview-tags span,
  body.home-page .home-services-preview-card--loaders .home-services-preview-tags span {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0 6px;
    font-size: 9.9px;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview-visual {
    position: absolute;
    top: 16px;
    right: 16px;
    display: block;
    width: 92px;
    height: 92px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    z-index: 0;
    opacity: 1;
    overflow: visible;
  }

  body.home-page .home-services-preview-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  body.home-page .home-services-preview-visual--cargo {
    top: 16px;
    right: 6px;
    width: 122px;
    height: 122px;
  }

  body.home-page .home-services-preview-visual--express {
    width: 92px;
    height: 92px;
  }

  body.home-page .home-services-preview-visual--moving {
    width: 92px;
    height: 92px;
  }

  body.home-page .home-services-preview-visual--loaders {
    top: 10px;
    right: 8px;
    width: 138px;
    height: 138px;
  }

  body.home-page .popular-services-tags {
    display: block;
    margin-top: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 6px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  body.home-page .popular-services-tags::-webkit-scrollbar {
    display: none;
  }

  body.home-page .popular-services-marquee-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    animation: home-popular-tags-marquee 52s linear infinite;
    will-change: transform;
  }

  body.home-page .popular-services-tag-group,
  body.home-page .popular-services-tag-group--clone {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  body.home-page .popular-services-tag-group--clone {
    display: flex;
  }

  body.home-page .popular-service-tag {
    flex: 0 0 auto;
    min-height: 36px;
    max-width: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
    text-wrap: nowrap;
  }

  body.home-page .popular-services-tags:hover .popular-services-marquee-track,
  body.home-page .popular-services-tags:active .popular-services-marquee-track {
    animation-play-state: paused;
  }

  body.home-page .widget-top {
    padding: 10px;
    padding-bottom: 28px;
    gap: 8px;
    border-radius: 22px;
  }

  body.home-page .widget-bottom {
    padding: 14px;
    gap: 10px;
    margin-top: -12px;
    border-radius: 22px;
  }

  body.home-page .card {
    border-radius: 15px;
  }

  body.home-page .address-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px;
    grid-template-areas: none;
    padding: 10px 12px;
    gap: 8px;
    align-items: center;
  }

  body.home-page .address-card .address-col:first-of-type {
    grid-area: auto;
  }

  body.home-page .address-card .destination-col {
    grid-area: auto;
  }

  body.home-page .address-card .swap-btn {
    grid-area: auto;
    align-self: center;
  }

  body.home-page .address-card .add-address-btn {
    grid-area: auto;
    align-self: center;
  }

  body.home-page .address-col {
    min-width: 0;
  }

  body.home-page .address-col .label {
    font-size: 11px;
    margin-bottom: 5px;
    line-height: 1.08;
    letter-spacing: 0.05em;
  }

  body.home-page .address-col input {
    font-size: 15.5px;
    line-height: 1.16;
    letter-spacing: -0.024em;
  }

  body.home-page .address-card .swap-btn,
  body.home-page .address-card .add-address-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  body.home-page .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  body.home-page .truck-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 18px;
    align-items: center;
    padding: 12px 12px 12px 10px;
    gap: 8px 10px;
  }

  body.home-page .truck-img {
    width: 78px;
    height: 50px;
  }

  body.home-page .truck-info {
    min-width: 0;
  }

  body.home-page .truck-info strong {
    font-size: 15.8px;
    line-height: 1.02;
  }

  body.home-page .truck-info .green-text {
    margin-top: 3px;
    font-size: 12.1px;
    line-height: 1.18;
    letter-spacing: -0.01em;
  }

  body.home-page .arrow-icon {
    font-size: 20px;
    justify-self: end;
  }

  body.home-page .loaders-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 9px 10px;
    padding: 12px 10px 10px;
  }

  body.home-page .loader-img {
    grid-row: 1;
    width: 52px;
    height: 42px;
    align-self: center;
  }

  body.home-page .loader-text {
    grid-column: 2;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body.home-page #loadersTextLine1 {
    font-size: 12.8px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: normal;
    color: var(--home-text-strong);
  }

  body.home-page #loadersTextLine2 {
    margin-top: 0;
    font-size: 12.2px;
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: var(--home-text-subtle);
  }

  body.home-page .counter-box {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
  }

  body.home-page .counter-box button,
  body.home-page .counter-btn {
    width: 40px;
    height: 40px;
  }

  body.home-page .counter-texts {
    min-width: 0;
  }

  body.home-page .counter-texts > span {
    font-size: 9.6px;
  }

  body.home-page .counter-texts strong {
    justify-content: center;
  }

  body.home-page .two-col-row {
    flex-direction: row;
    gap: 8px;
  }

  body.home-page .options-card,
  body.home-page .time-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 78px;
    padding: 12px 12px;
  }

  body.home-page .time-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: stretch;
  }

  body.home-page .time-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    min-height: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body.home-page .options-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 6px;
    align-items: center;
    font-size: 12px;
    line-height: 1.15;
  }

  body.home-page .options-card > span:first-child {
    display: flex;
    align-items: center;
    align-self: center;
    min-width: 0;
    overflow: hidden;
    max-width: none;
    font-size: 0;
    line-height: 1;
  }

  body.home-page .options-card > span:first-child::after {
    content: var(--home-mobile-options-label);
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13.2px;
    line-height: 1;
    letter-spacing: -0.015em;
    font-weight: 800;
  }

  body.home-page .options-control-shell {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 3px;
    align-self: center;
    justify-self: end;
    border-radius: 11px;
    background: var(--home-bg-control, #f4f5f7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  body.home-page .options-icon {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
    font-size: 17px;
    color: #6b7688;
    opacity: 0.95;
    flex-shrink: 0;
  }

  body.home-page .time-card .label {
    margin-bottom: 4px;
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
  }

  body.home-page .time-card .label::after {
    content: var(--home-mobile-time-label);
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9.8px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--home-text-subtle);
  }

  body.home-page .time-info #rentalTimeText {
    font-size: 18px;
    line-height: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .options-summary {
    gap: 1px;
    justify-content: center;
  }

  body.home-page .options-summary-label {
    display: none;
  }

  body.home-page .options-summary-value {
    font-size: 12.2px;
    line-height: 1.05;
    letter-spacing: -0.01em;
  }

  body.home-page .vert-controls {
    justify-self: end;
    align-self: center;
    width: max-content;
    height: auto;
    min-height: auto;
    padding: 4px;
    gap: 3px;
    border-radius: 12px;
  }

  body.home-page .vert-controls button {
    width: 32px;
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    border-radius: 11px;
  }

  body.home-page .phone-group {
    min-height: 74px;
    padding: 8px 9px 8px 12px;
    border-radius: 18px;
  }

  body.home-page .phone-wrapper {
    align-items: center;
    gap: 8px;
  }

  body.home-page .phone-input-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 3px;
    min-width: 0;
  }

  body.home-page .phone-input-main input {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    font-size: 15.2px;
    font-weight: 700;
    line-height: 1.02;
    padding: 0;
    letter-spacing: -0.024em;
  }

  body.home-page .phone-input-main .floating-label {
    grid-column: 1;
    grid-row: 1;
    position: static;
    font-size: 10.6px;
    line-height: 1;
    letter-spacing: 0.016em;
    color: #7f8aa0;
  }

  body.home-page .phone-input-main .phone-empty-state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    min-width: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  body.home-page .phone-empty-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 33px;
    height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: #eef8ef;
    color: #16a34a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  body.home-page .phone-empty-copy {
    min-width: 0;
    color: #a0a8b7;
    font-size: 13.1px;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .phone-helper-text {
    display: block;
    grid-column: 1;
    grid-row: 3;
    font-size: 10.2px;
    line-height: 1.08;
    color: #9aa4b6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .phone-input-main input:focus ~ .floating-label,
  body.home-page .phone-input-main input:not(:placeholder-shown) ~ .floating-label {
    top: auto;
    font-size: 10.6px;
    color: #748092;
  }

  body.home-page .phone-input-main input:focus ~ .phone-empty-state,
  body.home-page .phone-input-main input:not(:placeholder-shown) ~ .phone-empty-state {
    opacity: 0;
  }

  body.home-page .user-icon {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 12px;
    font-size: 21px;
    background: #f3f6fb;
    color: #3d4760;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
  }

  body.home-page .delivery-time-row {
    flex-direction: column;
    gap: 8px;
  }

  body.home-page .radio-card {
    width: 100%;
    min-height: 58px;
    padding: 14px;
    gap: 10px;
  }

  body.home-page .radio-text,
  body.home-page .calendar-wrap {
    font-size: 13px;
  }

  body.home-page .calendar-wrap span:last-child {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  body.home-page .checkout-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 6px;
  }

  body.home-page .checkout-row .side-btn,
  body.home-page .checkout-btn {
    height: 58px;
    border-radius: 16px;
  }

  body.home-page .checkout-row .side-btn {
    width: 52px;
  }

  body.home-page .wallet-badge {
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 8px;
  }

  body.home-page .checkout-label {
    font-size: 15px;
  }

  body.home-page .total-price {
    font-size: 25px;
  }

  body.home-page .loaders-card {
    position: relative;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
  }

  body.home-page .loaders-card.hover-outline:hover,
  body.home-page .loaders-card.hover-outline:active,
  body.home-page .loaders-card.hover-outline.active {
    border-color: #e5e7eb;
    transform: none;
    box-shadow: none;
  }

  body.home-page .info-tooltip-wrap {
    position: relative;
    z-index: 12;
  }

  body.home-page .tooltip-box {
    top: auto;
    right: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    width: min(236px, calc(100vw - 36px));
    padding: 12px 13px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.42;
    color: #4f5b6b;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    transform: translateX(-50%) translateY(6px);
    z-index: 1405;
  }

  body.home-page .tooltip-box::before {
    top: 100%;
    bottom: auto;
    left: 50%;
    right: auto;
    margin-left: -8px;
    border-color: #ffffff transparent transparent transparent;
  }

  body.home-page .info-tooltip-wrap:hover .tooltip-box,
  body.home-page .info-tooltip-wrap:focus-within .tooltip-box {
    transform: translateX(-50%) translateY(0);
  }

  body.home-page .agreements {
    gap: 10px;
  }

  body.home-page .checkbox-label {
    font-size: 11.2px;
    line-height: 1.48;
  }

  body.home-page .flexlast-shared-header .header__inner {
    padding-inline: 6px !important;
  }

  body.home-page .flexlast-shared-header .main-nav {
    gap: 8px !important;
  }

  body.home-page .flexlast-shared-header .logo {
    margin-left: 8px !important;
    font-size: 24px !important;
  }

  body.home-page .flexlast-shared-header .header-mobile-phone .header-phone-number {
    font-size: 13px !important;
    letter-spacing: -0.04em !important;
  }

  body.home-page .flexlast-shared-header .header-action-button:not(.header-context-button) {
    min-width: 36px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    padding: 0 !important;
  }

  body.home-page #truckModal {
    padding: 8px;
    align-items: stretch;
    justify-content: stretch;
  }

  body.home-page #truckModal .truck-modal-content {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
  }

  body.home-page #truckModal .truck-modal-header {
    gap: 12px;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 14px 10px;
  }

  body.home-page #truckModal .truck-modal-title {
    font-size: 18.7px;
    line-height: 1.03;
  }

  body.home-page #truckModal .truck-modal-caption {
    font-size: 12.6px;
    line-height: 1.32;
  }

  body.home-page #truckModal .truck-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  body.home-page #truckModal .truck-list {
    padding: 10px 14px 14px;
    gap: 8px;
    background: #f8fafc;
  }

  body.home-page #truckModal .truck-row {
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
    align-items: flex-start;
  }

  body.home-page #truckModal .truck-pic {
    width: 70px;
    height: 52px;
    margin-top: 2px;
  }

  body.home-page #truckModal .truck-texts {
    min-width: 0;
  }

  body.home-page #truckModal .truck-name-row {
    gap: 3px;
    margin-bottom: 8px;
  }

  body.home-page #truckModal .truck-name {
    font-size: 17px;
    line-height: 1;
  }

  body.home-page #truckModal .truck-label {
    font-size: 11px;
    line-height: 1.2;
  }

  body.home-page #truckModal .truck-meta {
    gap: 5px;
  }

  body.home-page #truckModal .meta-pill {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.home-page #truckModal .truck-check {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }

  body.home-page #truckModal .truck-check .material-icons-round {
    font-size: 18px;
  }

  body.home-page #truckModal .truck-modal-footer {
    padding: 10px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  body.home-page #truckModal .truck-back-btn {
    width: 52px;
    border-radius: 15px;
  }

  body.home-page #truckModal .truck-confirm-btn {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 16px;
  }

  body.home-page #truckModal {
    padding: 6px;
  }

  body.home-page #truckModal .truck-modal-content {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    height: calc(100dvh - 12px);
    max-height: calc(100dvh - 12px);
    border-radius: 22px;
  }

  body.home-page #truckModal .truck-modal-header {
    padding: calc(12px + env(safe-area-inset-top, 0px)) 12px 8px;
  }

  body.home-page #truckModal .truck-modal-title {
    font-size: 17px;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  body.home-page #truckModal .truck-modal-caption {
    font-size: 11.5px;
    line-height: 1.24;
  }

  body.home-page #truckModal .truck-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  body.home-page #truckModal .truck-list {
    padding: 8px 12px 12px;
    gap: 7px;
  }

  body.home-page #truckModal .truck-row {
    padding: 10px;
    border-radius: 16px;
    gap: 8px;
  }

  body.home-page #truckModal .truck-pic {
    width: 60px;
    height: 44px;
  }

  body.home-page #truckModal .truck-name {
    font-size: 15.8px;
    line-height: 0.98;
  }

  body.home-page #truckModal .truck-label {
    font-size: 10.5px;
    line-height: 1.14;
  }

  body.home-page #truckModal .truck-meta {
    gap: 4px;
  }

  body.home-page #truckModal .meta-pill {
    min-height: 22px;
    padding: 2px 7px;
    font-size: 9.5px;
    line-height: 1.05;
  }

  body.home-page #truckModal .truck-check {
    width: 22px;
    height: 22px;
  }

  body.home-page #truckModal .truck-check .material-icons-round {
    font-size: 16px;
  }

  body.home-page #truckModal .truck-modal-footer {
    padding: 8px 12px calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }

  body.home-page #truckModal .truck-back-btn {
    width: 46px;
    border-radius: 14px;
  }

  body.home-page #truckModal .truck-confirm-btn {
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 15px;
  }
}

@media (max-width: 479px) {
  body.home-page .home-feature-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 11px;
  }

  body.home-page .home-feature-icon {
    width: 60px;
    height: 60px;
  }

  body.home-page .home-feature-copy {
    padding-left: 8px;
  }

  body.home-page .address-col input {
    font-size: 13px;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  body.home-page .home-feature-card h3 {
    width: 100%;
    max-width: none;
    font-size: 17.2px;
    line-height: 1.14;
    letter-spacing: -0.02em;
  }

  body.home-page .home-feature-card p {
    width: 100%;
    max-width: none;
    font-size: 13.4px;
    line-height: 1.42;
  }

  body.home-page .popular-services,
  body.home-page .home-service-links {
    padding: 0 12px;
    margin-top: 16px;
  }

  body.home-page .popular-services-shell {
    padding: 18px 12px 16px;
    border-radius: 22px;
  }

  body.home-page .popular-services-shell h2 {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-align: center;
  }

  body.home-page .popular-services-shell h2.popular-services-title {
    text-wrap: initial;
  }

  body.home-page .popular-services-title-line {
    display: block;
  }

  body.home-page .popular-services-tags {
    display: block;
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 6px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  body.home-page .popular-services-tags::-webkit-scrollbar {
    display: none;
  }

  body.home-page .popular-services-marquee-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    animation: home-popular-tags-marquee 52s linear infinite;
    will-change: transform;
  }

  body.home-page .popular-services-tag-group,
  body.home-page .popular-services-tag-group--clone {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  body.home-page .popular-services-tag-group--clone {
    display: flex;
  }

  body.home-page .popular-service-tag {
    flex: 0 0 auto;
    min-height: 36px;
    max-width: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13.2px;
    line-height: 1.14;
    white-space: nowrap;
    text-align: center;
    text-wrap: nowrap;
  }

  body.home-page .popular-services-tags:hover .popular-services-marquee-track,
  body.home-page .popular-services-tags:active .popular-services-marquee-track {
    animation-play-state: paused;
  }

  body.home-page .hero {
    padding-inline: 6px;
    gap: 10px;
  }

  body.home-page .hero-left {
    align-items: center;
  }

  body.home-page .hero-spotlight {
    margin-top: 2px;
    gap: 16px;
  }

  body.home-page .hero-spotlight-copy {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  body.home-page .hero-spotlight-copy h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(44px, 13.8vw, 52px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-align: center;
  }

  body.home-page .hero-spotlight-accent {
    width: 100%;
    font-size: clamp(20px, 6.4vw, 24px);
    line-height: 1.06;
    text-align: center;
  }

  body.home-page .home-services-divider {
    margin-top: 14px;
  }

  body.home-page .home-services-divider-shell {
    gap: 10px;
  }

  body.home-page .home-services-divider-shell::before,
  body.home-page .home-services-divider-shell::after {
    flex: 1 1 30px;
  }

  body.home-page .home-services-divider-shell h2 {
    font-size: 19px;
    line-height: 1.02;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview {
    margin-top: 12px;
  }

  body.home-page .home-services-preview-grid {
    gap: 12px;
  }

  body.home-page .home-quick-actions {
    margin-top: 14px;
  }

  body.home-page .home-services-preview-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    grid-template-areas:
      "title visual"
      "copy visual"
      "tags tags";
    align-items: start;
    column-gap: 10px;
    row-gap: 8px;
    position: relative;
    height: auto;
    min-height: 182px;
    padding: 16px 16px 14px;
    border-radius: 22px;
    overflow: hidden;
  }

  body.home-page .home-services-preview-card--cargo,
  body.home-page .home-services-preview-card--express,
  body.home-page .home-services-preview-card--moving,
  body.home-page .home-services-preview-card--loaders {
    padding-right: 16px;
  }

  body.home-page .home-services-preview-card h3 {
    grid-area: title;
    max-width: none;
    position: relative;
    z-index: 1;
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.041em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview-card p {
    grid-area: copy;
    position: relative;
    z-index: 1;
    margin-top: 0;
    max-width: none;
    font-size: 14.8px;
    line-height: 1.38;
    letter-spacing: -0.015em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-services-preview-tags {
    grid-area: tags;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 2px;
    padding-top: 0;
    gap: 6px;
    justify-content: flex-start;
  }

  body.home-page .home-services-preview-tags span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11.8px;
    line-height: 1;
  }

  body.home-page .home-services-preview-card--cargo .home-services-preview-tags,
  body.home-page .home-services-preview-card--express .home-services-preview-tags,
  body.home-page .home-services-preview-card--moving .home-services-preview-tags,
  body.home-page .home-services-preview-card--loaders .home-services-preview-tags {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 5px;
    align-items: center;
  }

  body.home-page .home-services-preview-card--cargo .home-services-preview-tags span,
  body.home-page .home-services-preview-card--express .home-services-preview-tags span,
  body.home-page .home-services-preview-card--moving .home-services-preview-tags span,
  body.home-page .home-services-preview-card--loaders .home-services-preview-tags span {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0 6px;
    font-size: 10.1px;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview-visual {
    position: absolute;
    top: 16px;
    right: 16px;
    display: block;
    width: 92px;
    height: 92px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    z-index: 0;
    opacity: 1;
    overflow: visible;
  }

  body.home-page .home-services-preview-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  body.home-page .home-services-preview-visual--express,
  body.home-page .home-services-preview-visual--moving {
    width: 92px;
    height: 92px;
  }

  body.home-page .home-services-preview-visual--cargo {
    top: 16px;
    right: 6px;
    width: 122px;
    height: 122px;
  }

  body.home-page .home-services-preview-visual--loaders {
    top: 10px;
    right: 8px;
    width: 138px;
    height: 138px;
  }

  body.home-page .widget-top {
    padding: 10px;
    padding-bottom: 28px;
    gap: 8px;
    border-radius: 22px;
  }

  body.home-page .widget-bottom {
    padding: 14px;
    gap: 10px;
    margin-top: -12px;
    border-radius: 22px;
  }

  body.home-page .card {
    border-radius: 15px;
  }

  body.home-page .truck-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 18px;
    align-items: center;
    padding: 12px 12px 12px 10px;
    gap: 8px 10px;
  }

  body.home-page .truck-img {
    width: 78px;
    height: 50px;
  }

  body.home-page .truck-info {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
  }

  body.home-page .truck-info strong {
    font-size: 16.5px;
    line-height: 1;
    letter-spacing: -0.028em;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  body.home-page .truck-info strong::after {
    content: "•";
    margin: 0 6px 0 7px;
    font-size: 0.68em;
    font-weight: 800;
    line-height: 1;
    color: #4b5565;
  }

  body.home-page .truck-info .green-text {
    display: inline;
    margin-top: 0;
    font-size: 13.1px;
    line-height: 1.16;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #6f7c8f;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-page .arrow-icon {
    font-size: 20px;
    justify-self: end;
  }

  body.home-page .loaders-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 9px 10px;
    padding: 12px 10px 10px;
    position: relative;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
  }

  body.home-page .loaders-card.hover-outline:hover,
  body.home-page .loaders-card.hover-outline:active,
  body.home-page .loaders-card.hover-outline.active {
    border-color: #e5e7eb;
    transform: none;
    box-shadow: none;
  }

  body.home-page .loader-img {
    grid-row: 1;
    width: 52px;
    height: 42px;
    align-self: center;
  }

  body.home-page .loader-text {
    grid-column: 2;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body.home-page #loadersTextLine1 {
    font-size: 14.4px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: normal;
    color: var(--home-text-strong);
  }

  body.home-page #loadersTextLine2 {
    margin-top: 0;
    font-size: 13.1px;
    line-height: 1.26;
    letter-spacing: -0.01em;
    color: var(--home-text-subtle);
  }

  body.home-page .counter-box {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
  }

  body.home-page .counter-box button,
  body.home-page .counter-btn {
    width: 40px;
    height: 40px;
  }

  body.home-page .counter-texts {
    min-width: 0;
  }

  body.home-page .counter-texts > span {
    font-size: 10.5px;
  }

  body.home-page .counter-texts strong {
    justify-content: center;
  }

  body.home-page .two-col-row {
    flex-direction: row;
    gap: 8px;
  }

  body.home-page .options-card,
  body.home-page .time-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 78px;
    padding: 12px 10px;
  }

  body.home-page .time-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: stretch;
  }

  body.home-page .time-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    min-height: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body.home-page .options-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    line-height: 1.15;
  }

  body.home-page .options-card > span:first-child {
    min-width: 0;
    max-width: none;
    font-size: 0;
    line-height: 1;
  }

  body.home-page .options-card > span:first-child::after {
    content: var(--home-mobile-options-label);
    display: block;
    font-size: 14.8px;
    line-height: 1;
    letter-spacing: -0.015em;
    font-weight: 800;
  }

  body.home-page .options-control-shell {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 4px;
    align-self: center;
    justify-self: end;
    border-radius: 12px;
    background: var(--home-bg-control, #f4f5f7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  body.home-page .options-icon {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
    font-size: 18px;
    color: #6b7688;
    opacity: 0.95;
    flex-shrink: 0;
  }

  body.home-page .time-card .label {
    margin-bottom: 4px;
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
  }

  body.home-page .time-card .label::after {
    content: var(--home-mobile-time-label);
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10.8px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--home-text-subtle);
  }

  body.home-page .time-info #rentalTimeText {
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .options-summary {
    gap: 1px;
    justify-content: center;
  }

  body.home-page .options-summary-label {
    display: none;
  }

  body.home-page .options-summary-value {
    font-size: 13.2px;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

  body.home-page .vert-controls {
    justify-self: end;
    align-self: center;
    width: max-content;
    height: auto;
    min-height: auto;
    padding: 4px;
    gap: 3px;
    border-radius: 12px;
  }

  body.home-page .vert-controls button {
    width: 32px;
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    border-radius: 11px;
  }

  body.home-page .phone-group {
    min-height: 76px;
    padding: 9px 9px 9px 13px;
    border-radius: 19px;
  }

  body.home-page .phone-wrapper {
    align-items: center;
    gap: 9px;
  }

  body.home-page .phone-input-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 3px;
    min-width: 0;
  }

  body.home-page .phone-input-main input {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    font-size: 15.9px;
    font-weight: 700;
    line-height: 1.02;
    padding: 0;
    letter-spacing: -0.026em;
  }

  body.home-page .phone-input-main .floating-label {
    grid-column: 1;
    grid-row: 1;
    position: static;
    font-size: 10.9px;
    line-height: 1;
    letter-spacing: 0.018em;
    color: #7f8aa0;
  }

  body.home-page .phone-input-main .phone-empty-state {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    min-width: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  body.home-page .phone-empty-prefix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 21px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef8ef;
    color: #16a34a;
    font-size: 11.3px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  body.home-page .phone-empty-copy {
    min-width: 0;
    color: #98a3b5;
    font-size: 13.7px;
    font-weight: 600;
    letter-spacing: -0.012em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .phone-helper-text {
    display: block;
    grid-column: 1;
    grid-row: 3;
    font-size: 10.5px;
    line-height: 1.1;
    color: #93a0b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .phone-input-main input:focus ~ .floating-label,
  body.home-page .phone-input-main input:not(:placeholder-shown) ~ .floating-label {
    top: auto;
    font-size: 10.9px;
    color: #748092;
  }

  body.home-page .phone-input-main input:focus ~ .phone-empty-state,
  body.home-page .phone-input-main input:not(:placeholder-shown) ~ .phone-empty-state {
    opacity: 0;
  }

  body.home-page .user-icon {
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 13px;
    font-size: 21px;
    background: #f3f6fb;
    color: #3d4760;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
  }

  body.home-page .checkout-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 6px;
  }

  body.home-page .checkout-row .side-btn,
  body.home-page .checkout-btn {
    height: 58px;
    border-radius: 16px;
  }

  body.home-page .checkout-row .side-btn {
    width: 52px;
  }

  body.home-page .wallet-badge {
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 8px;
  }

  body.home-page .checkout-label {
    font-size: 16.2px;
  }

  body.home-page .total-price {
    font-size: 27px;
  }

  body.home-page .info-tooltip-wrap {
    position: relative;
    z-index: 12;
  }

  body.home-page .tooltip-box {
    top: auto;
    right: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    width: min(236px, calc(100vw - 36px));
    padding: 12px 13px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.42;
    color: #4f5b6b;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    transform: translateX(-50%) translateY(6px);
    z-index: 1405;
  }

  body.home-page .tooltip-box::before {
    top: 100%;
    bottom: auto;
    left: 50%;
    right: auto;
    margin-left: -8px;
    border-color: #ffffff transparent transparent transparent;
  }

  body.home-page .info-tooltip-wrap:hover .tooltip-box,
  body.home-page .info-tooltip-wrap:focus-within .tooltip-box {
    transform: translateX(-50%) translateY(0);
  }

  body.home-page .agreements {
    gap: 10px;
  }

  body.home-page .checkbox-label {
    font-size: 12.1px;
    line-height: 1.52;
  }

  body.home-page .home-action-card-top h2 {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.045em;
  }

  body.home-page .home-action-card-note {
    font-size: 15.4px;
    line-height: 1.4;
  }

  body.home-page .home-faq-sidebar h2 {
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  body.home-page .home-faq-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  body.home-page .home-faq-tab {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14.5px;
    justify-content: center;
  }

  body.home-page .home-faq-question span:first-child {
    font-size: 16px;
    line-height: 1.28;
  }

  body.home-page .home-faq-answer p {
    font-size: 14.2px;
    line-height: 1.52;
  }

  body.home-page .flexlast-shared-header .header__inner {
    padding-inline: 6px !important;
  }

  body.home-page .flexlast-shared-header .main-nav {
    gap: 8px !important;
  }

  body.home-page .flexlast-shared-header .logo {
    margin-left: 8px !important;
    font-size: 24px !important;
  }

  body.home-page .flexlast-shared-header .header-mobile-phone .header-phone-number {
    font-size: 13px !important;
    letter-spacing: -0.04em !important;
  }

  body.home-page .flexlast-shared-header .header-action-button:not(.header-context-button) {
    min-width: 36px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    padding: 0 !important;
  }

  body.home-page #truckModal {
    padding: 8px;
    align-items: stretch;
    justify-content: stretch;
  }

  body.home-page #truckModal .truck-modal-content {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
  }

  body.home-page #truckModal .truck-modal-header {
    gap: 12px;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 14px 10px;
  }

  body.home-page #truckModal .truck-modal-title {
    font-size: 18.8px;
    line-height: 1.03;
  }

  body.home-page #truckModal .truck-modal-caption {
    font-size: 12.6px;
    line-height: 1.32;
  }

  body.home-page #truckModal .truck-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  body.home-page #truckModal .truck-list {
    padding: 10px 14px 14px;
    gap: 8px;
    background: #f8fafc;
  }

  body.home-page #truckModal .truck-row {
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
    align-items: flex-start;
  }

  body.home-page #truckModal .truck-pic {
    width: 70px;
    height: 52px;
    margin-top: 2px;
  }

  body.home-page #truckModal .truck-texts {
    min-width: 0;
  }

  body.home-page #truckModal .truck-name-row {
    gap: 3px;
    margin-bottom: 8px;
  }

  body.home-page #truckModal .truck-name {
    font-size: 17px;
    line-height: 1;
  }

  body.home-page #truckModal .truck-label {
    font-size: 11px;
    line-height: 1.2;
  }

  body.home-page #truckModal .truck-meta {
    gap: 5px;
  }

  body.home-page #truckModal .meta-pill {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
    line-height: 1.1;
  }

  body.home-page #truckModal .truck-check {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }

  body.home-page #truckModal .truck-check .material-icons-round {
    font-size: 18px;
  }

  body.home-page #truckModal .truck-modal-footer {
    padding: 10px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  body.home-page #truckModal .truck-back-btn {
    width: 52px;
    border-radius: 15px;
  }

  body.home-page #truckModal .truck-confirm-btn {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 16px;
  }
}


@media (min-width: 480px) and (max-width: 767px) {
  body.home-page .moving-footer-app--inline {
    width: auto;
    max-width: 100%;
  }

  body.home-page .moving-footer-app--inline .app-badges {
    display: flex;
    width: auto;
    max-width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  body.home-page .moving-footer-app--inline .store-badge {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
  }

  body.home-page .moving-footer-app--inline .store-badge img {
    width: auto;
    max-width: 100%;
    height: 44px;
  }

  body.home-page .home-feature-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 11px;
  }

  body.home-page .home-feature-icon {
    width: 60px;
    height: 60px;
  }

  body.home-page .home-feature-copy {
    padding-left: 9px;
  }

  body.home-page .address-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 10px 12px;
    align-items: center;
  }

  body.home-page .address-col {
    min-width: 0;
  }

  body.home-page .address-col .label {
    font-size: 11px;
    margin-bottom: 5px;
    line-height: 1.08;
    letter-spacing: 0.05em;
  }

  body.home-page .address-col input {
    font-size: 15.5px;
    line-height: 1.16;
    letter-spacing: -0.024em;
  }

  body.home-page .address-card .swap-btn,
  body.home-page .address-card .add-address-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  body.home-page .home-feature-card h3 {
    width: 100%;
    max-width: none;
    font-size: 17.4px;
    line-height: 1.12;
    letter-spacing: -0.028em;
  }

  body.home-page .home-feature-card p {
    width: 100%;
    max-width: none;
    font-size: 14px;
    line-height: 1.42;
    letter-spacing: -0.012em;
  }

  body.home-page .popular-services,
  body.home-page .home-service-links {
    padding: 0 12px;
    margin-top: 16px;
  }

  body.home-page .popular-services-shell {
    padding: 18px 12px 16px;
    border-radius: 22px;
  }

  body.home-page .popular-services-shell h2 {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 29px;
    line-height: 0.98;
    letter-spacing: -0.052em;
    text-align: center;
  }

  body.home-page .popular-services-shell h2.popular-services-title {
    text-wrap: initial;
  }

  body.home-page .popular-services-title-line {
    display: block;
  }

  body.home-page .popular-services-tags {
    display: block;
    margin-top: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 6px 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  body.home-page .popular-services-tags::-webkit-scrollbar {
    display: none;
  }

  body.home-page .popular-services-marquee-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    animation: home-popular-tags-marquee 52s linear infinite;
    will-change: transform;
  }

  body.home-page .popular-services-tag-group,
  body.home-page .popular-services-tag-group--clone {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  body.home-page .popular-services-tag-group--clone {
    display: flex;
  }

  body.home-page .popular-service-tag {
    flex: 0 0 auto;
    min-height: 36px;
    max-width: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13.5px;
    line-height: 1.08;
    letter-spacing: -0.018em;
    white-space: nowrap;
    text-align: center;
    text-wrap: nowrap;
  }

  body.home-page .popular-services-tags:hover .popular-services-marquee-track,
  body.home-page .popular-services-tags:active .popular-services-marquee-track {
    animation-play-state: paused;
  }

  body.home-page .hero {
    padding-inline: 6px;
    gap: 10px;
  }

  body.home-page .hero-left {
    align-items: center;
  }

  body.home-page .hero-spotlight {
    margin-top: 2px;
    gap: 16px;
  }

  body.home-page .hero-spotlight-copy {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  body.home-page .hero-spotlight-copy h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(45px, 13.6vw, 53px);
    line-height: 0.89;
    letter-spacing: -0.065em;
    text-align: center;
    text-wrap: pretty;
  }

  body.home-page .hero-spotlight-rotating-word {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 0.94em;
    overflow: visible;
    -webkit-clip-path: inset(0 0 -0.18em 0);
    clip-path: inset(0 0 -0.18em 0);
    vertical-align: baseline;
    text-align: center;
  }

  body.home-page .hero-spotlight-accent {
    width: 100%;
    font-size: clamp(21px, 6.1vw, 24px);
    line-height: 1.02;
    letter-spacing: -0.026em;
    text-align: center;
  }

  body.home-page .home-services-divider {
    margin-top: 14px;
  }

  body.home-page .home-services-divider-shell {
    gap: 10px;
  }

  body.home-page .home-services-divider-shell::before,
  body.home-page .home-services-divider-shell::after {
    flex: 1 1 30px;
  }

  body.home-page .home-services-divider-shell h2 {
    font-size: 20px;
    line-height: 0.98;
    letter-spacing: -0.046em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview {
    margin-top: 12px;
  }

  body.home-page .home-services-preview-grid {
    gap: 12px;
  }

  body.home-page .home-quick-actions {
    margin-top: 14px;
  }

  body.home-page .home-services-preview-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    grid-template-areas:
      "title visual"
      "copy visual"
      "tags tags";
    align-items: start;
    column-gap: 10px;
    row-gap: 8px;
    position: relative;
    height: auto;
    min-height: 182px;
    padding: 16px 16px 14px;
    border-radius: 22px;
    overflow: hidden;
  }

  body.home-page .home-services-preview-card--cargo,
  body.home-page .home-services-preview-card--express,
  body.home-page .home-services-preview-card--moving,
  body.home-page .home-services-preview-card--loaders {
    padding-right: 16px;
  }

  body.home-page .home-services-preview-card h3 {
    grid-area: title;
    max-width: none;
    position: relative;
    z-index: 1;
    font-size: 26px;
    line-height: 0.99;
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview-card p {
    grid-area: copy;
    position: relative;
    z-index: 1;
    margin-top: 0;
    max-width: none;
    font-size: 14.9px;
    line-height: 1.36;
    letter-spacing: -0.018em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-services-preview-tags {
    grid-area: tags;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 2px;
    padding-top: 0;
    gap: 6px;
    justify-content: flex-start;
  }

  body.home-page .home-services-preview-tags span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11.9px;
    line-height: 1;
    letter-spacing: -0.012em;
  }

  body.home-page .home-services-preview-card--cargo .home-services-preview-tags,
  body.home-page .home-services-preview-card--express .home-services-preview-tags,
  body.home-page .home-services-preview-card--moving .home-services-preview-tags,
  body.home-page .home-services-preview-card--loaders .home-services-preview-tags {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 5px;
    align-items: center;
  }

  body.home-page .home-services-preview-card--cargo .home-services-preview-tags span,
  body.home-page .home-services-preview-card--express .home-services-preview-tags span,
  body.home-page .home-services-preview-card--moving .home-services-preview-tags span,
  body.home-page .home-services-preview-card--loaders .home-services-preview-tags span {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0 6px;
    font-size: 10.1px;
    line-height: 1;
    letter-spacing: -0.024em;
    white-space: nowrap;
  }

  body.home-page .home-services-preview-visual {
    position: absolute;
    top: 16px;
    right: 16px;
    display: block;
    width: 92px;
    height: 92px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    z-index: 0;
    opacity: 1;
    overflow: visible;
  }

  body.home-page .home-services-preview-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  body.home-page .home-services-preview-visual--express,
  body.home-page .home-services-preview-visual--moving {
    width: 92px;
    height: 92px;
  }

  body.home-page .home-services-preview-visual--cargo {
    top: 16px;
    right: 6px;
    width: 122px;
    height: 122px;
  }

  body.home-page .home-services-preview-visual--loaders {
    top: 10px;
    right: 8px;
    width: 138px;
    height: 138px;
  }

  body.home-page .widget-top {
    padding: 10px;
    padding-bottom: 28px;
    gap: 8px;
    border-radius: 22px;
  }

  body.home-page .widget-bottom {
    padding: 14px;
    gap: 10px;
    margin-top: -12px;
    border-radius: 22px;
  }

  body.home-page .card {
    border-radius: 15px;
  }

  body.home-page .truck-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 18px;
    align-items: center;
    padding: 12px 12px 12px 10px;
    gap: 8px 10px;
  }

  body.home-page .truck-img {
    width: 78px;
    height: 50px;
  }

  body.home-page .truck-info {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
  }

  body.home-page .truck-info strong {
    font-size: 16.8px;
    line-height: 1;
    letter-spacing: -0.028em;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  body.home-page .truck-info strong::after {
    content: "•";
    margin: 0 6px 0 7px;
    font-size: 0.68em;
    font-weight: 800;
    line-height: 1;
    color: #4b5565;
  }

  body.home-page .truck-info .green-text {
    margin-top: 0;
    font-size: 12.8px;
    line-height: 1.16;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #6f7c8f;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.home-page .arrow-icon {
    font-size: 20px;
    justify-self: end;
  }

  body.home-page .loaders-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 9px 10px;
    padding: 12px 10px 10px;
    position: relative;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
  }

  body.home-page .loaders-card.hover-outline:hover,
  body.home-page .loaders-card.hover-outline:active,
  body.home-page .loaders-card.hover-outline.active {
    border-color: #e5e7eb;
    transform: none;
    box-shadow: none;
  }

  body.home-page .loader-img {
    grid-row: 1;
    width: 52px;
    height: 42px;
    align-self: center;
  }

  body.home-page .loader-text {
    grid-column: 2;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  body.home-page #loadersTextLine1 {
    font-size: 14.5px;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.028em;
    white-space: normal;
    color: var(--home-text-strong);
  }

  body.home-page #loadersTextLine2 {
    margin-top: 0;
    font-size: 13.3px;
    line-height: 1.26;
    letter-spacing: -0.014em;
    color: var(--home-text-subtle);
  }

  body.home-page .counter-box {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
  }

  body.home-page .counter-box button,
  body.home-page .counter-btn {
    width: 40px;
    height: 40px;
  }

  body.home-page .counter-texts {
    min-width: 0;
  }

  body.home-page .counter-texts > span {
    font-size: 10.6px;
    line-height: 1.08;
    letter-spacing: 0.03em;
  }

  body.home-page .counter-texts strong {
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  body.home-page .two-col-row {
    flex-direction: row;
    gap: 8px;
  }

  body.home-page .options-card,
  body.home-page .time-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 78px;
    padding: 12px 10px;
  }

  body.home-page .time-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: stretch;
  }

  body.home-page .time-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    min-height: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body.home-page .options-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    line-height: 1.15;
  }

  body.home-page .options-card > span:first-child {
    min-width: 0;
    max-width: none;
    font-size: 0;
    line-height: 1;
    padding-left: 2px;
  }

  body.home-page .options-card > span:first-child::after {
    content: var(--home-mobile-options-label);
    display: block;
    font-size: 16.2px;
    line-height: 1;
    letter-spacing: -0.028em;
    font-weight: 800;
  }

  body.home-page .options-control-shell {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 4px;
    align-self: center;
    justify-self: end;
    border-radius: 12px;
    background: var(--home-bg-control, #f4f5f7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  body.home-page .options-icon {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
    font-size: 18px;
    color: #6b7688;
    opacity: 0.95;
    flex-shrink: 0;
  }

  body.home-page .time-card .label {
    margin-bottom: 6px;
    font-size: 0;
    line-height: 1;
    letter-spacing: 0;
  }

  body.home-page .time-card .label::after {
    content: var(--home-mobile-time-label);
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10.8px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: var(--home-text-subtle);
  }

  body.home-page .time-info #rentalTimeText {
    font-size: 20px;
    line-height: 0.98;
    letter-spacing: -0.032em;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .options-summary {
    gap: 1px;
    justify-content: center;
  }

  body.home-page .options-summary-label {
    display: none;
  }

  body.home-page .options-summary-value {
    font-size: 13.4px;
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  body.home-page .vert-controls {
    justify-self: end;
    align-self: center;
    width: max-content;
    height: auto;
    min-height: auto;
    padding: 3px;
    gap: 3px;
    border-radius: 12px;
  }

  body.home-page .vert-controls button {
    width: 34px;
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    border-radius: 10px;
  }

  body.home-page .phone-group {
    min-height: 68px;
    padding: 9px 10px 9px 14px;
    border-radius: 20px;
  }

  body.home-page .phone-wrapper {
    align-items: center;
    gap: 10px;
  }

  body.home-page .phone-input-main {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
  }

  body.home-page .phone-input-main input {
    font-size: 16.3px;
    font-weight: 700;
    line-height: 1.02;
    padding: 0;
    letter-spacing: -0.028em;
  }

  body.home-page .phone-input-main .floating-label {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    font-size: 11.2px;
    line-height: 1;
    letter-spacing: 0.018em;
    color: #7f8aa0;
  }

  body.home-page .phone-input-main input:focus ~ .floating-label,
  body.home-page .phone-input-main input:not(:placeholder-shown) ~ .floating-label {
    top: auto;
    font-size: 11.2px;
    color: #748092;
  }

  body.home-page .user-icon {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 14px;
    font-size: 22px;
    background: #f3f6fb;
    color: #3d4760;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
  }

  body.home-page .checkout-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 6px;
  }

  body.home-page .checkout-row .side-btn,
  body.home-page .checkout-btn {
    height: 58px;
    border-radius: 16px;
  }

  body.home-page .checkout-row .side-btn {
    width: 52px;
  }

  body.home-page .checkout-label {
    font-size: 16.2px;
    line-height: 1.04;
    letter-spacing: -0.024em;
  }

  body.home-page .total-price {
    font-size: 27.5px;
    line-height: 0.96;
    letter-spacing: -0.05em;
  }

  body.home-page .info-tooltip-wrap {
    position: relative;
    z-index: 12;
  }

  body.home-page .tooltip-box {
    top: auto;
    right: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    width: min(236px, calc(100vw - 36px));
    padding: 12px 13px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.42;
    color: #4f5b6b;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    transform: translateX(-50%) translateY(6px);
    z-index: 1405;
  }

  body.home-page .tooltip-box::before {
    top: 100%;
    bottom: auto;
    left: 50%;
    right: auto;
    margin-left: -8px;
    border-color: #ffffff transparent transparent transparent;
  }

  body.home-page .info-tooltip-wrap:hover .tooltip-box,
  body.home-page .info-tooltip-wrap:focus-within .tooltip-box {
    transform: translateX(-50%) translateY(0);
  }

  body.home-page .agreements {
    gap: 10px;
  }

  body.home-page .checkbox-label {
    font-size: 12.1px;
    line-height: 1.48;
    letter-spacing: -0.01em;
  }

  body.home-page .home-action-card-top h2 {
    font-size: 29px;
    line-height: 0.96;
    letter-spacing: -0.052em;
  }

  body.home-page .home-action-card-note {
    font-size: 15.5px;
    line-height: 1.38;
    letter-spacing: -0.012em;
  }

  body.home-page .home-faq-sidebar h2 {
    font-size: 29px;
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  body.home-page .home-faq-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  body.home-page .home-faq-tab {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14.5px;
    line-height: 1.08;
    letter-spacing: -0.014em;
    justify-content: center;
  }

  body.home-page .home-faq-question span:first-child {
    font-size: 16.3px;
    line-height: 1.24;
    letter-spacing: -0.02em;
  }

  body.home-page .home-faq-answer p {
    font-size: 14.3px;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }

  body.home-page .flexlast-shared-header .header__inner {
    padding-inline: 6px !important;
  }

  body.home-page .flexlast-shared-header .main-nav {
    gap: 8px !important;
  }

  body.home-page .flexlast-shared-header .logo {
    margin-left: 8px !important;
    font-size: 24px !important;
  }

  body.home-page .flexlast-shared-header .header-mobile-phone .header-phone-number {
    font-size: 13px !important;
    letter-spacing: -0.04em !important;
  }

  body.home-page .flexlast-shared-header .header-action-button:not(.header-context-button) {
    min-width: 36px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    padding: 0 !important;
  }

  body.home-page #truckModal {
    padding: 8px;
    align-items: stretch;
    justify-content: stretch;
  }

  body.home-page #truckModal .truck-modal-content {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
  }

  body.home-page #truckModal .truck-modal-header {
    gap: 12px;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 14px 10px;
  }

  body.home-page #truckModal .truck-modal-title {
    font-size: 18.5px;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  body.home-page #truckModal .truck-modal-caption {
    font-size: 12.4px;
    line-height: 1.26;
  }

  body.home-page #truckModal .truck-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  body.home-page #truckModal .truck-list {
    padding: 10px 14px 14px;
    gap: 8px;
    background: #f8fafc;
  }

  body.home-page #truckModal .truck-row {
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
    align-items: flex-start;
  }

  body.home-page #truckModal .truck-pic {
    width: 70px;
    height: 52px;
    margin-top: 2px;
  }

  body.home-page #truckModal .truck-texts {
    min-width: 0;
  }

  body.home-page #truckModal .truck-name-row {
    gap: 3px;
    margin-bottom: 8px;
  }

  body.home-page #truckModal .truck-name {
    font-size: 17.4px;
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  body.home-page #truckModal .truck-label {
    font-size: 11.2px;
    line-height: 1.16;
    letter-spacing: 0.03em;
  }

  body.home-page #truckModal .truck-meta {
    gap: 5px;
  }

  body.home-page #truckModal .meta-pill {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10.25px;
    line-height: 1.08;
    letter-spacing: -0.01em;
  }

  body.home-page #truckModal .truck-check {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }

  body.home-page #truckModal .truck-check .material-icons-round {
    font-size: 18px;
  }

  body.home-page #truckModal .truck-modal-footer {
    padding: 10px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  body.home-page #truckModal .truck-back-btn {
    width: 52px;
    border-radius: 15px;
  }

  body.home-page #truckModal .truck-confirm-btn {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 16px;
  }
}

@media (max-width: 479px) and (prefers-reduced-motion: reduce) {
  body.home-page .popular-services-marquee-track {
    animation: none;
  }
}

@media (max-width: 479px) {
  body.home-page .home-services-preview-card {
    grid-template-columns: minmax(0, 1fr) 106px;
    column-gap: 16px;
    row-gap: 10px;
    min-height: 214px;
    padding: 18px 16px 16px;
  }

  body.home-page .home-services-preview-card h3 {
    max-width: none;
    font-size: 23px;
    line-height: 0.98;
    letter-spacing: -0.05em;
    white-space: normal;
    text-wrap: balance;
  }

  body.home-page .home-services-preview-card p {
    max-width: none;
    font-size: 13.8px;
    line-height: 1.34;
    letter-spacing: -0.02em;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-services-preview-tags {
    margin-top: 4px;
  }

  body.home-page .home-services-preview-visual {
    top: 18px;
    right: 14px;
    width: 106px;
    height: 106px;
  }

  body.home-page .home-services-preview-visual--cargo {
    top: 14px;
    right: 2px;
    width: 134px;
    height: 134px;
  }

  body.home-page .home-services-preview-visual--express {
    top: 20px;
    right: 12px;
    width: 108px;
    height: 108px;
  }

  body.home-page .home-services-preview-visual--moving {
    top: 24px;
    right: -2px;
    width: 126px;
    height: 126px;
  }

  body.home-page .home-services-preview-visual--loaders {
    top: 16px;
    right: 4px;
    width: 142px;
    height: 142px;
  }

  body.home-page .delivery-time-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 10px;
  }

  body.home-page .radio-card {
    min-height: 72px;
    padding: 12px 14px;
    gap: 8px;
  }

  body.home-page .calendar-wrap {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
    min-width: 0;
    width: 100%;
  }

  body.home-page .calendar-wrap .material-icons-round {
    font-size: 18px;
  }

  body.home-page .calendar-wrap span:last-child {
    min-width: 0;
    font-size: 12.8px;
    line-height: 1.18;
    letter-spacing: -0.018em;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 479px) {
  body.home-page .delivery-time-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  body.home-page .home-services-preview-card p {
    max-width: 70ch;
  }

  body.home-page .home-services-preview-card--cargo {
    padding-right: 180px;
  }

  body.home-page .home-services-preview-card--express {
    padding-right: 234px;
  }

  body.home-page .home-services-preview-visual--cargo {
    bottom: 14px;
  }

  body.home-page .home-services-preview-visual--express {
    bottom: -18px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  body.home-page .home-services-preview-visual--cargo {
    bottom: 8px;
  }
}

body.home-page--de .hero-spotlight-copy h1 {
  max-width: 16ch;
}

body.home-page--de .hero-spotlight-heading-rest--split .hero-spotlight-heading-rest-line {
  white-space: nowrap;
}

@media (min-width: 768px) and (max-width: 979px) {
  body.home-page.courier-cargo-page {
    padding-top: calc(var(--flexlast-header-height, 118px) + 12px);
  }

  body.home-page.courier-cargo-page .courier-cargo-main {
    padding-top: 24px;
  }

  body.home-page.courier-cargo-page .courier-cargo-hero-copy h1 {
    max-width: none;
    text-wrap: balance;
  }

  body.home-page.courier-cargo-page .courier-cargo-hero-copy > p {
    max-width: none;
    text-wrap: pretty;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq .home-faq-shell {
    padding: 30px;
    border-radius: 30px;
    text-align: left;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-layout {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar {
    max-width: none;
    gap: 14px;
    align-items: flex-start;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar h2 {
    width: auto;
    max-width: 9ch;
    font-size: clamp(32px, 4vw, 40px);
    line-height: 0.98;
    text-align: left;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar p {
    max-width: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.48;
    text-align: left;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-pills {
    justify-content: flex-start;
    margin-top: 4px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-pills .home-faq-tab {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel {
    width: 100%;
    gap: 10px;
    text-align: left;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-item {
    border-radius: 20px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-question {
    min-height: 58px;
    padding: 16px 18px;
    gap: 14px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-question span:first-child {
    font-size: 16px;
    line-height: 1.28;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-answer {
    padding: 0 18px 16px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-answer p {
    max-width: 58ch;
    font-size: 14px;
    line-height: 1.48;
  }
}

@media (max-width: 767px) {
  .page-breadcrumbs,
  .courier-cargo-breadcrumbs {
    gap: 8px;
    font-size: 13px;
  }

  .page-breadcrumbs-current,
  .courier-cargo-eyebrow,
  .services-page-eyebrow,
  .loaders-hero-v2-eyebrow,
  .business-page-eyebrow,
  .business-section-kicker {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  body.home-page.courier-cargo-page .courier-cargo-hero-copy {
    align-items: stretch;
  }

  body.home-page.courier-cargo-page .courier-cargo-hero-copy h1,
  body.home-page.courier-cargo-page .courier-cargo-hero-copy > p {
    width: 100%;
    max-width: none;
  }

  body.home-page.courier-cargo-page .courier-cargo-hero-copy h1 {
    text-wrap: balance;
  }

  body.home-page.courier-cargo-page .courier-cargo-hero-copy > p {
    text-wrap: pretty;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq {
    padding: 0 12px;
    margin-top: 16px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq .home-faq-shell {
    padding: 22px 18px 18px;
    border-radius: 26px;
    text-align: left;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar {
    width: 100%;
    align-items: stretch;
    gap: 12px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar h2,
  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar p {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar h2 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 0.98;
    text-wrap: balance;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar p {
    font-size: 15px;
    line-height: 1.46;
    text-wrap: wrap;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    justify-content: stretch;
    gap: 8px;
    margin-top: 2px;
    overflow: visible;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-pills .home-faq-tab {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    padding: 0 10px;
    font-size: clamp(12px, 3.3vw, 13.5px);
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel {
    width: 100%;
    gap: 10px;
    text-align: left;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-item {
    border-radius: 20px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-question {
    min-height: 58px;
    padding: 16px 18px;
    gap: 12px;
    align-items: flex-start;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-question span:first-child {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    font-size: 16px;
    line-height: 1.3;
    text-wrap: balance;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-icon {
    margin-top: 2px;
    font-size: 18px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-answer {
    padding: 0 18px 16px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-answer p {
    max-width: none;
    font-size: 14px;
    line-height: 1.46;
  }
}

@media (max-width: 767px) {
  .page-breadcrumbs,
  .courier-cargo-breadcrumbs {
    font-size: 12.5px;
  }

  .page-breadcrumbs-current,
  .courier-cargo-eyebrow,
  .services-page-eyebrow,
  .loaders-hero-v2-eyebrow,
  .business-page-eyebrow,
  .business-section-kicker {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10.5px;
  }

  body.home-page.courier-cargo-page {
    padding-top: 74px !important;
  }

  body.home-page.courier-cargo-page .courier-cargo-main {
    padding-top: 4px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq {
    padding: 0 10px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq .home-faq-shell {
    padding: 18px 14px 14px;
    border-radius: 24px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-layout {
    gap: 12px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar {
    gap: 10px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-sidebar p {
    font-size: 14px;
    line-height: 1.42;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-pills {
    gap: 6px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-pills .home-faq-tab {
    min-height: 40px;
    padding: 0 8px;
    font-size: 13px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-item {
    border-radius: 18px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-question {
    min-height: 52px;
    padding: 14px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-question span:first-child {
    font-size: 15px;
    line-height: 1.24;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-answer {
    padding: 0 14px 14px;
  }

  body.home-page.courier-cargo-page .courier-cargo-faq-panel .home-faq-answer p {
    font-size: 13px;
  }
}

body.home-page.courier-cargo-page:not(.express-delivery-page) {
  background: #f3f3f3;
}

body.home-page.courier-cargo-page:not(.express-delivery-page) .courier-cargo-hero-shell,
body.home-page.courier-cargo-page:not(.express-delivery-page) .courier-cargo-advantages-panel,
body.home-page.courier-cargo-page:not(.express-delivery-page) .courier-cargo-vehicle-browser,
body.home-page.courier-cargo-page:not(.express-delivery-page) .courier-cargo-scenarios-shell,
body.home-page.courier-cargo-page:not(.express-delivery-page) .courier-cargo-faq .home-faq-shell,
body.home-page.courier-cargo-page:not(.express-delivery-page) .popular-services-shell {
  background: #ffffff;
}

body.home-page.courier-cargo-page .courier-cargo-eyebrow {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  flex: 0 0 auto;
}

body.home-page--de #homeServicesGrid .home-services-preview-card--cargo,
body.home-page--de #homeServicesGrid .home-services-preview-card--express,
body.home-page--de #homeServicesGrid .home-services-preview-card--moving,
body.home-page--de #homeServicesGrid .home-services-preview-card--loaders {
  min-height: 260px;
  padding-right: 228px;
}

body.home-page--de #homeServicesGrid .home-services-preview-card p {
  max-width: 31ch;
  line-height: 1.42;
}

body.home-page--de #homeServicesGrid .home-services-preview-card--express p {
  max-width: 29ch;
}

body.home-page--de #homeServicesGrid .home-services-preview-visual {
  top: 24px;
  right: 28px;
  bottom: auto;
  width: 182px;
  height: 182px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: none;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(241, 245, 249, 0.98) 100%);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  opacity: 1;
}

body.home-page--de #homeServicesGrid .home-services-preview-visual img {
  display: none;
}

body.home-page--de #homeServicesGrid .home-services-preview-visual::before {
  content: "image";
  font-family: "Material Icons Round";
  font-size: 58px;
  line-height: 1;
  color: rgba(100, 116, 139, 0.4);
}

body.home-page--de #homeServicesGrid .home-services-preview-visual::after {
  content: "Bild folgt";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(100, 116, 139, 0.92);
}

body.home-page--de #homeServicesGrid .home-services-preview-visual--cargo,
body.home-page--de #homeServicesGrid .home-services-preview-visual--express,
body.home-page--de #homeServicesGrid .home-services-preview-visual--moving,
body.home-page--de #homeServicesGrid .home-services-preview-visual--loaders {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

body.home-page--de #homeServicesGrid .home-services-preview-visual--cargo img,
body.home-page--de #homeServicesGrid .home-services-preview-visual--express img,
body.home-page--de #homeServicesGrid .home-services-preview-visual--moving img,
body.home-page--de #homeServicesGrid .home-services-preview-visual--loaders img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body.home-page--de #homeServicesGrid .home-services-preview-visual--cargo::before,
body.home-page--de #homeServicesGrid .home-services-preview-visual--cargo::after,
body.home-page--de #homeServicesGrid .home-services-preview-visual--express::before,
body.home-page--de #homeServicesGrid .home-services-preview-visual--express::after,
body.home-page--de #homeServicesGrid .home-services-preview-visual--moving::before,
body.home-page--de #homeServicesGrid .home-services-preview-visual--moving::after,
body.home-page--de #homeServicesGrid .home-services-preview-visual--loaders::before,
body.home-page--de #homeServicesGrid .home-services-preview-visual--loaders::after {
  display: none;
}

@media (min-width: 480px) and (max-width: 767px) {
  body.home-page--de #homeServicesGrid .home-services-preview-visual {
    top: 16px;
    right: 16px;
    bottom: auto;
    width: 92px;
    height: 92px;
    gap: 4px;
    border-radius: 20px;
    transform: none;
  }

  body.home-page--de #homeServicesGrid .home-services-preview-visual::before {
    font-size: 34px;
  }

  body.home-page--de #homeServicesGrid .home-services-preview-visual::after {
    font-size: 10px;
  }
}

@media (max-width: 479px) {
  body.home-page--de #homeServicesGrid .home-services-preview-visual {
    top: 18px;
    right: 14px;
    bottom: auto;
    width: 106px;
    height: 106px;
    gap: 6px;
    border-radius: 22px;
    transform: none;
  }

  body.home-page--de #homeServicesGrid .home-services-preview-visual::before {
    font-size: 38px;
  }

  body.home-page--de #homeServicesGrid .home-services-preview-visual::after {
    font-size: 11px;
  }
}

@media (max-width: 479px) {
  body.home-page .phone-group {
    min-height: 66px;
    padding: 8px 10px 8px 12px;
    border-radius: 18px;
  }

  body.home-page .phone-wrapper {
    align-items: center;
    gap: 8px;
  }

  body.home-page .phone-input-main {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
  }

  body.home-page .phone-input-main input {
    padding: 0;
    font-size: 15.2px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.024em;
  }

  body.home-page .phone-input-main .floating-label {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    font-size: 10.8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.016em;
    color: #78849a;
  }

  body.home-page .phone-input-main input:focus ~ .floating-label,
  body.home-page .phone-input-main input:not(:placeholder-shown) ~ .floating-label {
    top: auto;
    font-size: 10.8px;
    color: #6f7b90;
  }

  body.home-page .time-card .label::after {
    font-size: clamp(8.6px, 2.35vw, 9.4px);
    letter-spacing: 0.025em;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  body.home-page .phone-group {
    min-height: 68px;
    padding: 9px 10px 9px 14px;
    border-radius: 20px;
  }

  body.home-page .phone-wrapper {
    align-items: center;
    gap: 10px;
  }

  body.home-page .phone-input-main {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
  }

  body.home-page .phone-input-main input {
    padding: 0;
    font-size: 16.3px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.028em;
  }

  body.home-page .phone-input-main .floating-label {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    font-size: 11.3px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.018em;
    color: #78849a;
  }

  body.home-page .phone-input-main input:focus ~ .floating-label,
  body.home-page .phone-input-main input:not(:placeholder-shown) ~ .floating-label {
    top: auto;
    font-size: 11.3px;
    color: #6f7b90;
  }
}

@media (max-width: 479px) {
  body.home-page .options-card > span:first-child::after {
    content: var(--home-mobile-options-label) !important;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  body.home-page #quickOrderWidget {
    --order-tablet-kicker: clamp(12px, 0.5vw + 8.8px, 13.4px);
    --order-tablet-title: clamp(16.8px, 0.96vw + 10.4px, 18.8px);
    --order-tablet-body: clamp(14px, 0.54vw + 10.4px, 15.2px);
    --order-tablet-strong: clamp(21.4px, 1.08vw + 13.4px, 24px);
    --order-tablet-check: clamp(13.2px, 0.42vw + 10.5px, 14.4px);
    --order-tablet-price-label: clamp(17.2px, 0.72vw + 12.2px, 18.8px);
    --order-tablet-price-value: clamp(29px, 1.18vw + 20.2px, 32px);
  }

  body.home-page #quickOrderWidget .address-col .label,
  body.home-page #quickOrderWidget .truck-field-label,
  body.home-page #quickOrderWidget .time-card .label::after,
  body.home-page #quickOrderWidget .counter-texts > span,
  body.home-page #quickOrderWidget .phone-input-main .floating-label {
    font-size: var(--order-tablet-kicker);
  }

  body.home-page #quickOrderWidget .address-col input {
    font-size: clamp(17px, 0.82vw + 11.2px, 19px);
    line-height: 1.16;
    letter-spacing: -0.022em;
  }

  body.home-page #quickOrderWidget .truck-info strong {
    font-size: clamp(18.2px, 0.94vw + 11.8px, 20.8px);
    line-height: 1.03;
    letter-spacing: -0.032em;
  }

  body.home-page #quickOrderWidget .truck-info .green-text {
    font-size: var(--order-tablet-body);
    line-height: 1.2;
    letter-spacing: -0.012em;
  }

  body.home-page #quickOrderWidget #loadersTextLine1 {
    font-size: var(--order-tablet-title);
    line-height: 1.12;
    letter-spacing: -0.024em;
  }

  body.home-page #quickOrderWidget #loadersTextLine2 {
    font-size: var(--order-tablet-body);
    line-height: 1.24;
    letter-spacing: -0.012em;
  }

  body.home-page #quickOrderWidget .options-card > span:first-child::after {
    content: none !important;
  }

  body.home-page #quickOrderWidget .options-card > span:first-child {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: none;
    font-size: clamp(17.6px, 0.92vw + 11.2px, 19.4px) !important;
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 900;
  }

  body.home-page #quickOrderWidget .options-summary-value {
    font-size: clamp(15px, 0.62vw + 10.8px, 16.4px);
    line-height: 1.06;
  }

  body.home-page #quickOrderWidget .time-card .label::after {
    font-size: clamp(11.8px, 0.42vw + 9px, 12.8px);
    letter-spacing: 0.04em;
  }

  body.home-page #quickOrderWidget .time-info #rentalTimeText,
  body.home-page #quickOrderWidget .counter-texts strong {
    font-size: var(--order-tablet-strong);
    line-height: 1;
    letter-spacing: -0.034em;
  }

  body.home-page #quickOrderWidget .phone-input-main input {
    font-size: clamp(16.9px, 0.74vw + 11.5px, 18.6px);
    line-height: 1.05;
    letter-spacing: -0.028em;
  }

  body.home-page #quickOrderWidget .radio-text,
  body.home-page #quickOrderWidget .calendar-wrap span:last-child {
    font-size: var(--order-tablet-check);
    line-height: 1.24;
    letter-spacing: -0.014em;
  }

  body.home-page #quickOrderWidget .checkout-label {
    font-size: var(--order-tablet-price-label);
    line-height: 1.02;
    letter-spacing: -0.026em;
  }

  body.home-page #quickOrderWidget .total-price {
    font-size: var(--order-tablet-price-value);
    line-height: 0.94;
    letter-spacing: -0.052em;
  }

  body.home-page #quickOrderWidget .checkbox-label {
    font-size: clamp(12.8px, 0.38vw + 10.2px, 13.6px);
    line-height: 1.42;
    letter-spacing: -0.01em;
  }

  body.home-page .hero-spotlight-support-visual,
  body.home-page--de .hero-spotlight-support-visual--carousel,
  body.home-page--de .hero-gallery--de-spotlight {
    width: min(100%, 760px);
    max-width: 760px;
    margin-inline: auto;
  }

  body.home-page--de .hero-gallery--de-spotlight {
    height: clamp(360px, 54vw, 460px);
    min-height: 360px;
  }

  body.home-page--de .hero-gallery--de-spotlight .hero-gallery-footer--de {
    display: none;
  }
}

@media (max-width: 560px) {
  body.home-page .popular-services--transport .popular-services-tags {
    display: block;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 2px 22px 6px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  body.home-page .popular-services--transport .popular-services-marquee-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    animation: home-popular-tags-marquee 52s linear infinite;
    will-change: transform;
  }

  body.home-page .popular-services--transport .popular-services-tag-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  body.home-page .popular-services--transport .popular-services-tag-group--clone {
    display: flex;
  }

  body.home-page .popular-services--transport .popular-service-tag {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 13px 8px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  body.home-page .popular-services--transport .popular-service-tag-icon {
    font-size: 17px;
  }
}

body.home-page:not(.order-focus-page) #truckModal.modal-overlay {
  --home-panel-modal-top-gap: clamp(46px, 5.8dvh, 72px);
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 var(--truck-panel-left, max(18px, calc(50vw + 180px)));
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page:not(.order-focus-page) #truckModal.modal-overlay .truck-modal-content {
  position: relative;
  inset: auto;
  width: min(calc(100vw - var(--truck-panel-left, 10px)), var(--truck-panel-width, 490px));
  max-width: min(calc(100vw - var(--truck-panel-left, 10px)), var(--truck-panel-width, 490px));
  height: calc(100dvh - var(--home-panel-modal-top-gap, 60px));
  max-height: calc(100dvh - var(--home-panel-modal-top-gap, 60px));
  margin: 0;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

body.home-page:not(.order-focus-page) #truckModal.modal-overlay::before {
  content: none;
}

body.home-page:not(.order-focus-page) #truckModal .truck-list {
  padding: 16px;
  gap: 12px;
}

body.home-page:not(.order-focus-page) #truckModal .truck-row {
  position: relative;
  min-height: 104px;
  padding: 15px 42px 15px 12px;
  gap: 10px;
  align-items: center;
}

body.home-page:not(.order-focus-page) #truckModal .truck-pic {
  width: 92px;
  height: 58px;
}

body.home-page:not(.order-focus-page) #truckModal .truck-texts {
  min-width: 0;
}

body.home-page:not(.order-focus-page) #truckModal .truck-label {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

body.home-page:not(.order-focus-page) #truckModal .truck-meta {
  gap: 5px;
  row-gap: 5px;
}

body.home-page:not(.order-focus-page) #truckModal .meta-pill {
  min-height: 26px;
  padding: 3px 7px;
  font-size: 10.6px;
  line-height: 1.1;
}

body.home-page:not(.order-focus-page) #truckModal .truck-check {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}

body.home-page:not(.order-focus-page) #optionsModal.modal-overlay,
body.home-page:not(.order-focus-page) #dateModal.modal-overlay,
body.home-page:not(.order-focus-page) #serviceCommentModal.modal-overlay {
  --home-panel-modal-top-gap: clamp(46px, 5.8dvh, 72px);
  align-items: flex-end;
  justify-content: flex-start;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page:not(.order-focus-page) #optionsModal.modal-overlay {
  padding: 0 0 0 var(--options-panel-left, max(18px, calc(50vw + 180px)));
}

body.home-page:not(.order-focus-page) #dateModal.modal-overlay {
  padding: 0 0 0 var(--date-panel-left, max(18px, calc(50vw + 180px)));
}

body.home-page:not(.order-focus-page) #serviceCommentModal.modal-overlay {
  padding: 0 0 0 var(--service-comment-panel-left, max(18px, calc(50vw + 180px)));
}

body.home-page:not(.order-focus-page) #optionsModal.modal-overlay .options-modal-content,
body.home-page:not(.order-focus-page) #dateModal.modal-overlay .date-modal-content,
body.home-page:not(.order-focus-page) #serviceCommentModal.modal-overlay .options-modal-content {
  position: relative;
  inset: auto;
  height: calc(100dvh - var(--home-panel-modal-top-gap, 60px));
  max-height: calc(100dvh - var(--home-panel-modal-top-gap, 60px));
  margin: 0;
  border-radius: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

body.home-page:not(.order-focus-page) #optionsModal.modal-overlay .options-modal-content {
  width: min(calc(100vw - var(--options-panel-left, 10px)), var(--options-panel-width, 490px));
  max-width: min(calc(100vw - var(--options-panel-left, 10px)), var(--options-panel-width, 490px));
}

body.home-page:not(.order-focus-page) #dateModal.modal-overlay .date-modal-content {
  width: min(calc(100vw - var(--date-panel-left, 10px)), var(--date-panel-width, 490px));
  max-width: min(calc(100vw - var(--date-panel-left, 10px)), var(--date-panel-width, 490px));
}

body.home-page:not(.order-focus-page) #serviceCommentModal.modal-overlay .options-modal-content {
  width: min(calc(100vw - var(--service-comment-panel-left, 10px)), var(--service-comment-panel-width, 490px));
  max-width: min(calc(100vw - var(--service-comment-panel-left, 10px)), var(--service-comment-panel-width, 490px));
}

body.home-page:not(.order-focus-page) #optionsModal .options-comment {
  min-height: 132px;
  padding: 18px 20px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.38;
}

@media (min-width: 561px) and (max-width: 767px) {
  body.home-page:not(.order-focus-page) #truckModal .truck-pic {
    width: 78px;
    height: 50px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  body.home-page:not(.order-focus-page) #truckModal .truck-pic {
    width: 84px;
    height: 54px;
  }
}

body.home-page:not(.order-focus-page) #serviceCommentModal .options-comment--service {
  min-height: min(320px, 42dvh);
  padding: 18px 20px;
  border-radius: 20px;
}

body.home-page:not(.order-focus-page) #optionsModal.modal-overlay::before,
body.home-page:not(.order-focus-page) #dateModal.modal-overlay::before,
body.home-page:not(.order-focus-page) #serviceCommentModal.modal-overlay::before {
  content: none;
}

@media (max-width: 560px) {
  body.home-page:not(.order-focus-page) #truckModal.modal-overlay {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #truckModal.modal-overlay .truck-modal-content {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-modal-header {
    padding: calc(18px + env(safe-area-inset-top, 0px)) 16px 14px;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-list {
    flex: 1 1 auto;
    min-height: 0;
    padding: 14px 12px 18px;
    gap: 10px;
    background: #f8fafc;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-row {
    display: flex;
    min-height: 118px;
    padding: 14px;
    gap: 10px;
    border-radius: 20px;
    align-items: center;
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-pic {
    flex: 0 0 78px;
    width: 78px;
    height: 50px;
    margin: 0;
  }

  body.home-page #truckModal .truck-pic-img[data-truck-id="bike"] {
    transform: scale(1.72);
  }

  body.home-page #truckModal .truck-pic-img[data-truck-id="van"] {
    transform: translateX(-9px) scale(1.52);
  }

  body.home-page #truckModal .truck-pic-img[data-truck-id="any"] {
    transform: scale(1.14);
  }

  body.home-page #truckModal .truck-pic-img[data-truck-id="roomy"] {
    transform: scale(1.34);
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-texts {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-name-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 10px;
    min-width: 0;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-name {
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    display: block;
    background: transparent;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-name::after {
    content: none;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-label {
    min-width: 0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    gap: 6px;
    min-width: 0;
  }

  body.home-page:not(.order-focus-page) #truckModal .meta-pill {
    min-height: 27px;
    padding: 0 7px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.1;
    color: #4b5563;
    flex: 0 0 auto;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-row.selected .truck-name {
    background: transparent;
    color: #111111;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-row.selected .meta-pill {
    background: #f2fbf5;
    color: #2d6a3f;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-check {
    display: flex;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-row.selected .truck-check {
    opacity: 1;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-modal-footer {
    padding: 14px 12px calc(16px + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-back-btn {
    width: 58px;
    min-height: 58px;
    border-radius: 18px;
  }

  body.home-page:not(.order-focus-page) #truckModal .truck-confirm-btn {
    min-height: 58px;
    border-radius: 18px;
    font-size: 18px;
  }

  body.home-page:not(.order-focus-page) #optionsModal.modal-overlay,
  body.home-page:not(.order-focus-page) #dateModal.modal-overlay,
  body.home-page:not(.order-focus-page) #serviceCommentModal.modal-overlay {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #optionsModal.modal-overlay .options-modal-content,
  body.home-page:not(.order-focus-page) #dateModal.modal-overlay .date-modal-content,
  body.home-page:not(.order-focus-page) #serviceCommentModal.modal-overlay .options-modal-content {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.home-page:not(.order-focus-page) #optionsModal .options-title,
  body.home-page:not(.order-focus-page) #serviceCommentModal .options-title {
    padding: calc(20px + env(safe-area-inset-top, 0px)) 18px 16px;
    border-bottom: 0;
    background: #ffffff;
    font-size: 24px;
  }

  body.home-page:not(.order-focus-page) #optionsModal .options-body,
  body.home-page:not(.order-focus-page) #serviceCommentModal .options-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 18px 20px;
    gap: 16px;
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #optionsModal .options-comment {
    min-height: 146px;
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #optionsModal .option-row {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.home-page:not(.order-focus-page) #optionsModal .option-name-line {
    display: block;
    position: relative;
    padding-right: 24px;
  }

  body.home-page:not(.order-focus-page) #optionsModal .option-inline-tooltip {
    position: absolute;
    top: 4px;
    right: 0;
    margin: 0;
  }

  body.home-page:not(.order-focus-page) #optionsModal .option-counter {
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #optionsModal .options-footer,
  body.home-page:not(.order-focus-page) #serviceCommentModal .options-footer,
  body.home-page:not(.order-focus-page) #dateModal .date-footer {
    padding: 14px 12px calc(16px + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #optionsModal .opt-back-btn,
  body.home-page:not(.order-focus-page) #serviceCommentModal .opt-back-btn,
  body.home-page:not(.order-focus-page) #dateModal .date-back-btn {
    width: 58px;
    min-height: 58px;
    border-radius: 18px;
  }

  body.home-page:not(.order-focus-page) #optionsModal .opt-confirm-btn,
  body.home-page:not(.order-focus-page) #serviceCommentModal .opt-confirm-btn,
  body.home-page:not(.order-focus-page) #dateModal .date-confirm-btn {
    min-height: 58px;
    border-radius: 18px;
    font-size: 18px;
  }

  body.home-page:not(.order-focus-page) #dateModal .date-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: calc(18px + env(safe-area-inset-top, 0px)) 16px 16px;
    gap: 14px;
    background: #f8fafc;
  }

  body.home-page:not(.order-focus-page) #dateModal .date-modal-title {
    font-size: 24px;
  }

  body.home-page:not(.order-focus-page) #dateModal .date-picker-value-btn,
  body.home-page:not(.order-focus-page) #dateModal .date-rule-card {
    background: #ffffff;
  }

  body.home-page:not(.order-focus-page) #dateModal .date-popup-layer {
    inset: 0 0 calc(86px + env(safe-area-inset-bottom, 0px)) 0;
  }
}

/* Tragehilfe uses the shared home stylesheet, so keep its hero media constrained. */
body.home-page.loaders-page .hero-left {
  padding-top: 18px;
}

body.home-page.loaders-page .hero-right {
  margin-top: -6px;
  position: relative;
  z-index: 2;
}

body.home-page.loaders-page .loaders-hero-v2 {
  padding-top: 0;
}

body.home-page.loaders-page .loaders-hero-v2-media {
  position: relative;
  width: min(100%, 620px);
  max-width: 620px;
  margin: 0;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.home-page.loaders-page .loaders-hero-v2-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body.home-page.loaders-page .loaders-hero-v2-actions {
  position: absolute;
  left: clamp(40px, 7.4%, 48px);
  right: auto;
  bottom: clamp(12px, 3.1%, 18px);
  z-index: 2;
  display: flex;
  margin-top: 0;
}

body.home-page.loaders-page .loaders-hero-v2-action-primary {
  width: clamp(104px, 18%, 116px);
  height: clamp(104px, 18%, 116px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  font-size: 13px;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 34px rgba(17, 17, 17, 0.26);
}

body.home-page.loaders-page .loaders-hero-v2-action-primary .loaders-hero-v2-action-icon {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 767px) {
  body.home-page.loaders-page .loaders-hero-v2-actions {
    left: 28px;
    bottom: 10px;
  }

  body.home-page.loaders-page .loaders-hero-v2-action-primary {
    width: 96px;
    height: 96px;
    padding: 10px;
    border-radius: 20px;
    font-size: 12.2px;
    line-height: 1.05;
  }

  body.home-page.loaders-page .loaders-hero-v2-action-primary .loaders-hero-v2-action-icon {
    font-size: 18px;
  }
}

body.home-page.loaders-page .loaders-hero-v2-subtitle {
  width: 100%;
  max-width: 620px;
  white-space: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

/* PageSpeed contrast fixes for the booking surface. */
body.home-page .hero-spotlight-accent {
  color: #087c3a !important;
}

body.home-page--de .hero-gallery--de-spotlight .hero-gallery-counter-total,
body.home-page--de .hero-gallery--de-spotlight .hero-gallery-counter-separator {
  color: #536173 !important;
}

body.home-page #quickOrderWidget .truck-field-label,
body.home-page .truck-field-label,
body.home-breakpoints-page.home-page #quickOrderWidget .truck-field-label,
body.home-page #quickOrderWidget .phone-input-main .floating-label,
body.home-page .phone-input-main .floating-label,
body.home-page .phone-input-main input:focus ~ .floating-label,
body.home-page .phone-input-main input:not(:placeholder-shown) ~ .floating-label,
body.home-breakpoints-page.home-page #quickOrderWidget .phone-input-main .floating-label,
body.home-breakpoints-page.home-page #quickOrderWidget .phone-input-main input:focus ~ .floating-label,
body.home-breakpoints-page.home-page #quickOrderWidget .phone-input-main input:not(:placeholder-shown) ~ .floating-label {
  color: #536173 !important;
}

body.home-page .task-panel-tab {
  color: #4b5563 !important;
}

body.home-page .wallet-badge {
  background: #087c3a !important;
  color: #ffffff !important;
}
