/* ==========================================================================
   DOWNWINDER PROMO BLOCK
   ========================================================================== */

.downwinder-promo {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 45px 30px;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 24px;
    border: 1px dashed rgba(100, 255, 218, 0.3);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.downwinder-promo h4 {
    color: var(--accent);
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.downwinder-promo .content {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(1rem, 3.8vw, 1.1rem);
}

.downwinder-promo .content p {
    color: #fff;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 24px;
}

.downwinder-promo .requirements {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
    margin: 0 0 32px;
    border-left: 4px solid var(--accent);
}

.downwinder-promo .requirements p {
    font-size: 0.98rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

.downwinder-promo .price-block {
    text-align: center;
    margin: 40px 0;
}

.downwinder-promo .price {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    color: var(--vibrant-blue);
    font-weight: 700;
    line-height: 1;
}

.downwinder-promo .price-note {
    color: var(--text-dim);
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.downwinder-promo .cta {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

.downwinder-promo .cta-title {
    color: var(--accent);
    font-weight: 600;
    font-size: clamp(1.1rem, 4vw, 1.25rem);
    margin-bottom: 16px;
}

.downwinder-promo .cta-text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .downwinder-promo {
        padding: 40px 24px;
    }
}