/* Hero секция */
.research-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(91, 58, 243, 0.05) 0%, rgba(62, 84, 241, 0.1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

/* Декоративный паттерн */
.research-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235b3af3' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.research-hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary::after {
    content: none;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: var(--transition);
}

.hero-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(91, 58, 243, 0.1);
}

/* Декоративные элементы */
.hero-image::before,
.hero-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
}

.hero-image::before {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
}

.hero-image::after {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Медиа запросы */
@media (max-width: 1024px) {
    .research-hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .research-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .research-hero {
        padding: 100px 0 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Доступность */
@media (prefers-reduced-motion: reduce) {
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .hero-image {
        animation: none !important;
    }
}

/* Переключатель исследований */
.research-types {
    padding: 80px 0;
    background-color: var(--white);
}

.research-switcher {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: sticky;
    top: 90px; /* Высота хедера */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 100;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.switcher-btn {
    background: none;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.switcher-btn i {
    font-size: 1.2rem;
}

.switcher-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.switcher-btn:hover:not(.active) {
    background: rgba(91, 58, 243, 0.1);
    transform: translateY(-2px);
}

.switcher-btn:focus {
    outline: 3px solid rgba(91, 58, 243, 0.3);
    outline-offset: 2px;
}

/* Контент исследований */
.research-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.research-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.research-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 58, 243, 0.2);
}

.research-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.research-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.research-card p {
    color: #666;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .research-hero h1 {
        font-size: 2.5rem;
    }
    
    .research-switcher {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 50px;
    }
    
    .switcher-btn {
        width: 100%;
        justify-content: center;
    }
    
    .research-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Доступность */
@media (prefers-reduced-motion: reduce) {
    .research-content,
    .research-card,
    .switcher-btn {
        transition: none;
    }
}

/* Высококонтрастный режим */
@media (forced-colors: active) {
    .switcher-btn.active {
        border: 2px solid ButtonText;
    }
    
    .research-card {
        border: 1px solid ButtonText;
    }
}

.price-features {
    list-style: none;
    padding: 0 2rem 2rem 2rem;
    margin-top: 3rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.bento-item {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 58, 243, 0.2);
}

/* Размеры блоков */
.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Стилизация контента */
.bento-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.bento-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.bento-item h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.bento-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Списки */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Двухколоночная структура */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Декоративные элементы */
.bento-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(91, 58, 243, 0.1));
    border-radius: 0 24px 0 100%;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.research-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.research-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-item.large,
    .bento-item.medium,
    .bento-item.small,
    .bento-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-item {
        padding: 1.5rem;
    }
}

/* Доступность */
@media (prefers-reduced-motion: reduce) {
    .bento-item,
    .research-content {
        transition: none;
        animation: none;
    }
}

/* Высококонтрастный режим */
@media (forced-colors: active) {
    .bento-item {
        border: 1px solid CanvasText;
    }

    .feature-list li::before {
        background: CanvasText;
    }
}

/* Интерактивные состояния */
.bento-item:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Улучшенная читаемость */
@media (prefers-color-scheme: dark) {
    .bento-item {
        background: rgba(255, 255, 255, 0.05);
    }

    /*.bento-item p,
    .feature-list li {
        color: rgba(255, 255, 255, 0.8);
    }*/
}

/* Секция "Почему это важно" */
.importance-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.importance-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.importance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 58, 243, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.importance-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.main-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.card-details h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.card-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.card-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.card-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.card-stats {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .importance-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .importance-section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .importance-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Стили для кнопок в bento-item */
.bento-item .btn {
    margin-top: auto; /* Прижимает кнопку к низу */
    width: fit-content;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bento-item .btn i {
    font-size: 1rem;
    margin: 0;
}

.bento-item .btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Адаптивность для кнопок */
@media (max-width: 768px) {
    .bento-item .btn {
        margin-top: 2rem;
        width: 90%;
        justify-content: center;
    }
}

/* Доступность */
.bento-item .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(91, 58, 243, 0.3);
}

/* Анимация при аведении */
.bento-item .btn:hover i {
    transform: translateX(3px);
}

/* Состояние при нажатии */
.bento-item .btn:active {
    transform: translateY(0);
}

/* Секция механики исследования */
.mechanics-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 58, 243, 0.2);
}

.process-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.card-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.card-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.time-estimate {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-cards {
        grid-template-columns: 1fr;
    }

    .mechanics-section {
        padding: 4rem 0;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }

/* Доступность */
@media (prefers-reduced-motion: reduce) {
    .process-card {
        animation: none;
        opacity: 1;
    }
}

/* Секция кейсов */
.cases-section {
    padding: 6rem 0;
    background: var(--white);
}

/* Слайдер */
.cases-slider {
    margin-top: 4rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

/* Навигация слайдера */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

/* Пагинация */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Карточка кейса */
.case-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(91, 58, 243, 0.2);
}

/* Изображение кейса */
.case-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
}

.case-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(91, 58, 243, 0.9);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Контент кейса */
.case-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Статистика */

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.case-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Результаты */
.case-results {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.case-results li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.case-results li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Адаптивность */
@media (max-width: 768px) {
    .cases-section {
        padding: 4rem 0;
    }

    .case-content {
        padding: 1.5rem;
    }

    .case-content h3 {
        font-size: 1.25rem;
    }

    .case-stats {
        gap: 1rem;
    }
    
    .card-stats .stat {
        align-items: center;
    }

    .stat-number {
        font-size: 1.25rem;
    }
}

/* Обновленные стили для карточек */
.case-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.case-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.case-title {
    flex: 1;
}

.case-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(91, 58, 243, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.case-title h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

/* Обновленные стили для статистики */
.case-stats {
    display: flex;
    gap: 3.5rem;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 3.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
}

/* Остальные стили остаются без изменений */
.case-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Секции внутри карточки */
.case-section {
    padding: 1.5rem;
    background: rgba(91, 58, 243, 0.03);
    border-radius: 12px;
}

.case-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.case-section p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Обновляем настройки слайдера */
.cases-slider {
    margin-top: 4rem;
    padding: 1rem;
}

/* Показываем только 2 слайда */
@media (min-width: 1200px) {
    .swiper-slide {
        width: calc(50% - 15px) !important;
    }
}

@media (max-width: 768px) {
    .cases-section {
        padding: 4rem 0;
    }

    .case-content {
        padding: 1.5rem;
    }

    .case-content h3 {
        font-size: 1.25rem;
    }
    
    .case-header .case-stats {
        flex-direction: column;
    }

    .case-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }
}

/* CTA секция */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(91, 58, 243, 0.05) 0%, rgba(62, 84, 241, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(91, 58, 243, 0.12);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-color);
}

.cta-benefits i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.cta-action {
    text-align: center;
    flex-shrink: 0;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

/* Декоративные элементы */
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 15%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Адаптивность */
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-benefits {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-shapes {
        display: none;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .btn-lg {
        width: 90%;
    }
}