    /* Цветовая палитра на основе #0097dc */
    :root {
        --primary-color: #0097dc;
        /* Основной синий */
        --primary-light: #00b4ff;
        /* Светлый синий */
        --primary-dark: #007bb5;
        /* Темный синий */
        --secondary-color: #00dcb4;
        /* Бирюзовый (комплементарный) */
        --accent-color: #dc0097;
        /* Пурпурный акцент */
        --gradient-primary: linear-gradient(135deg, #0097dc 0%, #00b4ff 100%);
        --gradient-secondary: linear-gradient(135deg, #00dcb4 0%, #00ffd5 100%);
        --gradient-accent: linear-gradient(135deg, #0097dc 0%, #00dcb4 50%, #00b4ff 100%);
        --gradient-overlay: linear-gradient(135deg, rgba(0, 151, 220, 0.9) 0%, rgba(0, 180, 255, 0.85) 100%);
    }


    .custom-gradient-primary {
        background: var(--gradient-primary);
    }

    .custom-gradient-overlay {
        background: var(--gradient-overlay);
    }


    .home-intro {
        background: var(--gradient-primary) !important;
        position: relative;
        overflow: hidden;
    }

    .home-intro::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .home-intro::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .home-intro .container {
        position: relative;
        z-index: 2;
    }

    .home-intro p {
        color: rgba(255, 255, 255, 0.95);
    }

    .home-intro p span {
        color: white;
        font-weight: 600;
    }

    .home-intro .btn {
        background: #007bb5;
        color: var(--primary-color);
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .home-intro .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 151, 220, 0.4);
        color: white;
        background: var(--gradient-overlay);
        border: 2px solid white;
    }

    /* Разделители */
    .divider hr {
        background: var(--gradient-accent) !important;
        height: 3px;
    }

    /* Карточки с эффектом */
    .card-border-top {
        border-top: 4px solid var(--primary-color) !important;
        transition: all 0.4s ease;
        border-radius: 15px !important;
        overflow: hidden;
        background: white;
    }

    .card-border-top:hover {
        /* border-top-color: var(--primary-color) !important; */
        box-shadow: 0 20px 60px rgba(0, 151, 220, 0.25) !important;
        transform: translateY(-10px);
    }

    .card-body {
        position: relative;
        z-index: 1;
    }

    .read-more {
        color: var(--primary-color) !important;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .read-more:hover {
        color: var(--secondary-color) !important;
        transform: translateX(5px);
    }

    /* Счетчики */
    .counter strong {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 4rem !important;
    }

    /* Рекламные возможности */
    .advertising-section {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.03) 0%, rgba(0, 220, 180, 0.03) 100%);
        padding: 80px 0 !important;
        position: relative;
    }

    .advertising-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-accent);
    }

    .advertising-section .btn-primary {
        background: var(--gradient-primary);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
    }

    .advertising-section .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 151, 220, 0.4);
        background: var(--gradient-accent);
    }

    .owl-carousel .box-shadow-2 {
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .owl-carousel .box-shadow-2:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(0, 151, 220, 0.2) !important;
    }

    /* Партнеры */
    .partners-section {
        position: relative;
        padding-top: 60px;
    }

    .partners-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 151, 220, 0.3), transparent);
    }

    /* Кейсы */
    .cases-section {
        background: linear-gradient(to bottom, #f8f9fa 0%, rgba(0, 220, 180, 0.03) 100%) !important;
        padding: 100px 0 !important;
    }

    .custom-thumb-info-style-5 {
        transition: all 0.4s ease;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 151, 220, 0.1);
    }

    .custom-thumb-info-style-5:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 151, 220, 0.25);
    }

    .custom-thumb-info-style-5 .thumb-info-wrapper {
        position: relative;
        overflow: hidden;
    }

    .custom-thumb-info-style-5 .thumb-info-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-overlay);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .custom-thumb-info-style-5:hover .thumb-info-wrapper::after {
        opacity: 1;
    }

    /* Новости */
    .news-section {
        background: white;
        padding: 100px 0 !important;
    }

    /* Карточки новостей */
    .news-card {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
        transition: all 0.4s ease;
        height: 100%;
        background: white;
        display: flex;
        flex-direction: column;
    }

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 151, 220, 0.25);
    }

    .news-card-image {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .news-card:hover .news-card-image img {
        transform: scale(1.08);
    }

    .news-card-date {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--gradient-primary);
        color: white;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 151, 220, 0.4);
        z-index: 2;
    }

    .news-card-body {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-card-title {
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 15px;
        color: #333;
    }

    .news-card-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .news-card-title a:hover {
        color: var(--primary-color);
    }

    .news-card-lead {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .news-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }

    .btn-read-more {
        background: var(--gradient-primary);
        border: none;
        color: white;
        padding: 10px 25px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-read-more:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
        background: var(--gradient-accent);
        color: white;
    }

    /* FAQ секция */
    .faq-section {
        background: linear-gradient(to bottom, #ffffff 0%, rgba(0, 220, 180, 0.02) 100%);
        padding: 100px 0 !important;
        position: relative;
    }

    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 151, 220, 0.3), transparent);
    }

    .accordion .card {
        border: 2px solid transparent;
        transition: all 0.3s ease;
        margin-bottom: 15px;
        border-radius: 15px !important;
        overflow: hidden;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.08);
    }

    .accordion .card:hover {
        border-color: rgba(0, 151, 220, 0.2);
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.15);
        transform: translateY(-2px);
    }

    .accordion-toggle {
        position: relative;
        padding: 20px 25px;
        display: flex;
        align-items: center;
        text-decoration: none !important;
        transition: all 0.3s ease;
    }

    .accordion-toggle i.fa-question-circle,
    .accordion-toggle i.fa-clock,
    .accordion-toggle i.fa-film,
    .accordion-toggle i.fa-wifi,
    .accordion-toggle i.fa-chart-line,
    .accordion-toggle i.fa-headset {
        transition: all 0.3s ease;
    }

    .accordion-toggle:not(.collapsed) {
        color: var(--primary-color) !important;
    }

    .accordion-toggle:not(.collapsed) i {
        transform: scale(1.2);
    }

    .accordion .card-body {
        padding: 25px;
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.02) 0%, rgba(0, 220, 180, 0.02) 100%);
    }

    .accordion .card-body p {
        color: #666;
        line-height: 1.8;
    }

    /* Анимация для открытия аккордеона */
    .accordion .collapse {
        transition: all 0.3s ease-in-out;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .faq-section {
            padding: 60px 0 !important;
        }

        .accordion-toggle {
            padding: 15px 20px;
            font-size: 0.95rem;
        }

        .accordion .card-body {
            padding: 20px;
        }
    }

    @media (max-width: 576px) {
        .accordion-toggle {
            padding: 12px 15px;
            font-size: 0.9rem;
        }

        .accordion-toggle i {
            font-size: 0.9rem;
        }

        .accordion .card-body {
            padding: 15px;
        }
    }

    /* Кнопки */
    .btn-primary {
        background: var(--gradient-primary);
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 151, 220, 0.25);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 151, 220, 0.35);
        background: var(--gradient-accent);
    }

    /* Дополнительные акценты */
    .text-primary,
    .text-color-primary {
        color: var(--primary-color) !important;
    }

    .bg-primary {
        background: var(--gradient-primary) !important;
    }

    /* Hover эффекты с цветовыми акцентами */
    a:hover,
    .link-hover:hover {
        color: var(--primary-color);
    }

    /* SVG иконки */
    .svg-fill-color-primary {
        fill: var(--primary-color) !important;
    }

    .svg-fill-color-primary:hover {
        fill: var(--secondary-color) !important;
    }

    /* Дополнительные элементы воздушности */
    section {
        margin-bottom: 0 !important;
    }

    .text-center h2 {
        position: relative;
        display: inline-block;
    }

    /* Декоративные элементы */
    .custom-divider hr {
        background: var(--gradient-accent) !important;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .home-intro {
            padding: 40px 0 !important;
            margin-bottom: 50px !important;
        }

        .section-no-border,
        .news-section,
        .faq-section,
        .cases-section {
            padding: 60px 0 !important;
        }

        .counter strong {
            font-size: 3rem !important;
        }
    }

    /* Дополнительные стили для дат */
    .custom-thumb-info-date {
        background: var(--gradient-primary) !important;
        box-shadow: 0 4px 15px rgba(0, 151, 220, 0.4);
        position: absolute;
        top: 20px;
        left: 20px;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
        z-index: 2;
    }

    .custom-thumb-info-date span {
        display: block;
        font-size: 12px;
        font-weight: 600;
        margin-top: 2px;
        opacity: 0.9;
    }

    /* Анимация градиента при наведении */
    @keyframes gradient-shift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .btn-primary:hover,
    .btn-read-more:hover {
        background-size: 200% 200%;
        animation: gradient-shift 3s ease infinite;
    }

    /* О нас секция */
    .about-section {
        background: linear-gradient(to bottom, #ffffff 0%, rgba(0, 151, 220, 0.02) 100%);
    }

    .custom-shape-1 {
        position: absolute;
        top: -30px;
        left: -30px;
        z-index: 0;
    }

    .custom-shape-background {
        width: 250px;
        height: 250px;
        background: var(--gradient-accent);
        border-radius: 50%;
        opacity: 0.1;
    }

    .custom-video-play-button {
        position: absolute;
        bottom: 30px;
        right: 30px;
        z-index: 2;
    }

    .custom-video-play-button a {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
    }

    .custom-video-play-button a:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(0, 151, 220, 0.4);
    }

    .custom-video-play-button i {
        color: var(--primary-color);
        font-size: 24px;
        margin-left: 5px;
    }

    .about-stat-box {
        text-align: center;
        padding: 20px;
        border-radius: 15px;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 151, 220, 0.08);
        transition: all 0.3s ease;
    }

    .about-stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.15);
    }

    .about-stat-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-stat-icon i {
        color: white;
        font-size: 20px;
    }

    .value-card {
        text-align: center;
        padding: 40px 30px;
        border-radius: 20px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.08);
        transition: all 0.4s ease;
        height: 100%;
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 151, 220, 0.2);
    }

    .value-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: var(--gradient-primary);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .value-card:hover .value-icon {
        background: var(--gradient-accent);
        transform: rotateY(360deg);
    }

    .value-icon i {
        color: white;
        font-size: 32px;
    }

    .box-shadow-3 {
        box-shadow: 0 15px 50px rgba(0, 151, 220, 0.15) !important;
    }

    @media (max-width: 991px) {
        .custom-shape-background {
            width: 150px;
            height: 150px;
        }

        .about-stat-box {
            padding: 15px;
        }

        .value-card {
            padding: 30px 20px;
        }
    }

    /* Для кого секция */
    .for-whom-section {
        background: linear-gradient(to bottom, rgba(0, 220, 180, 0.02) 0%, #ffffff 100%);
        position: relative;
    }

    .for-whom-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 151, 220, 0.3), transparent);
    }

    /* Табы */
    .custom-industry-tabs {
        /* border-bottom: 2px solid rgba(0, 151, 220, 0.1); */
        flex-wrap: wrap;
        gap: 10px;
    }

    .custom-industry-tabs .nav-link {
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 15px 30px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: #666;
        font-weight: 600;
    }

    .custom-industry-tabs .nav-link i {
        font-size: 28px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .custom-industry-tabs .nav-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 151, 220, 0.15);
        border-color: rgba(0, 151, 220, 0.2);
    }

    .custom-industry-tabs .nav-link.active {
        background: var(--gradient-primary);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.3);
    }

    .custom-industry-tabs .nav-link.active i {
        color: white;
    }

    /* Контент табов */
    .tab-content {
        padding: 50px 0;
    }

    .tab-content .row {
        margin-left: 15px;
        margin-right: 15px;
    }

    .tab-content .row>[class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .tab-content .row>[class*="col-"]:not(:last-child) {
        padding-right: 15px;
    }

    .industry-image-wrapper {
        position: relative;
    }

    .industry-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
        background: var(--gradient-primary);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.4);
    }

    .industry-badge i {
        font-size: 36px;
        color: white;
    }

    .industry-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: #666;
    }

    .industry-feature i {
        font-size: 18px;
        flex-shrink: 0;
    }

    .industry-stats {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.05) 0%, rgba(0, 220, 180, 0.05) 100%);
        border-radius: 15px;
        padding: 30px 20px;
        margin-top: 20px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .stat-item strong {
        font-size: 2rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-item span {
        font-size: 14px;
        color: #666;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .custom-industry-tabs .nav-link {
            padding: 12px 20px;
        }

        .tab-content .row {
            margin-left: 0;
            margin-right: 0;
        }

        .tab-content .row>[class*="col-"]:not(:last-child) {
            padding-right: 0;
        }

        .custom-industry-tabs .nav-link i {
            font-size: 24px;
        }

        .industry-badge {
            width: 60px;
            height: 60px;
        }

        .industry-badge i {
            font-size: 28px;
        }
    }

    @media (max-width: 576px) {
        .custom-industry-tabs {
            gap: 5px;
        }

        .custom-industry-tabs .nav-link {
            padding: 10px 15px;
            font-size: 13px;
        }

        .custom-industry-tabs .nav-link i {
            font-size: 20px;
        }

        .tab-content {
            padding: 30px 0;
        }
    }

    /* Наши партнеры */
    .partners-section {
        background: linear-gradient(to bottom, #ffffff 0%, rgba(0, 151, 220, 0.02) 50%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .partners-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 151, 220, 0.3), transparent);
    }

    /* Бегущая строка */
    .partners-marquee-wrapper {
        position: relative;
        overflow: hidden;
        /* padding: 40px 0; */
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.03) 0%, rgba(0, 220, 180, 0.03) 100%);
    }

    .partners-marquee-wrapper::before,
    .partners-marquee-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        width: 200px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .partners-marquee-wrapper::before {
        left: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .partners-marquee-wrapper::after {
        right: 0;
        background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .partners-marquee {
        width: 100%;
        overflow: hidden;
    }

    .partners-marquee-content {
        display: flex;
        animation: marquee 40s linear infinite;
        width: fit-content;
    }

    .partners-marquee-content:hover {
        animation-play-state: paused;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .partners-marquee-content {
        display: flex;
        gap: 12px;
        align-items: center;
        animation: marquee 40s linear infinite;
        width: fit-content;
    }

    .partner-item {
        flex-shrink: 0;
        width: 260px;
        height: 92px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        margin: 0 12px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 151, 220, 0.08);
        transition: transform .25s ease, box-shadow .25s ease;
        overflow: hidden;
    }

    .partner-item .logo-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partner-item img {
        max-width: 100%;
        max-height: 70%;
        width: auto;
        height: auto;
        object-fit: contain;
        opacity: 0.92;
        transition: transform .25s ease, opacity .25s ease;
        display: block;
    }

    .partner-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 36px rgba(0, 151, 220, 0.16);
    }

    .partner-item:hover img {
        transform: scale(1.03);
        opacity: 1;
    }

    .partner-item.partner-wide {
        width: 320px;
    }

    .partner-item.partner-square img {
        max-height: 75%;
        max-width: 75%;
    }

    /* Статистика */
    .partnership-stats-banner {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: 0 10px 40px rgba(0, 151, 220, 0.1);
        position: relative;
        overflow: hidden;
    }

    .partnership-stats-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 220, 180, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

    .stat-item-inline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;
        z-index: 2;
    }

    .stat-icon-inline {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
    }

    .stat-item-inline:hover .stat-icon-inline {
        transform: scale(1.1) rotate(360deg);
    }

    .stat-icon-inline i {
        color: white;
        font-size: 24px;
    }

    .stat-content-inline {
        text-align: left;
    }

    .stat-number-inline {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .stat-label-inline {
        font-size: 14px;
        color: #666;
        margin: 5px 0 0;
        white-space: nowrap;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .partners-marquee-content {
            animation-duration: 30s;
        }

        .partner-item {
            width: 200px;
            height: 80px;
            margin: 0 10px;
            padding: 10px 14px;
        }

        .partner-item.partner-wide {
            width: 240px;
        }


        .partner-item img {
            max-width: 90%;
            max-height: 90%;
        }

        .partnership-stats-banner {
            padding: 30px 20px;
        }

        .stat-icon-inline {
            width: 50px;
            height: 50px;
        }

        .stat-icon-inline i {
            font-size: 20px;
        }

        .stat-number-inline {
            font-size: 1.5rem;
        }

        .stat-label-inline {
            font-size: 12px;
        }
    }

    @media (max-width: 576px) {

        .partners-marquee-wrapper::before,
        .partners-marquee-wrapper::after {
            width: 50px;
        }
    }

    @media (max-width: 576px) {

        .partners-marquee-wrapper::before,
        .partners-marquee-wrapper::after {
            width: 50px;
        }

        .partner-item {
            width: 160px;
            height: 64px;
            margin: 0 8px;
            padding: 8px 10px;
        }

        .partner-item img {
            max-height: 60%;
        }

        .stat-item-inline {
            flex-direction: column;
            gap: 10px;
        }

        .stat-content-inline {
            text-align: center;
        }

        .stat-number-inline {
            font-size: 1.3rem;
        }
    }

    /* Анимация появления при скролле */
    @media (prefers-reduced-motion: no-preference) {
        .partners-marquee-content {
            will-change: transform;
        }
    }

    /* Наши достижения */
    .achievements-section {
        background: linear-gradient(to bottom, rgba(0, 151, 220, 0.02) 0%, #ffffff 100%);
        position: relative;
    }

    .achievements-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 151, 220, 0.3), transparent);
    }

    /* Табы достижений */
    .achievement-tabs {
        flex-wrap: wrap;
        gap: 10px;
        border-bottom: none;
    }

    .achievement-tabs .nav-link {
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 12px 25px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.08);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
        font-weight: 600;
    }

    .achievement-tabs .nav-link i {
        font-size: 20px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .achievement-tabs .nav-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 151, 220, 0.15);
        border-color: rgba(0, 151, 220, 0.2);
    }

    .achievement-tabs .nav-link.active {
        background: var(--gradient-primary);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(0, 151, 220, 0.3);
    }

    .achievement-tabs .nav-link.active i {
        color: white;
    }

    /* Карточки достижений - без изображений */
    .achievement-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
        transition: all 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        min-height: 380px;
    }

    .achievement-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 151, 220, 0.2);
    }

    .achievement-body {
        padding: 40px 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .achievement-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        box-shadow: 0 8px 20px rgba(0, 151, 220, 0.3);
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .achievement-card:hover .achievement-icon {
        transform: scale(1.1) rotateY(360deg);
    }

    .achievement-icon i {
        color: white;
        font-size: 32px;
    }

    .achievement-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 12px;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.3;
    }

    .achievement-date {
        font-size: 0.95rem;
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 15px;
        min-height: 27px;
        display: flex;
        align-items: center;
    }

    .achievement-description {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
        min-height: 72px;
    }

    .achievement-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 10px 20px;
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.1) 0%, rgba(0, 220, 180, 0.1) 100%);
        color: var(--primary-color);
        text-decoration: none;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    .achievement-link:hover {
        background: var(--gradient-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
    }

    .achievement-link i {
        font-size: 0.85rem;
    }

    /* Адаптивность */
    @media (max-width: 1199px) {
        .achievement-card {
            min-height: 360px;
        }

        .achievement-body {
            padding: 35px 25px;
        }

        .achievement-icon {
            width: 70px;
            height: 70px;
        }

        .achievement-icon i {
            font-size: 28px;
        }
    }

    @media (max-width: 991px) {
        .achievement-card {
            min-height: 340px;
        }

        .achievement-body {
            padding: 30px 20px;
        }

        .achievement-icon {
            width: 65px;
            height: 65px;
        }

        .achievement-icon i {
            font-size: 26px;
        }

        .achievement-title {
            font-size: 1rem;
            min-height: 48px;
        }

        .achievement-description {
            font-size: 0.9rem;
            min-height: 68px;
        }
    }

    @media (max-width: 767px) {
        .achievement-card {
            min-height: 320px;
        }

        .achievement-body {
            padding: 25px 20px;
        }
    }

    @media (max-width: 576px) {
        .achievement-card {
            min-height: auto;
        }

        .achievement-body {
            padding: 25px 20px;
        }

        .achievement-title {
            font-size: 0.95rem;
            min-height: auto;
        }

        .achievement-date {
            font-size: 0.85rem;
            min-height: auto;
        }

        .achievement-description {
            font-size: 0.85rem;
            min-height: auto;
            margin-bottom: 15px;
        }

        .achievement-link {
            font-size: 0.85rem;
            padding: 8px 16px;
        }
    }

    /* Статистика достижений */
    .achievements-stats {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.05) 0%, rgba(0, 220, 180, 0.05) 100%);
        border-radius: 20px;
        padding: 15px 30px;
        position: relative;
        overflow: hidden;
    }

    .achievements-stats::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 220, 180, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .achievement-stat-item {
        position: relative;
        z-index: 2;
    }

    .achievement-stat-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
    }

    .achievement-stat-item:hover .achievement-stat-icon {
        transform: scale(1.1) rotateY(360deg);
    }

    .achievement-stat-icon i {
        color: white;
        font-size: 24px;
    }

    .achievement-stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .achievement-stat-label {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .achievement-tabs .nav-link {
            padding: 10px 20px;
            font-size: 14px;
        }

        .achievement-tabs .nav-link i {
            font-size: 18px;
        }

        .achievement-image {
            height: 250px;
        }

        .achievement-stat-icon {
            width: 60px;
            height: 60px;
        }

        .achievement-stat-icon i {
            font-size: 24px;
        }

        .achievement-stat-number {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .achievement-tabs {
            gap: 5px;
        }

        .achievement-tabs .nav-link {
            padding: 8px 15px;
            font-size: 13px;
        }

        .achievement-tabs .nav-link span {
            display: none;
        }

        .achievement-tabs .nav-link i {
            font-size: 20px;
        }

        .achievement-image {
            height: 200px;
        }

        .achievement-body {
            padding: 20px;
        }

        .achievements-stats {
            padding: 30px 20px;
        }

        .achievement-stat-number {
            font-size: 1.8rem;
        }

        .achievement-stat-label {
            font-size: 13px;
        }
    }

    /* Lightbox стили */
    .lightbox {
        text-decoration: none;
        display: block;
        cursor: zoom-in;
    }

    /* Наша команда */
    .team-section {
        background: white;
        position: relative;
    }

    .team-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 151, 220, 0.3), transparent);
    }

    /* Карточки руководства */
    .team-member-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
        transition: all 0.4s ease;
        height: 100%;
    }

    .team-member-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 151, 220, 0.25);
    }

    .team-member-image {
        position: relative;
        overflow: hidden;
        height: 350px;
    }

    .team-member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .team-member-card:hover .team-member-image img {
        transform: scale(1.08);
    }

    .team-member-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-overlay);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-member-card:hover .team-member-overlay {
        opacity: 1;
    }

    .team-member-social {
        display: flex;
        gap: 15px;
    }

    .team-social-link {
        width: 45px;
        height: 45px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .team-social-link:hover {
        background: var(--secondary-color);
        color: white;
        transform: translateY(-3px);
    }

    .team-member-info {
        padding: 30px;
        text-align: center;
        position: relative;
    }

    .team-member-badge {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -50px auto 20px;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
        position: relative;
        z-index: 2;
    }

    .team-member-badge i {
        color: white;
        font-size: 24px;
    }

    .team-member-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }

    .team-member-position {
        font-size: 1rem;
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 15px;
    }

    .team-member-description {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

    /* Табы команды */
    .team-tabs {
        flex-wrap: wrap;
        gap: 10px;
        border-bottom: none;
    }

    .team-tabs .nav-link {
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 12px 25px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.08);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #666;
        font-weight: 600;
    }

    .team-tabs .nav-link i {
        font-size: 20px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .team-tabs .nav-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 151, 220, 0.15);
        border-color: rgba(0, 151, 220, 0.2);
    }

    .team-tabs .nav-link.active {
        background: var(--gradient-primary);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(0, 151, 220, 0.3);
    }

    .team-tabs .nav-link.active i {
        color: white;
    }

    /* Компактные карточки сотрудников */
    .team-member-card-compact {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 151, 220, 0.08);
        transition: all 0.3s ease;
        height: 100%;
    }

    .team-member-card-compact:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 151, 220, 0.2);
    }

    .team-member-image-compact {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .team-member-image-compact img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-member-card-compact:hover .team-member-image-compact img {
        transform: scale(1.05);
    }

    .team-member-overlay-compact {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-overlay);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-member-card-compact:hover .team-member-overlay-compact {
        opacity: 1;
    }

    .team-contact-btn {
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .team-contact-btn:hover {
        transform: scale(1.1);
        background: var(--secondary-color);
        color: white;
    }

    .team-member-info-compact {
        padding: 20px;
        text-align: center;
    }

    .team-member-name-compact {
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
    }

    .team-member-position-compact {
        font-size: 0.9rem;
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .team-member-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }

    .skill-badge {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.1) 0%, rgba(0, 220, 180, 0.1) 100%);
        color: var(--primary-color);
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Статистика команды */
    .team-stats {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.05) 0%, rgba(0, 220, 180, 0.05) 100%);
        border-radius: 20px;
        padding: 50px 30px;
        position: relative;
        overflow: hidden;
    }

    .team-stats::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 220, 180, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .team-stat-item {
        position: relative;
        z-index: 2;
    }

    .team-stat-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
    }

    .team-stat-item:hover .team-stat-icon {
        transform: scale(1.1) rotateY(360deg);
    }

    .team-stat-icon i {
        color: white;
        font-size: 28px;
    }

    .team-stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .team-stat-label {
        font-size: 15px;
        color: #666;
        margin: 0;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .team-member-image {
            height: 280px;
        }

        .team-member-image-compact {
            height: 220px;
        }

        .team-tabs .nav-link {
            padding: 10px 20px;
            font-size: 14px;
        }

        .team-stat-icon {
            width: 60px;
            height: 60px;
        }

        .team-stat-icon i {
            font-size: 24px;
        }

        .team-stat-number {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .team-tabs {
            gap: 5px;
        }

        .team-tabs .nav-link {
            padding: 8px 15px;
            font-size: 13px;
        }

        .team-tabs .nav-link span {
            display: none;
        }

        .team-tabs .nav-link i {
            font-size: 20px;
        }

        .team-member-image {
            height: 250px;
        }

        .team-member-image-compact {
            height: 200px;
        }

        .team-stats {
            padding: 30px 20px;
        }

        .team-stat-number {
            font-size: 1.8rem;
        }

        .team-stat-label {
            font-size: 13px;
        }
    }

    /* Рекламные возможности */
    .advertising-section {
        background: white;
        position: relative;
    }

    .advertising-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 151, 220, 0.3), transparent);
    }

    /* Карточки форматов */
    .advertising-format-card {
        background: white;
        border-radius: 20px;
        overflow: visible;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
        transition: all 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .advertising-format-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 151, 220, 0.25);
    }

    /* Планшет мокап */
    .tablet-mockup {
        position: relative;
        padding: 30px 20px 20px;
    }

    .tablet-frame {
        position: relative;
        background: linear-gradient(145deg, #2d3436, #1e272e);
        border-radius: 20px;
        padding: 15px;
        box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.3),
            inset 0 2px 5px rgba(255, 255, 255, 0.1);
        aspect-ratio: 4 / 3;
    }

    .tablet-frame::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(145deg, #636e72, #2d3436);
        border-radius: 21px;
        z-index: -1;
    }

    .tablet-camera {
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        background: radial-gradient(circle, #1a1a1a 30%, #333 60%, #555);
        border-radius: 50%;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .tablet-screen {
        position: relative;
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
    }

    .tablet-screen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .advertising-format-card:hover .tablet-screen img {
        transform: scale(1.05);
        transition: transform 0.4s ease;
    }

    .format-badge {
        position: absolute;
        top: 40px;
        right: 30px;
        background: var(--gradient-primary);
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(0, 151, 220, 0.4);
        z-index: 10;
    }

    .format-badge i {
        font-size: 16px;
    }

    .format-content {
        padding: 30px;
        flex-grow: 1;
    }

    .format-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .format-description {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .format-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .format-features li {
        padding: 8px 0;
        font-size: 0.95rem;
        color: #555;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .format-features i {
        font-size: 16px;
    }

    /* Статистика рекламы */
    .advertising-stats {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.05) 0%, rgba(0, 220, 180, 0.05) 100%);
        border-radius: 20px;
        padding: 15px 30px;
        position: relative;
        overflow: hidden;
    }

    .advertising-stats::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 220, 180, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .stat-box {
        position: relative;
        z-index: 2;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
    }

    .stat-box:hover .stat-icon {
        transform: scale(1.1) rotateY(360deg);
    }

    .stat-icon i {
        color: white;
        font-size: 24px;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-label {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* Преимущества */
    .advantages-wrapper {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 5px 20px rgba(0, 151, 220, 0.08);
    }

    .advantage-item {
        text-align: center;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.1) 0%, rgba(0, 220, 180, 0.1) 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .advantage-item:hover .advantage-icon {
        background: var(--gradient-primary);
        transform: scale(1.1);
    }

    .advantage-icon i {
        font-size: 24px;
        color: var(--primary-color);
        transition: color 0.3s ease;
    }

    .advantage-item:hover .advantage-icon i {
        color: white;
    }

    .advantage-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .advantage-text {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.5;
    }

    /* Кнопки действий */
    .action-buttons-wrapper {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.03) 0%, rgba(0, 220, 180, 0.03) 100%);
        border-radius: 20px;
        padding: 50px 30px;
    }

    .buttons-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }

    .btn-modern {
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.2);
    }

    .btn-modern:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.3);
    }

    .contact-info {
        padding: 20px;
        background: white;
        border-radius: 15px;
        display: inline-block;
    }

    .contact-info a {
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-info a:hover {
        color: var(--secondary-color) !important;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .tablet-mockup {
            padding: 20px 15px 15px;
        }

        .tablet-frame {
            padding: 12px;
        }

        .format-badge {
            top: 30px;
            right: 25px;
            padding: 8px 15px;
            font-size: 12px;
        }

        .format-content {
            padding: 25px;
        }

        .advertising-stats {
            padding: 40px 20px;
        }

        .advantages-wrapper {
            padding: 30px 20px;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
        }

        .stat-icon i {
            font-size: 24px;
        }

        .stat-number {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .tablet-mockup {
            padding: 15px 10px 10px;
        }

        .tablet-frame {
            padding: 10px;
        }

        .format-badge {
            top: 25px;
            right: 20px;
            padding: 6px 12px;
            font-size: 11px;
        }

        .format-content {
            padding: 20px;
        }

        .buttons-row {
            flex-direction: column;
        }

        .btn-modern {
            width: 100%;
        }

        .action-buttons-wrapper {
            padding: 30px 20px;
        }

        .stat-number {
            font-size: 1.8rem;
        }

        .stat-label {
            font-size: 13px;
        }
    }

    /* Кейсы */
    .cases-section {
        background: linear-gradient(to bottom, #f8f9fa 0%, rgba(0, 220, 180, 0.03) 100%);
        position: relative;
    }

    /* Карточки кейсов */
    .case-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
        transition: all 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .case-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 151, 220, 0.25);
    }

    .case-image {
        position: relative;
        height: 300px;
        overflow: hidden;
    }

    .case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .case-card:hover .case-image img {
        transform: scale(1.08);
    }

    .case-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-overlay);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .case-card:hover .case-overlay {
        opacity: 1;
    }

    .case-view-btn {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .case-view-btn:hover {
        transform: scale(1.1);
        background: var(--secondary-color);
        color: white;
        text-decoration: none !important;
    }

    .case-view-btn i {
        font-size: 24px;
    }

    .case-category {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--gradient-primary);
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 151, 220, 0.4);
        z-index: 2;
    }

    .case-category i {
        font-size: 16px;
    }

    .case-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .case-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .case-description {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .case-stats {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 20px;
    }

    .case-stat-item {
        text-align: center;
    }

    .case-stat-item strong {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 5px;
    }

    .case-stat-item span {
        font-size: 0.85rem;
        color: #666;
    }

    .case-read-more {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .case-read-more:hover {
        color: var(--secondary-color);
        transform: translateX(5px);
        text-decoration: none !important;
    }

    /* Баннер результатов */
    .cases-results-banner {
        background: linear-gradient(135deg, rgba(0, 151, 220, 0.05) 0%, rgba(0, 220, 180, 0.05) 100%);
        border-radius: 20px;
        padding: 50px 40px;
        position: relative;
        overflow: hidden;
    }

    .cases-results-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 220, 180, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .result-stat-item {
        position: relative;
        z-index: 2;
    }

    .result-stat-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
        transition: all 0.3s ease;
    }

    .result-stat-item:hover .result-stat-icon {
        transform: scale(1.1) rotateY(360deg);
    }

    .result-stat-icon i {
        color: white;
        font-size: 24px;
    }

    .result-stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .result-stat-label {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* Адаптивность */
    @media (max-width: 991px) {
        .case-image {
            height: 250px;
        }

        .case-content {
            padding: 25px;
        }

        .case-title {
            font-size: 1.2rem;
        }

        .case-stats {
            padding: 15px 0;
        }

        .case-stat-item strong {
            font-size: 1.3rem;
        }

        .case-stat-item span {
            font-size: 0.8rem;
        }

        .cases-results-banner {
            padding: 40px 30px;
        }

        .result-stat-icon {
            width: 50px;
            height: 50px;
        }

        .result-stat-icon i {
            font-size: 20px;
        }

        .result-stat-number {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 576px) {
        .case-image {
            height: 220px;
        }

        .case-category {
            top: 15px;
            right: 15px;
            padding: 8px 15px;
            font-size: 12px;
        }

        .case-content {
            padding: 20px;
        }

        .case-title {
            font-size: 1.1rem;
        }

        .case-stats {
            flex-direction: column;
            gap: 15px;
            padding: 20px 0;
        }

        .case-stat-item {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .case-stat-item:last-child {
            border-bottom: none;
        }

        .cases-results-banner {
            padding: 30px 20px;
        }

        .result-stat-number {
            font-size: 1.5rem;
        }

        .result-stat-label {
            font-size: 13px;
        }
    }