

/* Start:/local/templates/sbformat/css/content-blocks.css?17859388646737*/
/* Контентные блоки (itipark:content.blocks): лиды, SEO-тексты, FAQ.
   Автономные стили — не зависят от подключения основного дизайн-CSS. */

.content-block {
    max-width: 1440px;
    margin: 60px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.content-block__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px;
    color: var(--text, #1d1d1f);
    text-transform: none;
}

.content-block__text {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text, #1d1d1f);
}

/* В дизайн-системе <br> скрыт на десктопе (base.css: br{display:none}) —
   внутри контентных блоков переносы показываем всегда */
.content-block br {
    display: inline;
}

.content-block__text p {
    margin: 0 0 16px;
}

.content-block__text h2,
.content-block__text h3,
.content-block__text h4 {
    font-weight: 600;
    line-height: 1.25;
    margin: 28px 0 14px;
    color: var(--text, #1d1d1f);
}

.content-block__text h2 { font-size: 26px; }
.content-block__text h3 { font-size: 22px; }
.content-block__text h4 { font-size: 19px; }

.content-block__text ul,
.content-block__text ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.content-block__text li {
    margin-bottom: 8px;
}

.content-block__text a {
    color: var(--primary, #712bc9);
    text-decoration: underline;
}

.content-block__text a:hover {
    text-decoration: none;
}

.content-block__text img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.content-block__text table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px;
    font-size: 16px;
}

.content-block__text th,
.content-block__text td {
    border: 1px solid #e2e2e8;
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}

.content-block__text th {
    background: #f6f4fb;
    font-weight: 600;
}

/* Фолбэк для cookie-попапа: его стили живут в бандле verstka/dist/assets/index.css,
   который глобально не подключён. Без них попап висит видимым блоком под футером.
   Прячем, пока JS не добавил класс .show (совместимо с дизайн-CSS). */
#cookiePopup:not(.show) {
    display: none;
}

/* Корень /catalog/: вводный абзац под H1 внутри hero.
   В дизайне hero имеет фиксированную высоту (650px) — отпускаем её при наличии интро,
   иначе текст и кнопка налезают друг на друга */
.catalog-hero.catalog-hero--with-intro {
    height: auto;
    min-height: 650px;
}

.catalog-hero .content-block--catalog_intro {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.catalog-hero .content-block--catalog_intro .content-block__text {
    max-width: 700px;
}

/* Лид-абзац под H1 на детальных страницах услуг (внутри hero) */
.detail-hero--second .content-block--lead {
    margin: 24px 0 0;
    padding: 0 40px;
    max-width: none;
}

/* В дизайне hero детальной страницы — фиксированная высота (650px) + overflow:hidden.
   Когда в hero есть лид-абзац, отпускаем высоту, иначе галерея обрезается */
.detail-hero--second.detail-hero--with-lead {
    height: auto;
}

.content-block--lead .content-block__text {
    font-size: 20px;
    max-width: 1080px;
}

/* SEO-текст внизу страницы — компактнее */
.content-block--bottom .content-block__text,
.content-block--catalog_seo .content-block__text,
.content-block--about_seo .content-block__text,
.content-block--home_services_seo .content-block__text {
    font-size: 16px;
    color: #4a4a52;
}

/* FAQ-аккордеон (копия правил дизайн-системы verstka/src/styles/main.css,
   т.к. основной index.css глобально не подключён) */
.faq.content-block {
    margin-bottom: 100px;
}

.faq .faq__title {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 40px;
    color: var(--text, #1d1d1f);
}

.faq .faq__item-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1440px;
    margin: 0 auto;
}

.faq .faq__item {
    background-color: #fff;
    border-radius: 30px;
    padding: 20px 40px;
}

.faq .faq__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.faq .faq__item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    color: var(--text, #1d1d1f);
}

.faq .faq__item-btn {
    width: 43px;
    height: 43px;
    min-width: 43px;
    background-color: var(--primary, #712bc9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all .5s ease;
}

.faq .faq__item-btn img {
    transition: all .5s ease;
}

.faq .faq__item.active .faq__item-btn {
    background-color: #fff;
    border: 1px solid var(--text, #1d1d1f);
}

.faq .faq__item.active .faq__item-btn img {
    transform: rotate(-90deg);
    filter: grayscale(100%) brightness(0.3);
}

.faq .faq__item-content {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .5s ease;
}

.faq .faq__item.active .faq__item-content {
    max-height: 700px;
    margin-top: 20px;
    opacity: 1;
}

.faq .faq__item-content p,
.faq .faq__item-content li {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text, #1d1d1f);
    max-width: 1080px;
}

.faq .faq__item-content ol,
.faq .faq__item-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
}

@media (max-width: 1100px) {
    .content-block {
        margin: 40px auto;
        padding: 0 20px;
    }

    .detail-hero--second .content-block--lead {
        padding: 0 20px;
    }

    .catalog-hero.catalog-hero--with-intro {
        min-height: 0;
    }

    .content-block__title {
        font-size: 26px;
    }

    .faq .faq__title {
        font-size: 28px;
        gap: 20px;
    }

    .faq .faq__item {
        padding: 20px;
    }

    .faq .faq__item-title {
        font-size: 17px;
    }

    .faq .faq__item-content p,
    .faq .faq__item-content li {
        font-size: 15px;
    }
}

/* End */


/* Start:/local/templates/sbformat/styles.css?17799490365697*/
@font-face {
    font-family: 'Raleway';
    src: url("/naruzhnay-reklama2/fonts/raleway/Raleway-Regular.ttf");
}

.pre-line {
    white-space: pre-line;
}

.discount__modal .modal__container {
    flex-direction: row;
    padding: 0;
    justify-content: space-between;
}

.discount-modal__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.discount__text {
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    color: #712BC9;
    font-family: 'Raleway', sans-serif;
}

.discount__text span {
    font-weight: 800;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    font-family: 'Raleway', sans-serif;
}

.discount__btn {
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 4px 14px 0 #00000040;
    font-weight: 700;
    font-size: 20px;
    border: none;
    width: 380px;
    cursor: pointer;
    background-color: #712BC9;
    color: #fff;
    border-radius: 50px;
    padding: 20px 30px;
}

.modal__container {
    background: white;
    width: 100%;
    max-width: 1200px;
    margin: 20px;
    border-radius: 40px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.is-open {
    display: flex;
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.logo-modal {
    margin-bottom: 30px;
}

.modal__title {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    text-align: center;
    color: #712BC9;
    margin-bottom: 30px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    font-family: 'Raleway', sans-serif;
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #712BC9;
    border-radius: 30px;
    font-size: 16px;
    transition: border-color 0.3s;
    color: #712BC9;
}

.form__input:focus {
    outline: none;
    border-color: #712BC9;
    text-align: center;
}

.form__input::placeholder {
    color: #712BC9;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
}

.form__submit {
    width: 100%;
    height: 50px;
    background-color: #712BC9;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 20px;
    border-radius: 50px;
}

.form__submit:hover {
    background-color: #712BC9;
}

.form__privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #712BC9;
    margin: 16px 0;
    cursor: pointer;
}

.success__modal .form__privacy {
    color: #fff;
}

.privacy-checkbox {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.privacy-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid #712BC9;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.success__modal .privacy-checkbox .checkmark {
    background-color: #712BC9;
    border: 2px solid #fff;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #fff;
    border-color: #712BC9;
}

.success__modal .privacy-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #712BC9;
    border-color: #fff;
}

.privacy-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: -8px;
    width: 8px;
    height: 18px;
    border: solid #712BC9;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.success__modal .privacy-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: -8px;
    width: 8px;
    height: 18px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}

.privacy-checkbox input[type="checkbox"]:hover + .checkmark {
    border-color: #712BC9;
}

.success__modal .privacy-checkbox input[type="checkbox"]:hover + .checkmark {
    border-color: #fff;
}

.privacy-text {
    line-height: 1.4;
    user-select: none;
}

.privacy-text a {
    color: #712BC9;
}

.success__modal .modal__container{
    background: #712BC9;
}

.success__text {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.success__privacy-text a {
    color: #fff;
}

.success__btn {
    font-family: 'Raleway', sans-serif;
    border-radius: 50px;
    width: 380px;
    height: 50px;
    background-color: #fff;
    color: #712BC9;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 20px;
    margin-bottom: 5px;
}
/* End */
/* /local/templates/sbformat/css/content-blocks.css?17859388646737 */
/* /local/templates/sbformat/styles.css?17799490365697 */
