/* ----------------------------- */
/* Research to Practice Section */
/* ----------------------------- */
.research-practice {
    padding: 4.5rem 1rem;
    background: var(--background);
}

.rp-container {
    max-width: 1400px;
    margin: auto;
}

/* Header */
.rp-header {
    max-width: 720px;
    margin-bottom: 3rem;
}

.rp-header h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.rp-header p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.75);
}

/* Flow */
.rp-flow {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.rp-step {
    background: var(--background);
    padding: 1.6rem;
    border-radius: 16px;
    flex: 1;
    min-width: 220px;
}

.rp-number {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.6rem;
}

.rp-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--primary);
}

.rp-step p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Arrows */
.rp-arrow {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: bold;
}

/* Values */
.rp-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.rp-value {
    padding: 1.4rem;
    border-left: 4px solid var(--primary);
    background: var(--background);
    border-radius: 10px;
}

.rp-value strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.rp-value span {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

/* ----------------------------- */
/* Responsive */
/* ----------------------------- */
@media (max-width: 992px) {
    .rp-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .rp-arrow {
        display: none;
    }

    .rp-values {
        grid-template-columns: 1fr;
    }

    .rp-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}
