/* Component: Bundle Banner */
.bundle-section { background: #fff; padding: 32px 0; border-bottom: 1px solid var(--border-faq); }
.bundle-banner {
    background: linear-gradient(135deg, #eae5ff 0%, #d4fbfc 100%);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.bundle-banner__text h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17.6px;
    color: var(--purple-deep);
    margin-bottom: 6px;
}
.bundle-banner__text p {
    font-size: 14.1px;
    line-height: 1.7;
    color: #4a4a62;
}
.bundle-banner__btn {
    display: inline-block;
    background: var(--red-btn);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.1px;
    padding: 14px 24px;
    border-radius: 9999px;
    white-space: nowrap;
    transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.25s cubic-bezier(0.25,0.46,0.45,0.94), background-color 0.25s ease;
}
.bundle-banner__btn:hover {
    transform: translateY(-2px);
    background-color: #c41a27;
    box-shadow: 0 4px 14px -2px rgba(223,32,46,0.3);
}
@media (max-width: 768px) { .bundle-banner { flex-direction: column; align-items: flex-start; } }
