/* Лендинг /dlya-perevozchikov — перевозчики */
.wrap--carrier-land {
  max-width: none;
  padding: 0 0 48px;
}

.cl {
  --cl-amber: #e8a317;
  --cl-ok: #3ecf8e;
  color: #f4f7fb;
}

/* —— Hero: one composition —— */
.cl-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-content: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 163, 23, 0.28);
  background: #04090f;
}

.cl-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cl-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 42%;
  display: block;
  animation: cl-kenburns 18s ease-out both;
}

@keyframes cl-kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.cl-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 9, 15, 0.94) 0%, rgba(4, 9, 15, 0.72) 28%, rgba(4, 9, 15, 0.28) 52%, rgba(4, 9, 15, 0.08) 72%, transparent 88%),
    linear-gradient(180deg, rgba(4, 9, 15, 0.25) 0%, rgba(4, 9, 15, 0.12) 40%, rgba(4, 9, 15, 0.82) 82%, #04090f 100%);
}

/* Одна ширина с .cl-shell — левый край hero = левый край блоков ниже */
.cl-hero__copy {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(28px, 5vh, 56px) 0 clamp(36px, 6vh, 64px);
  display: grid;
  gap: 16px;
  justify-items: start;
  text-align: left;
  animation: cl-rise 0.85s cubic-bezier(.2,.7,.2,1) both;
}

.cl-hero__copy > * {
  max-width: 34rem;
}

@keyframes cl-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.cl-brand {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3rem, 9vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
}

.cl-brand span { color: var(--cl-amber); }

.cl-hero__title {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  max-width: 22ch;
}

.cl-hero__lead {
  margin: 0;
  color: var(--fog, #c5d0db);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.45;
  max-width: 34ch;
}

.cl-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.cl-cta .btn {
  min-height: 52px;
  padding: 0 22px;
  font-weight: 800;
}

.cl-cta .btn-primary {
  box-shadow: 0 10px 28px rgba(232, 163, 23, 0.28);
}

/* —— Shell sections: та же ширина/отступы, что у hero —— */
.cl-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.cl-section {
  padding: clamp(40px, 7vw, 72px) 0 0;
}

.cl-section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 42rem;
  text-align: left;
  justify-items: start;
}

.cl-section__head h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cl-section__head p {
  margin: 0;
  color: var(--fog, #c5d0db);
  font-size: 1.05rem;
  line-height: 1.45;
}

/* —— Promise split —— */
.cl-promise {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.cl-promise__visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: min(52vw, 420px);
  background: #0a121c;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cl-promise__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: min(52vw, 420px);
}

.cl-promise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.cl-promise__list li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 2px solid rgba(232, 163, 23, 0.55);
}

.cl-promise__list strong {
  color: #fff;
  font-size: 1.05rem;
}

.cl-promise__list span {
  color: var(--fog, #c5d0db);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* —— Steps (not cards — numbered flow) —— */
.cl-steps {
  display: grid;
  gap: 0;
  counter-reset: clstep;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cl-step {
  counter-increment: clstep;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.cl-step::before {
  content: counter(clstep);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #141414;
  background: var(--cl-amber);
  box-shadow: 0 8px 20px rgba(232, 163, 23, 0.25);
}

.cl-step strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.cl-step span {
  color: var(--fog, #c5d0db);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* —— Wait visual —— */
.cl-wait {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.cl-wait__visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a121c;
  min-height: 280px;
}

.cl-wait__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.cl-wait__copy {
  display: grid;
  gap: 14px;
}

.cl-wait__copy h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cl-wait__copy p {
  margin: 0;
  color: var(--fog, #c5d0db);
  font-size: 1.05rem;
  line-height: 1.5;
}

.cl-pillars {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.cl-pillars div {
  padding: 0 0 0 14px;
  border-left: 2px solid rgba(62, 207, 142, 0.55);
}

.cl-pillars strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

.cl-pillars span {
  color: var(--fog, #c5d0db);
  font-size: 0.92rem;
  line-height: 1.4;
}

/* —— Closing CTA: на ПК — строка текст слева / действие справа —— */
.cl-close {
  margin-top: clamp(48px, 8vw, 80px);
  padding: clamp(28px, 5vw, 44px) 0;
  border-top: 1px solid rgba(232, 163, 23, 0.28);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  text-align: left;
  justify-items: stretch;
  background:
    radial-gradient(700px 220px at 12% 50%, rgba(232, 163, 23, 0.1), transparent 70%);
}

.cl-close__text {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.cl-close__action {
  display: grid;
  gap: 10px;
  justify-items: start;
  align-content: center;
}

.cl-close h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  font-weight: 700;
  max-width: 14ch;
  line-height: 1.15;
}

.cl-close p {
  margin: 0;
  color: var(--fog, #c5d0db);
  max-width: 36ch;
  line-height: 1.45;
}

.cl-note {
  margin: 0;
  font-size: 0.82rem;
  color: #8a9aab;
  text-align: left;
}

@media (max-width: 860px) {
  .cl-hero {
    min-height: min(78vh, 640px);
  }

  .cl-hero__copy {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .cl-hero__copy > * {
    max-width: none;
  }

  .cl-promise,
  .cl-wait,
  .cl-close {
    grid-template-columns: 1fr;
  }

  .cl-promise__visual,
  .cl-wait__visual {
    min-height: 240px;
    order: -1;
  }

  .cl-promise__visual img,
  .cl-wait__visual img {
    min-height: 240px;
  }

  .cl-cta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cl-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .cl-close__action {
    justify-items: stretch;
  }

  .cl-hero__copy,
  .cl-shell {
    width: min(1280px, calc(100% - 32px));
  }
}

@media (max-width: 560px) {
  .cl-hero {
    min-height: min(70vh, 560px);
  }

  .cl-brand {
    font-size: clamp(2.6rem, 14vw, 3.4rem);
  }

  .cl-hero__media img {
    object-position: 62% 42%;
  }

  .cl-hero__shade {
    background:
      linear-gradient(180deg, rgba(4, 9, 15, 0.25) 0%, rgba(4, 9, 15, 0.45) 40%, rgba(4, 9, 15, 0.92) 72%, #04090f 100%),
      linear-gradient(90deg, rgba(4, 9, 15, 0.75) 0%, rgba(4, 9, 15, 0.35) 55%, transparent 100%);
  }

  .cl-step {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .cl-step::before {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cl-hero__media img,
  .cl-hero__copy {
    animation: none !important;
  }
}
