.contact {
  margin-top: 120px;
  padding-bottom: 144px;
}
.contact__lead {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: #111111;
}
@media (max-width: 1000px) {
  .contact {
    margin-top: 96px;
    padding-bottom: 96px;
  }
}
@media (max-width: 767px) {
  .contact {
    margin-top: 64px;
    padding-bottom: 64px;
  }
  .contact__lead {
    font-size: 14px;
    line-height: 28px;
    text-align: left;
  }
}

.form {
  width: 800px;
  max-width: 100%;
  margin: 64px auto 0;
}
.form__row + .form__row {
  margin-top: 32px;
}
.form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #111111;
}
.form__badge {
  padding: 5px 8px;
  background: #FD7403;
  border-radius: 2px;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  color: #FFFFFF;
}
.form__badge--any {
  background: rgba(5, 33, 74, 0.5);
}
.form__field {
  margin-top: 12px;
}
.form__note {
  margin-top: 8px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.7);
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form select,
.form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #111111;
  background: #FFFFFF;
  border: 1px solid rgba(5, 33, 74, 0.3);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=tel]::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: rgba(17, 17, 17, 0.35);
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=tel]:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: #FD7403;
  box-shadow: 0 0 0 3px rgba(253, 116, 3, 0.15);
}
.form textarea {
  min-height: 220px;
  resize: vertical;
}
.form select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2305214A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}
@media (max-width: 767px) {
  .form__checks {
    grid-template-columns: 1fr;
  }
}
.form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #111111;
  cursor: pointer;
}
.form__check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #FD7403;
  cursor: pointer;
}
.form__agree {
  margin-top: 40px;
  padding: 24px;
  background: rgba(5, 33, 74, 0.05);
  border-radius: 8px;
  text-align: center;
}
.form__agree .form__check {
  justify-content: center;
  font-size: 15px;
}
.form__agree a {
  color: #05214A;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.form__agree a:hover {
  color: #FD7403;
}
.form__submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.form__submit .btn-cta {
  cursor: pointer;
}
@media (max-width: 767px) {
  .form {
    margin-top: 40px;
  }
  .form__row + .form__row {
    margin-top: 24px;
  }
  .form__agree {
    margin-top: 32px;
    padding: 20px;
  }
  .form__submit {
    margin-top: 32px;
  }
}

.contactinfo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 800px;
  max-width: 100%;
  margin: 80px auto 0;
}
.contactinfo__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  border: 1px solid rgba(5, 33, 74, 0.3);
  border-radius: 8px;
  text-align: center;
}
.contactinfo__label {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: #FD7403;
}
.contactinfo__value {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: #05214A;
  word-break: break-all;
}
.contactinfo__note {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.7);
}
@media (max-width: 767px) {
  .contactinfo {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 56px;
  }
  .contactinfo__item {
    padding: 24px;
  }
  .contactinfo__value {
    font-size: 19px;
  }
}
