

/* Start:/local/templates/aspro-digital/components/bitrix/news.list/problems-list-design-new/style.css?17866173235155*/
/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Блок */
.modern-problem {
    padding: 70px 0;
    background: #fafafa;
}

/* Заголовок */
.modern-problem__title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
    margin-bottom: 50px;
    position: relative;
}
.modern-problem__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: #feed01;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* Сетка */
.modern-problem__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Карточка */
.modern-problem__card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2px; /* для градиентной рамки */
    background: linear-gradient(135deg, #feed01, #fffde1);
}

.modern-problem__card-inner {
    background: #fff;
    border-radius: 22px;
    padding: 28px 24px 30px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-problem__card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(254, 237, 1, 0.25);
}

/* Номер карточки */
.modern-problem__card-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
    user-select: none;
    pointer-events: none;
}

/* Содержимое */
.modern-problem__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Блоки проблемы и решения */
.modern-problem__problem,
.modern-problem__solution {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modern-problem__problem {
    padding-bottom: 12px;
}

.modern-problem__solution {
    padding-top: 12px;
}

/* Иконки */
.modern-problem__icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 4px;
}

/* Метка (Задача / Решение) */
.modern-problem__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

/* Текст */
.modern-problem__text {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
}

.modern-problem__solution .modern-problem__text {
    font-weight: 400;
    color: #1a1a1a;
}

/* Разделитель с точками */
.modern-problem__divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 10px 0;
    padding: 0 4px;
}

.modern-problem__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #feed01;
    border-radius: 50%;
    opacity: 0.6;
}
.modern-problem__dot:nth-child(2) {
    opacity: 0.4;
}
.modern-problem__dot:nth-child(3) {
    opacity: 0.2;
}

/* Декоративные фоновые элементы */
.modern-problem__deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(254, 237, 1, 0.08);
    pointer-events: none;
    z-index: 0;
}
.modern-problem__deco--1 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -40px;
}
.modern-problem__deco--2 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    background: rgba(254, 237, 1, 0.05);
}

/* Акцентная полоса (цветная) — можно добавить через псевдоэлемент,
   но у нас уже градиентная рамка, поэтому оставим как есть */

/* Описание под карточками */
.modern-problem__description {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    color: #000;
    margin-top: 50px;
    padding: 30px 35px;
    background: #fffde1;
    border-radius: 20px;
    border-left: 8px solid #feed01;
    line-height: 1.7;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* Адаптив */
@media (max-width: 968px) {
    .modern-problem__grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .modern-problem__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modern-problem__title {
        font-size: 32px;
    }

    .modern-problem__card-inner {
        padding: 22px 18px 24px;
    }

    .modern-problem__text {
        font-size: 17px;
    }

    .modern-problem__card-number {
        font-size: 36px;
        top: 6px;
        right: 14px;
    }

    .modern-problem__description {
        font-size: 17px;
        padding: 20px 18px;
        margin-top: 35px;
    }
}

@media (max-width: 480px) {
    .modern-problem {
        padding: 40px 0;
    }
    .modern-problem__title {
        font-size: 26px;
    }
    .modern-problem__text {
        font-size: 16px;
    }
    .modern-problem__icon {
        font-size: 28px;
    }
}
/* End */


/* Start:/local/templates/aspro-digital/components/bitrix/news.list/how-list-design-new/style.css?17866159772752*/
/* Общие стили блока */
.support-steps {
    padding: 60px 0;
    background: #f8faff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Заголовки */
.support-steps__header {
    text-align: center;
    margin-bottom: 50px;
}

.support-steps__title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 10px;
}

.support-steps__subtitle {
    font-size: 18px;
    color: #5a6b8c;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сетка карточек */
.support-steps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Карточка */
.support-steps__item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.support-steps__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

/* Цветная полоса сверху при наведении */
.support-steps__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-steps__item:hover::before {
    opacity: 1;
}

/* Номер шага */
.support-steps__item-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    flex-shrink: 0;
}

/* Заголовок карточки */
.support-steps__item-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a2b4c;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Текст карточки */
.support-steps__item-text {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6b8c;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 968px) {
    .support-steps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .support-steps__title {
        font-size: 30px;
    }
}

@media (max-width: 568px) {
    .support-steps {
        padding: 40px 0;
    }
    .support-steps__title {
        font-size: 24px;
    }
    .support-steps__subtitle {
        font-size: 16px;
    }
    .support-steps__item {
        padding: 20px;
    }
    .support-steps__item-title {
        font-size: 20px;
    }
}
/* End */


/* Start:/local/templates/aspro-digital/components/bitrix/news.list/reason-list-design/style.css?17660524521102*/
.reason-sp-b-item {
    -webkit-box-shadow: 0px 4px 13px 5px rgba(166, 166, 166, 0.2);
    -moz-box-shadow: 0px 4px 13px 5px rgba(166, 166, 166, 0.2);
    box-shadow: 0px 4px 13px 5px rgba(166, 166, 166, 0.2);
    border-radius: 20px;
    position: relative;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.reason-name {
    padding: 15px 25px;
    color: #000;
    margin-bottom: 0;
    line-height: 22px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.reason-list {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.reason-name span {
    font-weight: 400;
}

@media (max-width: 1300px) {
    .reason-list {
        display: grid;
        grid-template-columns: 48% 48%;
    }
    .reason-sp-b-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reason-list {
        grid-template-columns: 100%;
    }
    .reason-sp-b-item {
        height: auto;
    }
    .reason-name {
        padding: 30px 25px;
    }
}
/* End */


/* Start:/local/templates/aspro-digital/components/bitrix/news.list/branding-list-new/style.css?17870550451651*/
.branding-list {
    display: grid;
    grid-template-columns: repeat(3, 31%);
    justify-content: space-between;
    gap: 30px;
}
.branding-item {
    border: 2px solid #000;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
span.point-pos-o.point-pos {
    font-size: 50px;
    left: -17px;
    top: -1px;
}
.branding-include-list {
    padding: 0 20px 20px;
}
.branding-points-list {
    padding: 0 20px;
}
.branding-title {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}
.branding-info {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 25px;
}
.price-brand {
    background-color: #feed01;
    width: fit-content;
    padding: 5px 20px;
    border-radius: 20px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin: 25px 0;
}
.plash-text {
    padding: 5px 20px;
    border: 2px solid #feed01;
    border-radius: 35px;
    color: #000;
    font-weight: 500;
}
.branding-points-item, .branding-include-item {
    position: relative;
}

span.point-pos-o {
    position: absolute;
    left: -15px;
    top: -9px;
    font-size: 25px;
}
.button-design {
    display: flex !important;
    align-items: center;
}
.bottom-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
}
@media (max-width: 1300px) {
    .branding-list {
        grid-template-columns: 48% 48%;
    }
}
@media (max-width: 768px) {
    .branding-list {
        grid-template-columns: 100%;
    }
}
/* End */


/* Start:/local/templates/aspro-digital/components/bitrix/news.list/media-list-new/style.css?17866039691358*/
.photo-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: all .8s cubic-bezier(.19, 1, .22, 1);
}
.gallery-item {
    height: 185px;
    display: block;
}
.gallery-item-photo {
    overflow: hidden;
}
.gallery-list {
    display: grid;
    grid-template-columns: repeat(4, 24%);
    justify-content: space-between;
    gap: 25px 25px;
}
.gallery-item-video {
    grid-column: span 4;
    height: auto;
    cursor: pointer;
}

.gallery-item-video video {
    width: 100%;
}

.gallery-item:hover .photo-item {
    transform: scale(1.5);
    opacity: .7;
}
@media (min-width: 900px) {
    .gallery-list-mobile {
        display: none !important;
    }
}

.swiper-pagination-bullet-active {
    background: #feed01 !important;
}

@media (max-width: 900px) {
    .gallery-list-mobile {
        width: 100%;
    }

    .gallery-list-mobile .swiper-slide {
        width: 100%;
    }

    .gallery-list-mobile .photo-item,
    .gallery-list-mobile video {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 10px;
    }
    .gallery-list-mobile {
        display: block;
    }
    .gallery-list-desktop {
        display: none;
    }

}
/* End */
/* /local/templates/aspro-digital/components/bitrix/news.list/problems-list-design-new/style.css?17866173235155 */
/* /local/templates/aspro-digital/components/bitrix/news.list/how-list-design-new/style.css?17866159772752 */
/* /local/templates/aspro-digital/components/bitrix/news.list/reason-list-design/style.css?17660524521102 */
/* /local/templates/aspro-digital/components/bitrix/news.list/branding-list-new/style.css?17870550451651 */
/* /local/templates/aspro-digital/components/bitrix/news.list/media-list-new/style.css?17866039691358 */
