.cb-logistics-module {
  background: #efeff4;
  padding: 56px 24px 64px;
  overflow: hidden;
}

.cb-logistics-module__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.cb-logistics-module__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid #d4b45b;
  border-radius: 999px;
  color: #c39413;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cb-logistics-module__heading {
  margin-bottom: 34px;
}

.cb-logistics-module__title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.3rem, 4.4vw, 4.45rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #2f3787;
}

.cb-logistics-module__title span {
  display: block;
}

.cb-logistics-module__title-line-2 {
  color: #ffae00;
  margin-top: 8px;
}

.cb-logistics-module__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.cb-logistics-card {
  background: #ffffff;
  border: 1px solid #d8dde8;
  border-radius: 20px;
  padding: 30px 28px;
  min-height: 215px;
  box-sizing: border-box;
}

.cb-logistics-card__label {
  margin-bottom: 12px;
  color: #335fc1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cb-logistics-card__title {
  margin: 0 0 12px;
  color: #2f3787;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.18;
  font-weight: 800;
}

.cb-logistics-card__desc,
.cb-logistics-card__desc p {
  margin: 0;
  color: #243657;
  font-size: 1rem;
  line-height: 1.55;
}

.cb-logistics-card__desc strong {
  font-weight: 800;
  color: #071b45;
}

.cb-logistics-highlight {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 38px;
  background: linear-gradient(90deg, #03122d 0%, #032154 62%, #13386f 100%);
}

.cb-logistics-highlight::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -6%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.cb-logistics-highlight__content {
  position: relative;
  z-index: 1;
  padding: 38px 36px 40px;
  max-width: 980px;
}

.cb-logistics-highlight__label {
  margin-bottom: 14px;
  color: #d4a318;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cb-logistics-highlight__title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.4vw, 2.55rem);
  line-height: 1.18;
  font-weight: 800;
}

.cb-logistics-highlight__desc,
.cb-logistics-highlight__desc p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
  line-height: 1.7;
}

.cb-logistics-highlight__desc strong {
  color: #e2b118;
  font-weight: 800;
}

.cb-logistics-module__actions {
  margin-top: 0;
}

.cb-logistics-module__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  padding: 18px 34px;
  border-radius: 10px;
  background: #ffae00;
  color: #2f3787;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cb-logistics-module__button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.cb-logistics-module__button-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 20px;
}

.cb-logistics-module__button-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 991px) {
  .cb-logistics-module {
    padding: 44px 20px 52px;
  }

  .cb-logistics-module__grid {
    grid-template-columns: 1fr;
  }

  .cb-logistics-card {
    min-height: auto;
  }

  .cb-logistics-highlight__content {
    padding: 30px 24px 32px;
  }
}

@media (max-width: 575px) {
  .cb-logistics-module__title {
    line-height: 1.02;
  }

  .cb-logistics-card,
  .cb-logistics-highlight {
    border-radius: 18px;
  }

  .cb-logistics-card {
    padding: 24px 20px;
  }

  .cb-logistics-module__button {
    width: 100%;
    padding: 18px 24px;
  }
}

.cb-logistics-card__desc {
  color:black;
