/* ==========================================================
   FINAL DISCOVERY CTA
========================================================== */

.discovery-cta {
    background: var(--color-background);
}

.discovery-cta-card {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 64px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #2e6e32 0%, #1f5f2a 100%);
    color: #fff;
    text-align: center;
}

.discovery-cta-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
}

.discovery-cta-description {
    margin: 0 auto 30px;
    max-width: 520px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.65;
}

.discovery-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.discovery-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.discovery-cta-actions .btn-primary {
    background: #fff;
    color: #1f5f2a;
}

.discovery-cta-actions .btn-primary:hover {
    background: #f2f7ef;
}

.discovery-cta-actions .btn-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: transparent;
}

.discovery-cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, .12);
}

.discovery-cta-actions .btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 560px) {
    .discovery-cta-actions {
        flex-direction: column;
    }

    .discovery-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
