/* =========================================================================
   RESULTS COVER — Home page section showing key metrics as social proof
   Light blue background with metric stat cards
   ========================================================================= */

.rc-section {
    background: #dbeafe;
    text-align: center;
    position: relative;
    z-index: 1;
}

.rc-section::before {
    content: "";
    position: absolute;
    top: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 28c240 22 480-18 720 0s480 26 720 0v52H0z' fill='%23dbeafe'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 2;
}


/* INNER CONTAINER */

.rc-section .content-inner {
    max-width: 960px;
    position: relative;
    z-index: 1;
}


/* HEADLINE */

.rc-section .content-inner .section-header {
    text-align: center;
    margin-bottom: 25px;
}


/* DESCRIPTION */

.rc-section .content-inner .rc-description {
    color: var(--color-muted);
    line-height: var(--leading-relaxed);
    max-width: 560px;
    margin: 0 auto 50px;
}


/* STATS GRID */

.rc-section .content-inner .rc-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.rc-section .content-inner .rc-stats .rc-stat {
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    background: var(--color-surface);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.rc-section .content-inner .rc-stats .rc-stat .rc-stat__value {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
}

.rc-section .content-inner .rc-stats .rc-stat .rc-stat__label {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* CTA */

.rc-section .content-inner .rc-cta-wrap {
    display: flex;
    justify-content: center;
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .rc-section .content-inner .rc-stats {
        gap: 10px;
    }

    .rc-section .content-inner .rc-stats .rc-stat {
        min-width: 140px;
        padding: 10px;
    }

    .rc-section .content-inner .rc-stats .rc-stat .rc-stat__value {
        font-size: 28px;
    }

}
