   /* общий контейнер для демонстрации */
        .showcase {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* базовые стили для всех узких блоков */
        .narrow-block {
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        /* ========== БЛОК №5: МИНИМАЛИСТИЧНЫЙ С БЕЛОЙ ПОДЛОЖКОЙ ========== */
        .partner-block-5 {
            background: linear-gradient(95deg, #1a2a3a 0%, #0f1a24 100%);
            border-radius: 50px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s;
        }
        .partner-block-5:hover {
            border-color: #FFD966;
            transform: translateX(4px);
        }
        .flex-row-5 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 10px 20px 10px 16px;
        }
        .badge-icon-5 {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 217, 102, 0.12);
            padding: 6px 14px 6px 12px;
            border-radius: 60px;
        }
        .badge-icon-5 span:first-child {
            font-size: 1.4rem;
        }
        .badge-icon-5 span:last-child {
            font-weight: 700;
            color: #FFE6A3;
            font-size: 0.85rem;
        }
        .text-5 {
            color: #CDE5FF;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .text-5 strong {
            color: #FFD966;
        }
        .btn-5 {
            background: rgba(255, 217, 102, 0.15);
            border: 1px solid #FFD966;
            padding: 6px 20px;
            border-radius: 40px;
            text-decoration: none;
            color: #FFE6A3;
            font-weight: 600;
            font-size: 0.8rem;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-5:hover {
            background: #FFD966;
            color: #1a2a3a;
            gap: 10px;
        }

        /* ========== БЛОК №6: СТЕКЛОМОРФИЗМ, НЕОНОВЫЙ АКЦЕНТ ========== */
        .partner-block-6 {
            background: rgba(18, 25, 45, 0.75);
            backdrop-filter: blur(12px);
            border-radius: 40px;
            border: 1px solid rgba(0, 255, 255, 0.4);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.25s;
        }
        .partner-block-6:hover {
            border-color: #0ff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }
        .flex-row-6 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 8px 20px 8px 20px;
        }
        .logo-icon-6 {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .neon-circle {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #0ff, #00aaff);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 8px #0ff;
        }
        .partner-title-6 {
            font-weight: 800;
            color: #E0F2FE;
            font-size: 1rem;
        }
        .partner-title-6 small {
            font-size: 0.65rem;
            font-weight: 400;
            color: #7AB2F0;
        }
        .desc-6 {
            font-size: 0.85rem;
            color: #BCE0FD;
        }
        .btn-6 {
            background: linear-gradient(95deg, #0ff, #0099ff);
            padding: 7px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.8rem;
            color: #0a0f1a;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-6:hover {
            transform: scale(1.02);
            gap: 12px;
            background: linear-gradient(95deg, #3cf, #33bbff);
        }

        /* ========== БЛОК №7: ТЁМНЫЙ МЕТАЛЛИК С КНОПКОЙ-ТРИГГЕРОМ ========== */
        .partner-block-7 {
            background: linear-gradient(115deg, #1E1E2E, #13131F);
            border-radius: 36px;
            border: 1px solid #8B5CF6;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .partner-block-7::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
            transition: left 0.5s;
        }
        .partner-block-7:hover::before {
            left: 100%;
        }
        .flex-row-7 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 10px 22px;
        }
        .badge-purple {
            background: #8B5CF620;
            padding: 5px 14px;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #C084FC;
            border: 1px solid #8B5CF6;
        }
        .info-7 {
            display: flex;
            flex-direction: column;
        }
        .info-7 .main {
            font-weight: 700;
            color: #E9E0FF;
        }
        .info-7 .sub {
            font-size: 0.7rem;
            color: #A78BFA;
        }
        .btn-7 {
            background: #8B5CF6;
            padding: 6px 24px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-7:hover {
            background: #A78BFA;
            gap: 10px;
            transform: translateY(-1px);
        }

        /* адаптив под экраны */
        @media (max-width: 650px) {
            .flex-row-5, .flex-row-6, .flex-row-7 {
                flex-direction: column;
                text-align: center;
                padding: 16px;
            }
            .badge-icon-5, .logo-icon-6, .badge-purple {
                align-self: center;
            }
        }
        
                /* НОВЫЙ ПАРТНЁРСКИЙ БЛОК — УНИКАЛЬНЫЙ ТЕКСТ И СТИЛЬ */
        .partner-block-fresh {
            background: linear-gradient(105deg, #0C1A28 0%, #11222E 100%);
            border-radius: 56px;
            border: 1px solid rgba(64, 224, 208, 0.4);
            transition: all 0.35s ease;
            overflow: hidden;
            box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.5);
        }

        .partner-block-fresh:hover {
            border-color: #40E0D0;
            transform: translateY(-3px);
            box-shadow: 0 20px 32px -12px rgba(64, 224, 208, 0.25);
        }

        /* гибкий контейнер */
        .fresh-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 0.9rem 1.8rem;
        }

        /* левый блок: иконка + краткий заголовок */
        .fresh-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .icon-stub {
            width: 48px;
            height: 48px;
            background: linear-gradient(145deg, #1E3A5F, #0F2A3B);
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            border: 1px solid rgba(64, 224, 208, 0.6);
            box-shadow: 0 0 8px rgba(64, 224, 208, 0.3);
        }

        .partner-title-fresh {
            font-weight: 800;
            font-size: 1.1rem;
            color: #E0F2FE;
            letter-spacing: -0.2px;
        }

        .partner-title-fresh span {
            background: #40E0D020;
            padding: 2px 8px;
            border-radius: 40px;
            font-size: 0.6rem;
            font-weight: 600;
            color: #7EFFEC;
            margin-left: 8px;
        }

        /* центральный блок — НОВЫЙ ТЕКСТ с конкретными цифрами и выгодами */
        .fresh-offer {
            flex: 2;
            text-align: left;
        }

        .fresh-offer p {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
            color: #CEE9FF;
            line-height: 1.4;
        }

        .fresh-offer strong {
            color: #40E0D0;
            font-weight: 700;
        }

        .highlight-numbers {
            display: inline-block;
            background: #40E0D020;
            padding: 2px 8px;
            border-radius: 24px;
            font-weight: 700;
            margin: 0 2px;
        }

        /* правая кнопка */
        .fresh-btn {
            background: linear-gradient(95deg, #40E0D0, #2CBCAE);
            padding: 8px 28px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            color: #0A1C2A;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.25s;
            white-space: nowrap;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .fresh-btn:hover {
            background: #5EF0E0;
            gap: 14px;
            transform: scale(1.02);
            color: #07161f;
        }

        /* адаптив */
        @media (max-width: 780px) {
            .fresh-container {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem;
            }
            .fresh-offer {
                text-align: center;
            }
            .fresh-brand {
                justify-content: center;
            }
            .fresh-btn {
                white-space: normal;
            }
        }