/* Bottom Call to Action Section */
.bottom-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-card);
    padding: 72px 32px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.bottom-cta h2,
.bottom-cta p {
    color: #ffffff;
}

.bottom-cta h2 {
    font-size: clamp(26px, 4vw, 40px);
    max-width: 600px;
    line-height: 1.2;
}

.bottom-cta p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 480px;
}

.bottom-cta-download {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

