/* =========================
   RESEARCH & INNOVATION
========================= */
.research-section {
    width: 100%;
    padding: 90px 20px;
    background: #f9fafc;
    display: flex;
    justify-content: center;
}

.research-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Content */
.research-content {
    padding-right: 40px;
    border-right: 3px solid #e6ebf2;
}

.research-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00bf63;
    margin-bottom: 15px;
}

.research-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #192850;
    margin-bottom: 20px;
}

.research-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    max-width: 520px;
}

/* CTA */
.research-cta {
    font-size: 16px;
    font-weight: 600;
    color: #192850;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.research-cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 2px;
    background: #192850;
    transition: width 0.3s ease;
}

.research-cta:hover::after {
    width: 100%;
}

/* Right Highlights */
.research-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    padding-left: 30px;
    position: relative;
}

.highlight-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #192850;
    border-radius: 50%;
}

.highlight-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #192850;
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 480px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .research-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .research-content {
        padding-right: 0;
        border-right: none;
        text-align: center;
    }

    .research-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .research-cta {
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .research-section {
        padding: 70px 15px;
    }

    .research-content h2 {
        font-size: 32px;
    }

    .research-lead {
        font-size: 16px;
    }

    .highlight-item h3 {
        font-size: 18px;
    }

    .highlight-item p {
        font-size: 15px;
    }
}
