/* Desktop Promo Card */
.desktop-promo-card {
    display: flex;
    gap: var(--space-6);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.desktop-promo-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-promo-icon svg {
    width: 40px;
    height: 40px;
}

.desktop-promo-content {
    flex: 1;
    min-width: 0;
}

.desktop-promo-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin: 0 0 var(--space-3);
    color: white;
}

.desktop-promo-desc {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 var(--space-5);
    line-height: var(--leading-relaxed);
}

.desktop-promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
}

.feature-badge svg {
    width: 14px;
    height: 14px;
    color: #a7f3d0;
}

.desktop-promo-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
    width: 100%;
}

.desktop-promo-links .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    white-space: normal;
    text-align: center;
}

.desktop-promo-links .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 640px) {
    .desktop-promo-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-6);
    }

    .desktop-promo-icon {
        margin: 0 auto;
    }

    .desktop-promo-features {
        justify-content: center;
    }

    .desktop-promo-links {
        justify-content: center;
    }
}