

/* Start:/local/templates/lvov-studio/components/bitrix/news.list/hero_main/style.css?17668490776416*/
/* Стили компонента hero_main */

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eefc 100%);
    padding: 80px 0 100px 0;
    overflow: hidden;
    position: relative;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-content {
    max-width: 550px;
    z-index: 5;
    flex-shrink: 0;
    position: relative;
}

/* Бейдж */
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #bfa15f;
    border: 1px solid rgba(191, 161, 95, 0.2);
}

.partner-badge i {
    color: #ffc107;
    font-size: 14px;
}

/* Заголовки */
.hero-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-main); /* Используем глобальную переменную */
    margin: 0 0 25px 0;
    letter-spacing: -1.5px;
}

.highlight-text {
    color: var(--brand-red);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 40px 0;
    max-width: 540px;
}

/* Кнопки (Если они используются ТОЛЬКО в баннере, оставляем тут. 
   Если везде - лучше вынести в глобальный UI Kit) */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 38px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--brand-red);
    color: #fff;
    box-shadow: 0 10px 25px rgba(221, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #b30000;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid rgba(0,0,0,0.1);
}

.btn-outline:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    background-color: #fff;
}

/* Фичи (галочки) */
.hero-features {
    display: flex;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
}

.feature-item i {
    color: var(--brand-red);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Визуал и Параллакс */
.hero-visual {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
    min-height: 400px;
}

.showcase-group {
    position: relative;
    width: 100%;
    max-width: 850px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.layer {
    position: absolute;
    transition: transform 0.1s linear;
    will-change: transform;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Картинки ПК */
.case-desktop-back {
    width: 90%; /* Основная картинка занимает 90% контейнера */
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1; /* Задний план */
    display: block;
    margin-right: auto; /* Прижимаем влево внутри группы */
}
.case-desktop-front {
    position: absolute;
    bottom: -30px;
    right: -20px;
    left: auto;
    width: 35%;
    max-width: 250px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 2;
    /* transform: rotate(-5deg);  <-- УДАЛИЛ ЭТУ СТРОКУ */
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(221,0,0,0.05) 50%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Логика отображения */
.desktop-view { display: block; width: 100%; height: 100%; position: relative; }
.mobile-view { display: none; }
.only-mobile { display: none; }
.only-desktop { display: block; }

/* Адаптив */
@media (max-width: 1024px) {
    .hero-wrapper { flex-direction: column-reverse; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-features { justify-content: center; }
    .hero-visual { width: 100%; justify-content: center; margin-bottom: 40px; min-height: auto; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    
    .desktop-view { display: none !important; }
    .mobile-view { display: block !important; width: 100%; display: flex; justify-content: center; }
    
    .only-desktop { display: none !important; }
    .only-mobile { display: block !important; }
    
    .case-mobile-square {
        display: block;
        width: 100%;
        max-width: 350px;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
}
/* --- АНИМАЦИЯ ПАРЕНИЯ (Floating) --- */
@keyframes floatUpDn {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } /* Поднимаем вверх */
    100% { transform: translateY(0px); }
}

/* Применяем анимацию к картинкам */
/* Важно: JS двигает блок .layer, а CSS двигает картинку внутри него. 
   Так они не конфликтуют и работают одновременно. */

.case-desktop-back {
    animation: floatUpDn 6s ease-in-out infinite;
}

.case-desktop-front {
    animation: floatUpDn 5s ease-in-out infinite;
    animation-delay: 1s; /* Задержка, чтобы летали не синхронно */
}
/* End */


/* Start:/local/templates/lvov-studio/components/bitrix/news.list/benefits_tabs/style.css?17668490774984*/
/* --- СТИЛИ КОМПОНЕНТА BENEFITS --- */
.benefits-section { padding: 80px 0; background-color: #f8f9fa; }
.benefits-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.benefits-header { text-align: left; margin-bottom: 40px; }
.benefits-title { font-size: 42px; font-weight: 800; color: var(--text-main); margin: 0 0 15px 0; }
.benefits-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.6; max-width: 700px; margin: 0; }

/* Tabs Nav */
.benefits-tabs-nav { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; background: white; padding: 8px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); max-width: 400px; margin-left: auto; margin-right: auto; }
.benefits-tab-btn { padding: 12px 24px; border: none; background: transparent; border-radius: 12px; font-size: 15px; font-weight: 600; color: #666; cursor: pointer; transition: all 0.3s ease; flex: 1; text-align: center; }
.benefits-tab-btn.active { background: var(--brand-red); color: white; box-shadow: 0 4px 12px rgba(221, 0, 0, 0.3); }
.benefits-tab-btn:hover:not(.active) { background: #f5f5f5; color: #333; }

/* Tab Content */
.benefits-tab-content { display: none; animation: fadeInUp 0.6s ease-out; }
.benefits-tab-content.active { display: block; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Grid */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 30px; }

/* Card */
.benefit-card { background: white; padding: 30px 25px; border-radius: 16px; transition: all 0.3s ease; border: 2px solid transparent; position: relative; overflow: hidden; cursor: pointer; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: var(--brand-red); }

.benefit-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.benefit-icon {
    width: 60px;           /* Увеличили размер контейнера */
    height: 60px;
    background-color: transparent; /* Убрали серый фон */
    border-radius: 0;      /* Убрали скругление (не нужно без фона) */
    flex-shrink: 0;
    
    /* Настройка самой картинки */
    background-size: contain; /* Картинка вписывается полностью */
    background-repeat: no-repeat;
    background-position: center;
    
    /* Если иконки черные, а нужны цветные - используй PNG с прозрачностью */
}.benefit-title { font-size: 18px; font-weight: 700; color: var(--text-main); margin: 0; line-height: 1.3; }
.benefit-description { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0 0 15px 0; }
.benefit-result { font-size: 13px; color: var(--text-main); font-weight: 600; margin-bottom: 12px; }
/* Эффект при наведении (немного увеличим) */
.benefit-card:hover .benefit-icon {
    transform: scale(1.1); 
    transition: transform 0.3s ease;
}
/* Chips */
.benefit-metrics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.metric-chip { font-size: 11px; padding: 4px 8px; border-radius: 12px; font-weight: 600; white-space: nowrap; }
.metric-chip.positive { background: #d4edda; color: #155724; }
.metric-chip.negative { background: #f8d7da; color: #721c24; }
.metric-chip.info { background: #d1ecf1; color: #0c5460; }
.metric-chip.feature { background: #e2e3e5; color: #383d41; }

/* Options Legend */
.benefits-options { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; padding: 15px; background: white; border-radius: 12px; border: 1px solid #e9ecef; }
.option-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #666; }
.option-dot { width: 8px; height: 8px; border-radius: 50%; }
.option-dot.included { background: #28a745; }
.option-dot.optional { background: #ffc107; }

/* Platform Banner */
.benefits-platform { background: #2c3e50; color: white; padding: 30px; border-radius: 20px; text-align: center; position: relative; overflow: hidden; }
.benefits-platform-title { font-size: 24px; font-weight: 700; margin: 0 0 8px 0; display: flex; align-items: center; justify-content: center; gap: 12px; color: white; }
.platform-logo { width: 32px; height: 32px; background: var(--brand-red); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.benefits-platform-subtitle { opacity: 0.9; margin: 0 0 8px 0; }
.benefits-platform-trust { font-size: 14px; opacity: 0.8; font-style: italic; }

@media (max-width: 992px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { 
    .benefits-grid { grid-template-columns: 1fr; } 
    .benefits-title { font-size: 32px; text-align: center; }
    .benefits-subtitle { text-align: center; }
}
/* End */


/* Start:/local/templates/lvov-studio/components/bitrix/news.list/packages_list/style.css?17668490776385*/
/* --- СТИЛИ КОМПОНЕНТА PACKAGES --- */
.pricing-section { padding: 60px 0; background: linear-gradient(135deg, #f8f9ff 0%, #fff5fc 50%, #f8f9ff 100%); }
.pricing-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.pricing-header { text-align: left; margin-bottom: 50px; }
.pricing-title { font-size: 40px; font-weight: 700; color: var(--text-main); margin: 0 0 15px 0; }
.pricing-title span { color: var(--brand-red); }
.pricing-subtitle { font-size: 16px; color: var(--text-secondary); line-height: 1.6; max-width: 600px; margin: 0; }

/* Grid */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 35px; }

/* Card */
.package-card { background: white; border-radius: 20px; padding: 40px 30px; position: relative; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid transparent; }
.package-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Featured (Popular) Card */
.package-card.featured { border: 2px solid var(--brand-red); transform: scale(1.05); z-index: 2; }
.package-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.package-card.featured::before { content: 'Популярный'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand-red) 0%, #d10000 100%); color: white; padding: 8px 24px; border-radius: 20px; font-size: 14px; font-weight: 600; }

/* Card Content */
.package-header { margin-bottom: 30px; text-align: center; }
.package-name { font-size: 24px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.package-target { font-size: 14px; color: var(--brand-red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 15px; }
.package-description { color: var(--text-secondary); font-size: 16px; line-height: 1.5; }

.package-price { margin-bottom: 30px; text-align: center; }
.price-amount { font-size: 36px; font-weight: 700; color: var(--brand-red); }
.price-period { color: #666; font-size: 16px; margin-left: 8px; }
.price-note { color: #999; font-size: 14px; margin-top: 5px; }

/* Timeline */
.package-timeline { background: #f8f9fa; padding: 15px; border-radius: 12px; margin-bottom: 25px; border-left: 4px solid var(--brand-red); }
.timeline-item { font-size: 14px; color: #666; margin-bottom: 5px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item strong { color: var(--text-main); }

/* Details Toggle */
.package-details { margin-bottom: 30px; }
.details-toggle { background: none; border: none; color: var(--brand-red); font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 15px; font-size: 15px; width: 100%; }
.details-toggle:hover { opacity: 0.8; }
.details-toggle i { transition: transform 0.3s ease; }
.details-toggle.expanded i { transform: rotate(180deg); }

.details-content { display: none; animation: slideDown 0.3s ease; }
.details-content.show { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Features List */
.feature-section { margin-bottom: 20px; }
.feature-section-title { font-weight: 600; color: var(--text-main); margin-bottom: 12px; font-size: 16px; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 6px 0; font-size: 14px; color: #555; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.feature-list li::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #28a745; margin-top: 2px; flex-shrink: 0; }
.feature-list.optional li::before { content: '\f111'; font-size: 10px; color: #ffc107; margin-top: 5px; }

/* Chips */
.feature-chip { display: inline-block; background: #e8f5e8; color: #2d5a2d; padding: 2px 8px; border-radius: 12px; font-size: 11px; font-weight: 600; margin-left: 8px; }
.feature-chip.optional { background: #fff3cd; color: #856404; }
.feature-chip.metric { background: #e3f2fd; color: #1565c0; }
.feature-chip.negative { background: #f8d7da; color: #721c24; } /* Красный для минусов */

/* Buttons */
.package-btn { width: 100%; padding: 15px; background: var(--brand-red); color: white; border: none; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.package-btn:hover { background: #d92b16; transform: translateY(-2px); }
.package-btn.secondary { background: transparent; color: var(--brand-red); border: 2px solid var(--brand-red); }
.package-btn.secondary:hover { background: var(--brand-red); color: white; }

/* Calculator CTA */
.custom-calculator-cta { background: #2c3e50; border-radius: 20px; padding: 25px 30px; margin: 0; color: white; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; text-align: left; height: auto; width: 100%; box-sizing: border-box; }
.custom-calculator-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { transform: translateX(-100%) translateY(-100%); } 50% { transform: translateX(0%) translateY(0%); } }
.cta-content { position: relative; z-index: 2; text-align: left; flex: 1; }
.cta-title { font-size: 20px; font-weight: 700; margin: 0 0 8px 0; color: white !important; }
.cta-subtitle { font-size: 14px; opacity: 0.9; margin: 0; color: white !important; }
.cta-button { background: white; color: #2c3e50; border: none; padding: 12px 30px; border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); position: relative; z-index: 2; flex-shrink: 0; margin-left: 20px; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

/* Responsive */
@media (max-width: 1200px) {
    .packages-grid { grid-template-columns: 1fr; gap: 30px; }
    .package-card.featured { transform: none; }
    .custom-calculator-cta { flex-direction: column; gap: 20px; padding: 20px; text-align: center; }
    .cta-content { text-align: center; }
    .cta-button { margin-left: 0; }
}
/* End */


/* Start:/local/templates/lvov-studio/components/bitrix/news.list/segments_tabs/style.css?17668490774385*/
/* --- СТИЛИ КОМПОНЕНТА SEGMENTS --- */
.target-audience-section { padding: 80px 0; background: #fff; }
.target-audience-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.target-audience-header { text-align: left; margin-bottom: 40px; }
.target-audience-title { font-size: 42px; font-weight: 800; color: var(--text-main); margin: 0 0 15px 0; }
.target-audience-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.6; max-width: 700px; }

/* Tabs Nav */
.target-audience-tabs-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 1px; }
.target-audience-tab-btn { padding: 12px 24px; background: transparent; border: none; border-bottom: 3px solid transparent; font-size: 16px; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: all 0.3s ease; }
.target-audience-tab-btn:hover { color: var(--brand-red); }
.target-audience-tab-btn.active { color: var(--brand-red); border-bottom-color: var(--brand-red); }

/* Content Zone */
.target-audience-tab-content { display: none; }
.target-audience-tab-content.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.target-audience-zone { background: #fff; border: 1px solid #f0f0f0; border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.zone-title { font-size: 28px; font-weight: 700; margin: 0 0 30px 0; color: var(--text-main); }

/* 3 Columns */
.zone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }

.zone-block h4 { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 700; margin: 0 0 20px 0; color: var(--text-main); }
.zone-icon-wrap { width: 32px; height: 32px; background: #ffeeed; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-red); font-size: 14px; }

.zone-block ul { list-style: none; padding: 0; margin: 0; }
.zone-block ul li { position: relative; padding-left: 20px; margin-bottom: 12px; font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
/* Галочки для разных колонок */
.zone-block:nth-child(1) ul li::before { content: '!'; position: absolute; left: 0; color: #ffc107; font-weight: bold; } /* Боли */
.zone-block:nth-child(2) ul li::before { content: '✓'; position: absolute; left: 0; color: #28a745; font-weight: bold; } /* Решения */

/* Case Highlight Block */
.case-highlight { background: #f9f9f9; border-radius: 12px; padding: 20px; display: flex; gap: 15px; align-items: center; border: 1px solid #eee; }
.case-logo { width: 50px; height: 50px; object-fit: contain; border-radius: 8px; background: #fff; padding: 5px; }
.case-methodology { font-size: 11px; text-transform: uppercase; color: var(--brand-red); font-weight: 700; margin: 0 0 5px 0; }
.case-link { font-size: 16px; font-weight: 700; color: var(--text-main); text-decoration: none; display: block; margin-bottom: 5px; }
.case-link:hover { color: var(--brand-red); }
.case-benefit-text { font-size: 13px; color: #333; margin: 0; }
.case-benefit-text strong { color: var(--brand-red); }

/* Footer */
.cta-wrapper { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #eee; padding-top: 30px; }
.cta-buttons-group { display: flex; gap: 15px; }
.cta-btn { padding: 12px 30px; background: var(--brand-red); color: white; border-radius: 30px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.cta-btn:hover { background: #b30000; transform: translateY(-2px); }
.cta-btn-secondary { padding: 12px 30px; border: 1px solid #ddd; color: var(--text-main); border-radius: 30px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.cta-btn-secondary:hover { border-color: var(--brand-red); color: var(--brand-red); }

.guarantee { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 14px; max-width: 400px; text-align: right; }
.guarantee-icon { font-size: 20px; color: #aaa; }

@media (max-width: 992px) {
    .zone-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-wrapper { flex-direction: column; gap: 20px; align-items: flex-start; }
    .guarantee { text-align: left; }
}
/* End */


/* Start:/local/templates/lvov-studio/components/bitrix/news.list/cases_home/style.css?17668490774528*/
/* --- СТИЛИ КОМПОНЕНТА CASES HOME --- */

.cases-section {
    padding: 80px 0;
    overflow: hidden; 
    background-color: #f8f9fa;
}

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

/* HEADER */
.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.cases-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main, #1a1a1a);
    margin: 0 0 15px 0;
}

.cases-subtitle {
    font-size: 18px;
    color: var(--text-secondary, #555);
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
}

/* NAV BUTTONS */
.cases-slider-nav {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.slider-btn svg { width: 24px; height: 24px; }

.slider-btn:hover {
    background-color: var(--brand-red, #f1331c);
    border-color: var(--brand-red, #f1331c);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(221, 0, 0, 0.2);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #e0e0e0;
    color: #999;
}

/* SLIDER TRACK */
.cases-slider-wrapper {
    overflow: hidden;
    padding: 10px 0 30px 0; /* Отступ снизу для теней */
}

.cases-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

/* CARD ITEM */
.case-item {
    /* По умолчанию (мобильный) - одна колонка */
    flex: 0 0 100%;
    max-width: 100%;
    
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

/* IMAGE WRAPPER (Жесткие размеры 395x255) */
.case-item-image-wrapper {
    width: 100%;
    /* Если карточка растянется, картинка не будет больше 400px */
    max-width: 400px; 
    margin: 0 auto; /* Центрируем, если карточка шире */
    
    /* Пропорция 395/255 = ~1.55 */
    aspect-ratio: 395 / 255;
    position: relative;
    overflow: hidden;
    background: #eee; /* Фон пока грузится */
}

.case-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет блок, обрезая лишнее */
    transition: transform 0.4s ease;
}

.case-item:hover .case-item-image {
    transform: scale(1.05);
}

/* CONTENT */
.case-item-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-item-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-red, #f1331c);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.case-item-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
    color: var(--text-main, #1a1a1a);
}

.case-item-description {
    font-size: 15px;
    color: var(--text-secondary, #555);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* LINK ARROW */
.case-item-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    align-self: flex-start;
}

.case-item-link svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.case-item:hover .case-item-link svg {
    transform: translateX(5px);
    color: var(--brand-red, #f1331c);
}

/* --- ВАЖНО: СЕТКА (RESPONSIVE) --- */
/* Планшет (2 колонки) */
@media (min-width: 768px) {
    .case-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .case-item-image-wrapper {
        max-width: 100%; /* На планшете растягиваем на всю ширину колонки */
    }
}

/* ПК (3 колонки) - ВОТ ТУТ РАЗМЕР БУДЕТ ~395px */
@media (min-width: 1024px) {
    .case-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}
/* End */
/* /local/templates/lvov-studio/components/bitrix/news.list/hero_main/style.css?17668490776416 */
/* /local/templates/lvov-studio/components/bitrix/news.list/benefits_tabs/style.css?17668490774984 */
/* /local/templates/lvov-studio/components/bitrix/news.list/packages_list/style.css?17668490776385 */
/* /local/templates/lvov-studio/components/bitrix/news.list/segments_tabs/style.css?17668490774385 */
/* /local/templates/lvov-studio/components/bitrix/news.list/cases_home/style.css?17668490774528 */
