/* content-page.css — типографика блоков ContentPage (Контакты, Вакансии,
   Производство, Цены, Отзывы). Изолирован от new_styles.css, подключается
   только на контентных страницах. Mobile-first; планшетная фаза с 600px. */

.content-page {
  width: 100%;
  box-sizing: border-box;
}

.content-page > * + * {
  margin-top: 20px;
}

/* Заголовки секций — как на странице ЖК (.lighting-section__title и др.):
   слева, DIN Pro, 33px/1.05, без рамки, без капса. */
.content-heading {
  text-align: left;
  text-transform: none;
  font-family: 'DIN Pro', sans-serif;
  font-weight: 400;
  font-size: 33px;
  line-height: 1.05;
  letter-spacing: 0;
  color: #414142;
  border: none;
  padding: 0;
  margin: 20px 0 12px;
}

/* Обычный текст — размеры/цвет наследуются от site .maket-description p
   (21px/1.4/#626161), чтобы совпадать с ЖК. Здесь только спейсинг и ссылки. */
.content-text h3 {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.2;
  color: #414142;
  margin: 16px 0 6px;
}

.content-text p { margin: 0 0 12px; }
.content-text ul,
.content-text ol { margin: 0 0 12px; padding-left: 22px; }
.content-text li { margin-bottom: 4px; line-height: 1.4; }
.content-text a { color: #8CC540; }
/* Телефон в тексте не переносим по разрядам (напр. «звоните по телефону +7 (812) …»). */
.content-page a[href^="tel:"] { white-space: nowrap; }

/* Маркированные списки */
.content-bullets__title {
  font-family: 'DIN Pro', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.2;
  color: #414142;
  margin: 0 0 8px;
}

.content-bullets__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.content-bullets__item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.45;
  color: #626161;
}

.content-bullets__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8CC540;
}

/* Изображение */
.content-image {
  margin: 0;
}

.content-image__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.content-image__caption {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
  text-align: center;
}

/* Этапы (старт / процесс / финиш) */
.content-steps__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-steps__group {
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  padding: 14px 16px;
  background: #FAFAFA;
}

.content-steps__label {
  font-family: 'DIN Pro', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8CC540;
  font-size: 15px;
  margin-bottom: 8px;
}

.content-steps__list {
  margin: 0;
  padding-left: 20px;
}

.content-steps__item {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #626161;
}

.content-steps__footer {
  text-align: center;
  font-family: 'DIN Pro', sans-serif;
  font-size: 16px;
  color: #8CC540;
  margin-top: 14px;
}

/* Контактная информация */
.contact-info {
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  padding: 16px;
  background: #FAFAFA;
}

.contact-info__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.contact-info__label {
  font-family: 'DIN Pro', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #8CC540;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 17px;
  line-height: 1.4;
  color: #414142;
}

.contact-info__phone,
.contact-info__email {
  color: #414142;
  font-weight: 600;
}

.contact-info__note {
  color: #777;
  font-weight: 400;
  font-size: 13px;
}

.contact-info__requisites {
  border-top: 1px solid #E2E2E2;
  padding-top: 12px;
  margin-top: 4px;
}

.contact-info__requisites-title {
  font-family: 'DIN Pro', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #8CC540;
  margin: 0 0 6px;
}

.contact-info__requisites p {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin: 0;
  word-break: break-word;
}

.contact-info__map {
  margin-top: 14px;
}

.contact-info__map iframe {
  width: 100%;
  border: 0;
  border-radius: 6px;
}

/* Планшетная фаза (>= 600px) */
@media (min-width: 600px) {
  .content-steps__grid {
    flex-direction: row;
    align-items: stretch;
  }
  .content-steps__group { flex: 1; }

  .contact-info__row {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
  .contact-info__label { min-width: 120px; margin-bottom: 0; }
}

/* «Доставка и гарантия»: на мобиле (<1024) убрать нижний CTA — его дублирует
   плавающая кнопка связи. Десктопный CTA остаётся. Скоуп — только эта страница. */
@media (max-width: 1023px) {
  .content-page--dostavka-i-garantiya .action-buttons { display: none; }
}
