

/* Start:/local/templates/silamarket/css/index.css?175093665240604*/
/* Умный фильтр - основные стили */
.smart-filter {
    background: #fff;
    border-radius: 15px;
}

.smart-filter-container {
    width: 100%;
}


.filter-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Контент фильтра */
.filter-content {
    padding: 25px 10px;
    flex-flow: row wrap;
    display: flex;
    gap: 20px;
}

.popup-window {
    min-width: 215px;
}

/* Блоки фильтра */
.filter-block {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    width: 370px;
    height: 42px;
}

.filter-block-title {
    width: 250px;
    display: flex;
    align-items: center;
}

.filter-title-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark, #00092C);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.filter-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--secondary, #D61A19);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    margin-left: 5px;
    cursor: help;
}

.filter-block-content {
    width: 100%;
}

/* Общие стили для инпутов */
.filter-input {
    width: 100%;
    height: 42px;
    border: 1px solid #E2E3E4;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark, #00092C);
    transition: all 0.3s ease;
    font-family: "Raleway", Arial, sans-serif;
}

.filter-input:focus {
    outline: none;
    border-color: var(--secondary, #D61A19);
}

.input-container {
    position: relative;
}

/* Ценовые инпуты */
.price-inputs {
    display: flex;
    gap: 15px;
}

.price-input-group {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #606060;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Числовые инпуты */
.number-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.number-input-group {
    flex: 1;
}

.number-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #606060;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Слайдер */
.slider-container {
    position: relative;
    padding: 20px 10px;
}

.slider-track {
    position: relative;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    margin: 30px 0;
}

.slider-step {
    position: absolute;
    top: -25px;
    font-size: 11px;
    font-weight: 500;
    color: #606060;
    white-space: nowrap;
    transform: translateX(-50%);
}

.slider-step.step-1 { left: 0%; }
.slider-step.step-2 { left: 25%; }
.slider-step.step-3 { left: 50%; }
.slider-step.step-4 { left: 75%; }
.slider-step.step-5 { left: 100%; }

.slider-bar {
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 3px;
}

.slider-bar.unavailable {
    background: #E5E7EB;
}

.slider-bar.available-inactive {
    background: #CBD5E1;
}

.slider-bar.available-active {
    background: var(--secondary, #D61A19);
}

.slider-range {
    position: absolute;
    top: -3px;
    height: 12px;
}

.slider-handle {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid var(--secondary, #D61A19);
    border-radius: 50%;
    cursor: pointer;
    top: -3px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.slider-handle:hover {
    transform: scale(1.2);
}

.slider-handle.left {
    left: 0;
    margin-left: -9px;
}

.slider-handle.right {
    right: 0;
    margin-right: -9px;
}

/* Чекбоксы */
.checkboxes {
    display: grid;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark, #00092C);
    transition: color 0.3s ease;
    gap: 12px;
}

.checkbox-label:hover {
    color: var(--secondary, #D61A19);
}

.checkbox-label.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #E2E3E4;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--secondary, #D61A19);
    border-color: var(--secondary, #D61A19);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.checkbox-text {
    line-height: 1.4;
}

.element-count {
    color: #606060;
    font-weight: 400;
}

/* Радио кнопки */
.radio-buttons {
    display: grid;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark, #00092C);
    transition: color 0.3s ease;
    gap: 12px;
}

.radio-label:hover {
    color: var(--secondary, #D61A19);
}

.radio-label.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #E2E3E4;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--secondary, #D61A19);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--secondary, #D61A19);
    border-radius: 50%;
}

.radio-text {
    line-height: 1.4;
}

/* Чекбоксы с картинками */
.checkbox-pictures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
}

.picture-checkbox {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.picture-frame {
    display: block;
    width: 60px;
    height: 60px;
    border: 2px solid #E2E3E4;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.picture-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.picture-checkbox:hover .picture-frame {
    border-color: var(--secondary, #D61A19);
    transform: translateY(-2px);
}

.picture-checkbox.checked .picture-frame {
    border-color: var(--secondary, #D61A19);
    background: rgba(214, 26, 25, 0.1);
}

/* Чекбоксы с картинками и подписями */
.checkbox-pictures-labels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.picture-label-checkbox {
    display: block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.picture-label-checkbox .picture-frame {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
}

.picture-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark, #00092C);
    line-height: 1.3;
}

.picture-label-checkbox:hover .picture-label {
    color: var(--secondary, #D61A19);
}

.picture-label-checkbox.checked .picture-label {
    color: var(--secondary, #D61A19);
    font-weight: 600;
}

/* Выпадающий список */
.filter-dropdown {
    position: relative;
}

.dropdown-container {
    position: relative;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 42px;
    border: 1px solid #E2E3E4;
    border-radius: 8px;
    padding: 0 15px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-selected:hover {
    border-color: var(--secondary, #D61A19);
}

.dropdown-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark, #00092C);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-image {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.dropdown-arrow {
    color: #606060;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E2E3E4;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f1f3f4;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background-color: #f8f9fa;
}

.dropdown-option.selected {
    background-color: rgba(214, 26, 25, 0.1);
    color: var(--secondary, #D61A19);
}

.dropdown-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dropdown-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Стили для Bitrix PopupWindow */
.bx-core-popup-window {
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid #E2E3E4 !important;
    min-width: 200px !important;
}

.bx-core-popup-window .bx-core-popup-window-content {
    padding: 0 !important;
    background: #fff !important;
    min-width: 200px !important;
}

/* Переопределяем стили для popup версии dropdown */
.bx-core-popup-window .dropdown-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f1f3f4;
    background: #fff;
    white-space: nowrap;
    min-width: 180px;
}

.bx-core-popup-window .dropdown-option:last-child {
    border-bottom: none;
}

.bx-core-popup-window .dropdown-option:hover {
    background-color: #f8f9fa !important;
}

.bx-core-popup-window .dropdown-option.selected {
    background-color: rgba(214, 26, 25, 0.1) !important;
    color: var(--secondary, #D61A19);
}

.bx-core-popup-window .dropdown-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    font-family: "Raleway", Arial, sans-serif;
    white-space: nowrap;
    min-width: 150px;
}

/* Календарь */
.calendar-inputs {
    display: flex;
    gap: 15px;
}

.calendar-input-group {
    flex: 1;
}

.calendar-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23606060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Кнопки фильтра */
.filter-buttons {
    padding: 20px 0;
    background: #FFF;
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #E5E7EB;
}

.filter-btn {
    height: 42px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Raleway", Arial, sans-serif;
    padding: 0 20px;
}

.apply-btn {
    background: var(--secondary, #D61A19);
    color: #fff;
}

.apply-btn:hover {
    background: #B91518;
    transform: translateY(-1px);
}

.reset-btn {
    background: transparent;
    color: #606060;
    border: 1px solid #E2E3E4;
}

.reset-btn:hover {
    background: #f1f3f4;
    color: var(--dark, #00092C);
}

/* Результат фильтра */
.filter-result {
    margin-left: auto;
    font-size: 13px;
    color: #606060;
    font-weight: 500;
}

#modef_num {
    font-weight: 700;
    color: var(--secondary, #D61A19);
}

.filter-show-link {
    color: var(--secondary, #D61A19);
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.filter-show-link:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .price-inputs,
    .number-inputs,
    .calendar-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-pictures {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 8px;
    }
    
    .checkbox-pictures-labels {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-result {
        margin-left: 0;
        text-align: center;
        margin-top: 10px;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* Скрытие стандартных элементов Bootstrap */
.bx-filter,
.bx-filter-horizontal,
.bx-filter-section,
.bx-filter-title,
.bx-filter-parameters-box,
.bx-filter-parameters-box-title,
.bx-filter-block,
.bx-filter-parameters-box-container {
    display: none !important;
}

/* Переопределение стилей для совместимости с существующим JS */
.smartfilter {
    width: 100%;
}

/* Герой-секция */
.inner-hero {
    background: linear-gradient(135deg, #203E5C 0%, #00092C 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.inner-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.inner-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.inner-hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}


.content-block {
    background: white;
    border-radius: 15px;
    padding: 50px;
    margin: 30px 0;
}

/* Секция возможностей */
.capabilities-section {
    padding: 60px 20px;
    background: white;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background: #F8F9FA;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.capability-icon img {
    height: 60px;
    margin-bottom: 20px;
}

.capability-title {
    font-size: 22px;
    font-weight: 600;
    color: #203E5C;
    margin-bottom: 15px;
}

.capability-text {
    font-size: 16px;
    line-height: 1.6;
    color: #606060;
}

/* Этапы работы */
.work-steps-section {
    padding: 60px 20px;
    background: #F8F9FA;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    position: relative;
    padding-top: 80px;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #D61A19;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    border: 5px solid #F8F9FA;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #203E5C;
    margin-bottom: 15px;
}

.step-text {
    font-size: 15px;
    line-height: 1.6;
    color: #606060;
}

/* Новости и статьи */
.news-section {
    padding: 60px 20px;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-date {
    display: block;
    background: #203E5C;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
}

.news-content {
    padding: 20px;
    background: white;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #203E5C;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #606060;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #D61A19;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

/* Преимущества */
.advantages-section {
    padding: 60px 20px;
    background: #203E5C;
    color: white;
}

.advantages-section .section-title {
    color: white;
}

.advantages-section .section-title:after {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.advantage-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.advantage-icon img {
    height: 50px;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Адаптивность */
@media (max-width: 992px) {
    .capabilities-grid,
    .advantages-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .capabilities-grid,
    .advantages-grid,
    .news-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .inner-hero h1 {
        font-size: 36px;
    }
}

.get-consult {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    padding: 0;
    height: 400px;
    cursor: pointer;
}



.popup-overlay.popup-consult {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.popup-consult .quiz-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.popup-consult .quiz-header {
    background: #203E5C;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.popup-consult .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.popup-consult .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-consult .quiz-content {
    padding: 40px;
}

.popup-consult .step {
    display: none;
    animation: fadeInStep 0.4s ease-out;
}

.popup-consult .step.active {
    display: block;
}

.popup-consult .step-title {
    font-size: 28px;
    font-weight: 600;
    color: #00092C;
    margin-bottom: 20px;
    text-align: center;
}

.popup-consult .step-description {
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
}

.popup-consult .options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.popup-consult .option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-consult .option:hover {
    border-color: #203E5C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 62, 92, 0.2);
}

.popup-consult .option.selected {
    border-color: #203E5C;
    background: #203E5C;
    color: white;
}

.popup-consult .option-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    text-align: center;
}

.popup-consult .option-desc {
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
    line-height: 1.4;
}

.popup-consult .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.popup-consult .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.popup-consult .btn-primary {
    background: #203E5C;
    color: white;
}

.popup-consult .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 62, 92, 0.4);
    background: #1a3449;
}

.popup-consult .btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.popup-consult .btn-secondary:hover {
    background: #e9ecef;
}

.popup-consult .progress-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.popup-consult .progress-fill {
    height: 100%;
    background: #203E5C;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.popup-consult .results {
    text-align: center;
}

.popup-consult .result-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid #203E5C;
}

.popup-consult .result-title {
    font-weight: 600;
    color: #00092C;
    margin-bottom: 10px;
}

.popup-consult .result-specs {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.popup-consult .result-price {
    color: #203E5C;
    font-weight: 600;
    font-size: 18px;
}

.popup-consult .contact-form {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.popup-consult .form-group {
    margin-bottom: 20px;
}

.popup-consult .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.popup-consult .form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.popup-consult .form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.popup-consult .step-counter {
    position: absolute;
    top: 15px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
}


.about-text {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #303030;
    margin-bottom: 25px;
}

.team-section .about-text {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #EDEDED;
    border-radius: 10px;
    padding: 30px;
}

.feature-icon {
    font-size: 40px;
    color: #D61A19;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #606060;
}


.categories-list {
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #F8F9FA;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.category-item:hover, .category-item.active {
    background: #203E5C;
    color: white;
}

.category-item:hover .category-name, .category-item.active .category-name {
    color: white;
}

.category-icon img {
    transition: unset !important;
}

.category-item:hover .category-icon, .category-item.active .category-icon {
    border-color: #f2f2f2;
}

.category-item:hover .category-icon img, .category-item.active .category-icon img {
    filter: invert();
}

.category-name {
    font-weight: 600;
    color: #303030;
    transition: color 0.3s ease;
    font-size: 13px;
}


.category-icon {
    margin-right: 15px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #606060;
}

.category-icon img {
    width: 36px;
    height: 36px;
}

.newsletter-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 20px;
    padding: 60px;
    margin: 30px 0;
    overflow: hidden;
    color: white;
}

/* Декоративные элементы */
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(214, 26, 25, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.newsletter-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.newsletter-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.newsletter-btn {
    padding: 16px 30px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #b91616;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 26, 25, 0.4);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary);
}

.benefit-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.newsletter-note {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 30px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-subtitle {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
        padding: 15px;
    }

    .newsletter-input,
    .newsletter-btn {
        border-radius: 15px;
    }

    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 30px 20px;
    }

    .newsletter-title {
        font-size: 24px;
    }
}

/* Анимация успешной подписки */
.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    animation: slideIn 0.5s ease-out;
}

.success-message.show {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   БЛОК СТАТИСТИКИ
================================= */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(214, 26, 25, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

.stats-section .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.stats-section .section-title:after {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), rgba(214, 26, 25, 0.5));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.4;
}

/* Анимация счетчика */
.stat-number[data-count] {
    opacity: 0;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .content-block {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        height: 100px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        height: 80px;
    }
}

.results {
    margin-bottom: 30px;
 }
 
 .results-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
 }
 
 .results-column {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
 }
 
 .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
 }
 
 .result-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }
 
 .result-image {
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
 }
 
 .result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 
 .result-image.no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 48px;
    opacity: 0.8;
 }
 
 .result-content {
    padding: 15px;
 }
 
 .result-title {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
 }
 
 .result-specs {
    margin-bottom: 12px;
 }
 
 .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    border-bottom: 1px dotted #e0e0e0;
 }
 
 .spec-item:last-child {
    border-bottom: none;
 }
 
 .spec-label {
    color: #7f8c8d;
    font-weight: 500;
 }
 
 .spec-value {
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
 }
 
 .result-price {
    font-weight: 600;
    color: #667eea;
    font-size: 16px;
    margin-bottom: 10px;
 }
 
 .result-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
 }
 
 .result-link:hover {
    color: #764ba2;
    text-decoration: underline;
 }
 
 .contact-form {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 20px;
 }
 
 .contact-form h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 18px;
 }
 
 .contact-form-description {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
 }
 
 @media (max-width: 768px) {
    .results-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
 
    .results-grid {
        grid-template-columns: 1fr;
    }
 
    .result-image {
        height: 150px;
    }
 
    .contact-form {
        position: static;
    }
 }
/* End */


/* Start:/local/templates/silamarket/components/bitrix/news.list/clients/style.css?17509290131613*/
.trusted-clients {
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.trusted-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1e293b;
    position: relative;
}
.trusted-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.client-slide {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 10px;
    cursor: grab;
}
.client-item {
    border-radius: 8px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}
.client-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.client-item:hover .client-logo {
    filter: grayscale(0);
    opacity: 1;
}
.trusted-clients .splide__arrow, .trusted-clients .splide__pagination {
    display: none !important;
}
@media (max-width: 1200px) {
    .client-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .client-slide {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-item {
        height: 80px;
        padding: 10px;
    }
    .trusted-title {
        font-size: 1.7rem;
    }
}
/* End */
/* /local/templates/silamarket/css/index.css?175093665240604 */
/* /local/templates/silamarket/components/bitrix/news.list/clients/style.css?17509290131613 */
