/* ==========================================================================
   Use-Case Landing Pages — shared overrides
   Base styles (hero, bento, faq, waveform) come from index.css
   ========================================================================== */

/* Problem framing section */
.uc-problem {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.uc-problem p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.uc-problem p:last-child {
    margin-bottom: 0;
}

/* Scenario cards — equal columns */
.uc-scenario-grid {
    grid-template-columns: repeat(2, 1fr);
}

.uc-scenario-grid .bento-card {
    text-align: left;
}

/* "Why calls work" callout cards */
.uc-why-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Workflow fit section */
.uc-workflow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.uc-workflow p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.uc-workflow p:last-child {
    margin-bottom: 0;
}

/* Bottom CTA — reuses pricing page pattern */
.uc-bottom-cta {
    text-align: center;
    padding: 80px 0;
}

.uc-bottom-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.uc-bottom-cta p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.6;
}

/* Section header — reusable centered header */
.uc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.uc-section-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.uc-section-header p {
    color: var(--text-secondary);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .uc-scenario-grid {
        grid-template-columns: 1fr;
    }

    .uc-why-grid {
        grid-template-columns: 1fr;
    }
}
