/* ========================= INNER PAGES ========================= */

.page {
  padding-bottom: 80px;
}

.page-hero {
  padding: 56px 0 48px;
  margin-bottom: 50px;
  background: #f9f9f9;
}

.page-hero__title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 20px;
}

.page-hero__lead {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 1200px;
  margin: 0;
}

.page-block {
  margin-bottom: 50px;
}

.page-block__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 32px;
}

.page-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.page-list__item {
  padding: 28px 32px;
  background: #f9f9f9;
  font-size: 24px;
  line-height: 1.35;
}

.page-list__item strong {
  display: block;
  font-weight: 400;
  margin-bottom: 8px;
}

.page-form {
  max-width: 640px;
  display: grid;
  gap: 24px;
}

.page-form__field {
  display: grid;
  gap: 10px;
}

.page-form__label {
  font-size: 20px;
  line-height: 1.2;
}

.page-form__input {
  width: 100%;
  height: 53px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 0 20px;
  font: 400 20px/1.2 "Proxima Nova", "Montserrat", "Segoe UI", Arial, sans-serif;
  color: #000;
  outline: none;
}

.page-form__input:focus {
  border-color: #ED1C24;
}

.page-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 53px;
  padding: 0 32px;
  background: #ED1C24;
  color: #fff;
  border: none;
  font: 400 20px/1.2 "Proxima Nova", "Montserrat", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.page-form__btn:hover {
  opacity: 0.85;
}

.page-form__note {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0 32px;
    margin-bottom: 32px;
  }

  .page-hero__title {
    font-size: 36px;
  }

  .page-hero__lead {
    font-size: 20px;
  }

  .page-block__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .page-list__item {
    padding: 20px;
    font-size: 20px;
  }
}
