.shipping {
  padding: 64px 0 72px;
}

.shipping__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.shipping__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  color: #231638;
}

.shipping__subtitle {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #4a257f;
}

.shipping__text {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #7a7387;
  max-width: 760px;
}

/* таблица */

.shipping__table-wrapper {
  overflow-x: auto;
  background: #fafafb;
  border-radius: 16px;
  padding: 16px 18px 18px;
}

.shipping__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.shipping__table thead th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  color: #8a8298;
  border-bottom: 1px solid #ece9f3;
}

.shipping__table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #f1eef6;
  color: #3b3446;
}

.shipping__table tbody tr:last-child td {
  border-bottom: none;
}

/* примечания */

.shipping__notes {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 12px;
  color: #8a8298;
}

.shipping__notes li {
  margin-bottom: 4px;
}

/* адаптив */

@media (max-width: 640px) {
  .shipping {
    padding: 48px 0 56px;
  }

  .shipping__title {
    font-size: 22px;
  }
}
.tc {
  padding: 40px 0 56px;
  background: #fafafb;
}

.tc__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tc__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #231638;
}

.tc__text {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #7a7388;
  max-width: 720px;
}

.tc__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tc-logo {
  flex: 0 0 150px;
  height: 70px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-logo--primary {
  background: #3f2c7b;
}

.tc-logo img {
  max-width: 80%;
  max-height: 60%;
}

/* адаптив */

@media (max-width: 640px) {
  .tc__logos {
    gap: 12px;
  }
  .tc-logo {
    flex: 0 0 calc(50% - 6px);
  }
}

.consult-cta {
  padding: 32px 0 40px;
  background: #ffffff;
}

.consult-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.consult-cta__content {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-image: url("../images/headerBackground.jpg");

  color: #ffffff;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.consult-cta__title {
  position: relative;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  max-width: 320px;
}

.consult-cta__text {
  position: relative;
  margin: 0 0 18px;
  font-size: 13px;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.85);
}

.consult-cta__btn {
  position: relative;
  padding: 10px 26px;
  
  font-size: 14px;
  font-weight: 600;

}

/* адаптив */

@media (max-width: 640px) {
  .consult-cta__content {
    padding: 22px 20px;
  }
}

.delivery-terms {
  padding: 64px 0 72px;
  background: #ffffff;
}

.delivery-terms__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.delivery-terms__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #231638;
}

.delivery-terms__lead {
  margin: 0 0 14px;
  font-size: 13px;
  color: #7a7387;
}

.delivery-terms__bullets {
  margin: 0 0 24px;
  padding-left: 18px;
  font-size: 13px;
  color: #5f5868;
}

.delivery-terms__bullets li {
  margin-bottom: 4px;
}

/* карточки */

.delivery-terms__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.delivery-card {
  background: #fafafb;
  border-radius: 16px;
  padding: 18px 20px 16px;
  font-size: 13px;
  color: #5f5868;
}

.delivery-card__text {
  margin: 0 0 12px;
  line-height: 1.6;
}

.delivery-card__small {
  margin: 8px 0 0;
  font-size: 12px;
  color: #8a8298;
}

/* внутренняя плашка с иконкой */

.delivery-card__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f2e9ff;
}

.delivery-card__note-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #4a257f;
}

.delivery-card__note-title {
  font-size: 13px;
  font-weight: 600;
  color: #231638;
  margin-bottom: 4px;
}

.delivery-card__note-text {
  font-size: 12px;
  color: #5f5868;
}

/* бейдж справа */

.delivery-card__badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2e9ff;
  font-size: 12px;
  font-weight: 600;
  color: #4a257f;
}

/* адаптив */

@media (max-width: 900px) {
  .delivery-terms__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .delivery-terms {
    padding: 48px 0 56px;
  }

  .delivery-terms__title {
    font-size: 22px;
  }
}
.geo {
  padding: 64px 0 72px;
  background: #f8f7fb;
}

.geo__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.geo__title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #231638;
}

.geo__text {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.7;
  color: #6a6376;
  max-width: 820px;
}

.geo__layout {
  display: grid;
  /* grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); */
  gap: 24px;
  align-items: flex-start;
}

.geo__cards__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.geo__cards__top{
    display: flex;
    margin-bottom:20px;
}

.geo-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px 14px;
  font-size: 13px;
  color: #5f5869;
}

.geo-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #f2e9ff;
  margin-bottom: 8px;
}

.geo-card__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #231638;
}

.geo-card__text {
  margin: 0;
  line-height: 1.5;
}

.geo__map {
  border-radius: 16px;
  background: #f3eefc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.geo__map img {
  max-width: 100%;
  height: auto;
}

.geo__footer {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #8a8298;
}

/* адаптив */

@media (max-width: 1024px) {
  .geo__layout {
    grid-template-columns: 1fr;
  }

  .geo__map {
    order: -1;
    max-height: 260px;
  }
}

@media (max-width: 768px) {
  .geo__cards {
    grid-template-columns: 1fr;
  }

  .geo {
    padding: 48px 0 56px;
  }

  .geo__title {
    font-size: 22px;
  }
}
