/* ===== PROMO BANNER ===== */
.cl-promo-banner {
    position: relative;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    border-radius: 12px;
    padding: 28px 40px;
    margin-bottom: 24px;
    overflow: hidden;
    color: #ffffff;
}

.cl-promo-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: cl-float 6s ease-in-out infinite;
}

.cl-promo-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: cl-float 8s ease-in-out infinite reverse;
}

@keyframes cl-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.cl-promo-pattern {
    position: absolute;
    inset: 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='%23ffffff' fill-opacity='0.04'%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");
    pointer-events: none;
}

.cl-promo-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.cl-promo-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

/* Контент */
.cl-promo-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cl-promo-left {
    flex: 1;
}

.cl-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

.cl-promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
    color: #ffffff;
}

.cl-promo-subtitle {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.9;
}

/* Правая часть - иллюстрация */
.cl-promo-right {
    flex-shrink: 0;
}

.cl-promo-illustration {
    width: 180px;
    height: 120px;
    position: relative;
}

/* Плавающие элементы */
.cl-promo-float {
    position: absolute;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cl-float-item 3s ease-in-out infinite;
}

.cl-promo-float--1 {
    width: 56px;
    height: 56px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.cl-promo-float--2 {
    width: 48px;
    height: 48px;
    top: 10px;
    right: 0;
    animation-delay: 0.5s;
}

.cl-promo-float--3 {
    width: 52px;
    height: 52px;
    bottom: 0;
    left: 20px;
    animation-delay: 1s;
}

.cl-promo-float--4 {
    width: 44px;
    height: 44px;
    bottom: 5px;
    right: 25px;
    animation-delay: 1.5s;
}

@keyframes cl-float-item {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cl-promo-float svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

/* Закрыть баннер */


/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media (max-width: 768px) {
    .cl-promo-right {
        display: none;
    }
    .cl-promo-content {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .cl-promo-banner {
        padding: 24px 20px;
    }
    .cl-promo-title {
        font-size: 1.2rem;
    }
    .cl-promo-subtitle {
        font-size: 0.85rem;
    }
}
