.promo-banner {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    position: relative;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(30deg);
    pointer-events: none;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.promo-content {
    text-align: left;
    color: var(--white);
    z-index: 2;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.promo-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.promo-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 540px;
}

.promo-countdown {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    width: 70px;
    padding: 10px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -20px;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary);
    padding: 16px 35px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--light);
}

.promo-note {
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: morphing 10s infinite alternate ease-in-out;
}

.promo-floating-card {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    color: var(--text);
    font-weight: 600;
}

.promo-floating-card i {
    color: #f59e0b;
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 40px 15px;
    }
    
    .promo-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .promo-content {
        text-align: center;
        order: 2;
    }
    
    .promo-image-wrapper {
        order: 1;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .promo-countdown {
        justify-content: center;
    }
    
    .promo-actions {
        align-items: center;
    }
    
    .btn-promo {
        width: 100%;
    }

    .promo-img {
        max-width: 300px;
    }
}