.cooperation-page {
  max-width: 1011px;
  margin: 0 auto 48px;
}

.cooperation-page__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cooperation-page__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #222;
}

.cooperation-page__intro a {
  color: #d1ab55;
}

.cooperation-page__benefits {
  margin-bottom: 40px;
}

.cooperation-page__benefits-title {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  color: #222;
}

.cooperation-page__benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cooperation-page__benefits-item {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #222;
}

.cooperation-page__benefits-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1ab55;
}

.cooperation-form {
  background: #f9fafb;
  border: 1px solid #eceff3;
  border-radius: 16px;
  padding: 32px;
}

.cooperation-form__title {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  color: #222;
}

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

.cooperation-form__row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.cooperation-form .form.popup .form-group {
  margin-bottom: 0;
}

.cooperation-form__field--full {
  grid-column: 1 / -1;
}

.cooperation-form__field .form-group {
  margin-bottom: 0;
}

.cooperation-form__field textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.cooperation-form__field--file .form-group > label {
  margin-bottom: 8px;
}

.cooperation-form__field--file .uploader {
  margin-top: 0;
}

.cooperation-form__field--file .uploader .filename {
  padding: 12px 16px 12px 47px;
  line-height: 24px;
  color: #666;
}

.cooperation-form__field--file .uploader:before {
  top: 50%;
  margin-top: -8px;
}

.cooperation-form__field--file .uploader.files_add .filename {
  color: #222;
}

.cooperation-form__field--file .form .input .add_file {
  margin-top: 8px;
  color: #d1ab55;
}

.cooperation-form__footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cooperation-form .form .licence_block {
  text-align: left;
  margin: 0;
}

.cooperation-form__licence label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  cursor: pointer;
}

.cooperation-form__licence .checkmark {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.cooperation-form__licence .form-checkbox__input:checked ~ .checkmark {
  background: #d1ab55;
  border-color: #d1ab55;
}

.cooperation-form__licence .checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.2s;
}

.cooperation-form__licence .form-checkbox__input:checked ~ .checkmark::after {
  opacity: 1;
}

.cooperation-form__licence .politic_text a {
  color: #d1ab55;
}

.cooperation-form__licence.licence_block.error label {
  color: #c0392b;
}

.cooperation-form__licence.licence_block label.error {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 18px;
  color: #c0392b;
}

body.cooperation-success-open {
  overflow: hidden;
}

.cooperation-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(58, 63, 68, 0.7);
}

.cooperation-success-popup {
  width: 100%;
  max-width: 480px;
  padding: 40px 32px 32px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.cooperation-success-popup__icon {
  margin-bottom: 20px;
}

.cooperation-success-popup__title {
  margin-bottom: 12px;
  font-weight: 500;
  color: #222;
}

.cooperation-success-popup__text {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

.cooperation-success-popup__close {
  min-width: 220px;
}

.cooperation-form__submit {
  align-self: flex-start;
  min-width: 220px;
}

.cooperation-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 0;
}

.cooperation-form__success-title {
  font-weight: 500;
  color: #222;
}

.cooperation-form__success-text {
  max-width: 520px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

.cooperation-form__error {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .cooperation-page__benefits-list,
  .cooperation-form__body,
  .cooperation-form__row {
    grid-template-columns: 1fr;
  }

  .cooperation-form {
    padding: 24px 20px;
  }

  .cooperation-form__title,
  .cooperation-page__benefits-title {
    font-size: 24px;
    line-height: 32px;
  }

  .cooperation-form__submit {
    width: 100%;
  }
}
