/* ============================================
   BLOOMIA — Static Pages
   About, Contacts, Terms, Privacy, 404
   ============================================ */

/* --- Static Page --- */
.static-page {
  padding: 16px 0 32px;
}

.static-page__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #0F0F27;
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .static-page__title {
    font-size: 30px;
  }
}

.static-page__blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.static-page__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0F0F27;
  margin-top: 8px;
}

.static-page__text {
  font-size: 15px;
  color: #807D86;
  line-height: 1.7;
}

.static-page__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.static-page__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #0F0F27;
  line-height: 1.5;
}

.static-page__list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #4CAF50;
  margin-top: 2px;
}

/* --- About Cards --- */
.about-card {
  display: flex;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.about-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCE4EC;
  border-radius: 16px;
  color: #F50057;
}

.about-card__icon svg {
  width: 24px;
  height: 24px;
}

.about-card__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0F0F27;
  margin-bottom: 6px;
}

.about-card__text {
  font-size: 14px;
  color: #807D86;
  line-height: 1.6;
}

/* --- Contact Cards --- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  display: flex;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCE4EC;
  border-radius: 14px;
  color: #F50057;
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-card__label {
  font-size: 12px;
  color: #807D86;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.contact-card__value {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0F0F27;
}

.contact-card__desc {
  font-size: 13px;
  color: #807D86;
  margin-top: 4px;
  line-height: 1.4;
}

/* --- Contact Form --- */
.contact-form-section {
  margin-top: 32px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.contact-form__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0F0F27;
  margin-bottom: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form__field label {
  font-size: 13px;
  font-weight: 500;
  color: #0F0F27;
}

.required {
  color: #F50057;
}

.contact-form__field input,
.contact-form__field textarea {
  padding: 12px 16px;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  color: #0F0F27;
  background: #F7F7F7;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #F50057;
  background: #fff;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__captcha {
  max-width: 300px;
}

.contact-form__btn {
  margin-top: 4px;
}

.contact-form__status {
  margin-top: 12px;
  font-size: 14px;
  border-radius: 12px;
  padding: 0;
}

.contact-form__status--ok {
  color: #4CAF50;
  background: #E8F5E9;
  padding: 10px 16px;
}

.contact-form__status--err {
  color: #F44336;
  background: #FFEBEE;
  padding: 10px 16px;
}

/* --- Legal Sections --- */
.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-section {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.legal-section__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0F0F27;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.legal-section__num {
  color: #F50057;
  font-weight: 700;
}

.legal-section__text {
  font-size: 14px;
  color: #807D86;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-section__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.legal-section__list li {
  font-size: 14px;
  color: #0F0F27;
  line-height: 1.6;
  padding-left: 4px;
}

.legal-section__sub-num {
  color: #807D86;
  font-size: 13px;
  margin-right: 4px;
}

/* --- Error Page (404) --- */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 50vh;
}

.error-page__code {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 96px;
  color: #F50057;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.3;
}

.error-page__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0F0F27;
  margin-bottom: 8px;
}

.error-page__text {
  font-size: 15px;
  color: #807D86;
  margin-bottom: 28px;
  max-width: 400px;
  line-height: 1.5;
}
