/* Информация для поставщиков (Figma 1:13897 desktop, 1:14189 mobile) */

/* --- Hero --- */
.suppliers-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 341px;
  margin-top: 8px;
}

.suppliers-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 614px;
}

.suppliers-hero__title {
  max-width: 527px;
  font-weight: var(--fw-bold);
  font-size: 48px;
  line-height: 51px;
  letter-spacing: var(--ls-base);
  color: var(--text-brown-dark);
}

.suppliers-hero__line {
  width: 100%;
  height: 2px;
  background: var(--yellow-500);
}

.suppliers-hero__desc {
  font-weight: var(--fw-medium);
  font-size: 18px;
  line-height: 26px;
  letter-spacing: var(--ls-base);
  color: var(--text-dark-800);
}

.suppliers-hero__img {
  width: 341px;
  height: 341px;
  flex-shrink: 0;
  object-fit: contain;
}

/* --- Шаги 01–04 --- */
.suppliers-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 21px;
  border: 1px solid rgba(31, 30, 30, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: var(--bg-white);
}

.step-card__num {
  font-weight: var(--fw-medium);
  font-size: 48px;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--gold-dark);
}

.step-card__line {
  width: 100%;
  height: 2px;
  background: var(--yellow-500);
}

.step-card__title {
  font-weight: var(--fw-bold);
  font-size: 20px;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--text-brown-dark);
}

.step-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-card__list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: var(--ls-base);
  color: var(--text-gray-600);
}

.step-card__list img {
  flex-shrink: 0;
}

.step-card__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 90px;
  background: var(--gold-dark);
}

/* --- Формат работы: контакты --- */
.suppliers-contact {
  margin-top: 64px;
  margin-bottom: 120px;
}

.suppliers-contact__card {
  display: flex;
  align-items: center;
  min-height: 192px;
  padding: 40px 48px;
  border-radius: 12px;
  background: var(--text-dark-800);
}

.suppliers-contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 50%;
  padding-right: 40px;
  border-right: 1px solid var(--bg-white);
}

.suppliers-contact__title {
  font-weight: var(--fw-medium);
  font-size: 32px;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--bg-white);
}

.suppliers-contact__desc {
  max-width: 280px;
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: var(--ls-base);
  color: rgba(255, 255, 255, 0.7);
}

.suppliers-contact__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 50%;
  padding-left: 67px;
}

.suppliers-contact__links a {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: var(--ls-base);
  color: var(--bg-white);
}

.suppliers-contact__links a:hover {
  color: var(--yellow-500);
}

/* --- Адаптив --- */
@media (max-width: 1023px) {
  .suppliers-hero__title {
    font-size: 40px;
    line-height: 44px;
  }

  .suppliers-hero__img {
    width: 280px;
    height: 280px;
  }

  .suppliers-contact__links {
    padding-left: 32px;
  }
}

@media (max-width: 767px) {
  .suppliers-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-height: 0;
    margin-top: 0;
  }

  .suppliers-hero__title {
    font-size: 30px;
    line-height: 34px;
  }

  .suppliers-hero__desc {
    font-size: 15px;
    line-height: 22px;
  }

  .suppliers-hero__img {
    width: 240px;
    height: 240px;
    align-self: center;
  }

  .suppliers-steps {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .step-card__num {
    font-size: 36px;
  }

  .step-card__list li {
    align-items: flex-start;
  }

  .suppliers-contact {
    margin-top: 32px;
    margin-bottom: 48px;
  }

  .suppliers-contact__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 20px;
  }

  .suppliers-contact__info {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
  }

  .suppliers-contact__title {
    font-size: 24px;
  }

  .suppliers-contact__links {
    padding-left: 0;
  }
}
