/* =========================================================
   RPL PAGE VARIABLES
========================================================= */
:root {
    --color1: #1F3B5D;
    --color2: #FBD405;

    --rpl-white: #ffffff;
    --rpl-blue-dark: #06124D;
    --rpl-blue-mid: #0637B8;
    --rpl-blue-bright: #0862F4;
    --rpl-text-soft: rgba(255, 255, 255, 0.86);
    --rpl-border-light: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   RPL HERO SECTION
========================================================= */
.rpl-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 92px 0 0;
    background: linear-gradient(120deg, #06124D 0%, #082579 38%, #0755E6 78%, #086BFF 100%);
    color: var(--rpl-white);
}

.rpl-hero-row {
    position: relative;
    z-index: 2;
    min-height: 668px;
    align-items: stretch;
}

.rpl-hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
    padding-bottom: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rpl-hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 9px 18px;
    margin-bottom: 46px;
    border: 2px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(8, 98, 244, 0.22);
    color: var(--rpl-white);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    animation: rplBadgeFloat 3.8s ease-in-out infinite;
}

.rpl-hero-badge i {
    font-size: 24px;
}

.rpl-hero-badge strong {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 16px;
    border-radius: 999px;
    background: var(--color2);
    color: #07194F;
    font-size: 17px;
    font-weight: 900;
}

.rpl-hero-title {
    margin: 0;
    color: var(--rpl-white);
    font-size: 70px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
}

.rpl-hero-title span {
    color: var(--color2);
    white-space: nowrap;
}

.rpl-hero-content h2 {
    margin: 22px 0 28px;
    color: var(--rpl-white);
    font-size: 31px;
    font-weight: 900;
    line-height: 1.25;
}

.rpl-hero-content p {
    max-width: 680px;
    margin: 0 0 44px;
    color: var(--rpl-text-soft);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.55;
}

.rpl-hero-content p strong {
    color: var(--color2);
    font-weight: 900;
}

.rpl-hero-buttons {
    display: flex;
    align-items: center;
    gap: 28px;
}

.rpl-hero-btn {
    min-width: 310px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 13px;
    font-size: 23px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.rpl-hero-btn-primary {
    background: var(--color2);
    color: #07194F;
    box-shadow: 0 18px 38px rgba(251, 212, 5, 0.28);
}

.rpl-hero-btn-primary i {
    font-size: 28px;
}

.rpl-hero-btn-outline {
    color: var(--rpl-white);
    border: 2px solid var(--rpl-border-light);
    background: rgba(255, 255, 255, 0.035);
}

.rpl-hero-btn-outline i {
    font-size: 26px;
}

.rpl-hero-btn:hover {
    transform: translateY(-6px);
    text-decoration: none;
}

.rpl-hero-btn-primary:hover {
    color: #07194F;
    background: #FFE04A;
    box-shadow: 0 24px 48px rgba(251, 212, 5, 0.38);
}

.rpl-hero-btn-outline:hover {
    color: var(--rpl-white);
    border-color: var(--rpl-white);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.rpl-hero-visual {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 668px;
}

.rpl-hero-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    width: auto;
    max-width: 860px;
    object-fit: contain;
    transform: translateX(10%);
    transform-origin: bottom right;
    filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.24));
    transition: transform 0.45s ease;
}

.rpl-hero-visual:hover .rpl-hero-img {
    transform: translateX(10%) translateY(-6px) scale(1.02);
}

/* =========================================================
   RPL HERO ANIMATION
========================================================= */
.fade-up {
    opacity: 0;
    animation: rplFadeUp 0.85s ease forwards;
}

.delay-1 {
    animation-delay: 0.18s;
}

@keyframes rplFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rplBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* =========================================================
   RPL HERO RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .rpl-hero {
        min-height: 710px;
        padding-top: 82px;
    }

    .rpl-hero-row {
        min-height: 628px;
    }

    .rpl-hero-content {
        padding-bottom: 56px;
    }

    .rpl-hero-title {
        font-size: 62px;
    }

    .rpl-hero-img {
        max-width: 790px;
        transform: translateX(12%);
    }

    .rpl-hero-visual:hover .rpl-hero-img {
        transform: translateX(12%) translateY(-6px) scale(1.02);
    }

    .rpl-hero-btn {
        min-width: 270px;
        height: 74px;
        font-size: 20px;
    }
}

@media (max-width: 1199.98px) {
    .rpl-hero {
        min-height: 660px;
        padding-top: 74px;
    }

    .rpl-hero-row {
        min-height: 586px;
    }

    .rpl-hero-content {
        padding-bottom: 46px;
    }

    .rpl-hero-title {
        font-size: 52px;
    }

    .rpl-hero-content h2 {
        font-size: 26px;
    }

    .rpl-hero-content p {
        font-size: 18px;
    }

    .rpl-hero-badge {
        margin-bottom: 34px;
        font-size: 15px;
    }

    .rpl-hero-badge i {
        font-size: 21px;
    }

    .rpl-hero-badge strong {
        font-size: 15px;
    }

    .rpl-hero-img {
        max-width: 690px;
        transform: translateX(14%);
    }

    .rpl-hero-visual:hover .rpl-hero-img {
        transform: translateX(14%) translateY(-6px) scale(1.02);
    }

    .rpl-hero-buttons {
        gap: 18px;
    }

    .rpl-hero-btn {
        min-width: 230px;
        height: 66px;
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .rpl-hero {
        min-height: auto;
        padding: 64px 0 0;
    }

    .rpl-hero-row {
        min-height: auto;
        align-items: center;
    }

    .rpl-hero-content {
        max-width: 760px;
        margin: 0 auto;
        padding-bottom: 34px;
        text-align: center;
        align-items: center;
    }

    .rpl-hero-title {
        font-size: 48px;
    }

    .rpl-hero-content p {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .rpl-hero-buttons {
        justify-content: center;
    }

    .rpl-hero-visual {
        min-height: 520px;
        height: 520px;
        margin-top: 8px;
    }

    .rpl-hero-img {
        left: 50%;
        right: auto;
        bottom: 0;
        max-height: 100%;
        max-width: 620px;
        transform: translateX(-50%);
        transform-origin: bottom center;
    }

    .rpl-hero-visual:hover .rpl-hero-img {
        transform: translateX(-50%) translateY(-5px) scale(1.02);
    }

    .rpl-cta-program-card {
        left: 50%;
        right: auto;
        bottom: 34px;
        width: calc(100% - 36px);
        max-width: 460px;
        min-height: auto;
        transform: translateX(-50%);
        grid-template-columns: 64px 1fr;
        padding: 20px 22px;
    }
}

@media (max-width: 767.98px) {
    .rpl-hero {
        padding-top: 46px;
    }

    .rpl-hero-content {
        padding-bottom: 24px;
    }

    .rpl-hero-badge {
        gap: 9px;
        min-height: auto;
        padding: 8px 12px;
        margin-bottom: 26px;
        font-size: 11.5px;
    }

    .rpl-hero-badge i {
        font-size: 18px;
    }

    .rpl-hero-badge strong {
        min-height: 26px;
        padding: 4px 11px;
        font-size: 11.5px;
    }

    .rpl-hero-title {
        font-size: 38px;
        line-height: 1.14;
        letter-spacing: -0.8px;
    }

    .rpl-hero-title span {
        white-space: normal;
    }

    .rpl-hero-content h2 {
        margin: 18px 0 20px;
        font-size: 21px;
    }

    .rpl-hero-content p {
        margin-bottom: 30px;
        font-size: 15.5px;
        line-height: 1.6;
    }

    .rpl-hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 14px;
    }

    .rpl-hero-btn {
        width: 100%;
        min-width: 0;
        height: 62px;
        border-radius: 12px;
        font-size: 17px;
    }

    .rpl-hero-visual {
        min-height: 410px;
        height: 410px;
    }

    .rpl-hero-img {
        max-width: 500px;
    }
}

@media (max-width: 575.98px) {
    .rpl-hero {
        padding-top: 38px;
    }

    .rpl-hero-title {
        font-size: 32px;
    }

    .rpl-hero-content h2 {
        font-size: 19px;
    }

    .rpl-hero-content p {
        font-size: 14.5px;
    }

    .rpl-hero-visual {
        min-height: 335px;
        height: 335px;
    }

    .rpl-hero-img {
        max-width: 410px;
    }
}

/* =========================================================
   RPL ABOUT SECTION
========================================================= */
.rpl-about-section {
    position: relative;
    overflow: hidden;
    padding: 22px 0 26px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.rpl-about-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfdff 54%, #f4f9ff 100%);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.rpl-about-intro {
    min-height: 555px;
    padding: 48px 52px 0;
    margin-bottom: 18px;
}

.rpl-about-content {
    position: relative;
    z-index: 5;
    padding-bottom: 52px;
}

.rpl-section-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 9px 24px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(8, 98, 244, 0.12), rgba(8, 98, 244, 0.05));
    color: var(--rpl-blue-bright);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    animation: rplBadgeFloat 3.8s ease-in-out infinite;
}

.rpl-section-badge i {
    font-size: 23px;
}

.rpl-about-content h2 {
    margin: 0 0 20px;
    color: var(--rpl-blue-dark);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -1px;
}

.rpl-about-content > p {
    max-width: 610px;
    margin: 0 0 30px;
    color: #25365f;
    font-size: 18px;
    line-height: 1.65;
}

.rpl-about-highlight {
    max-width: 590px;
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 22px;
    padding: 20px 26px 20px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 100%);
    box-shadow: inset 0 0 0 1px rgba(8, 98, 244, 0.04);
    transition: all 0.35s ease;
}

.rpl-about-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(31, 59, 93, 0.10);
}

.rpl-about-highlight-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-white);
    color: var(--rpl-blue-bright);
    font-size: 39px;
    box-shadow: 0 12px 26px rgba(31, 59, 93, 0.10);
}

.rpl-about-highlight p {
    margin: 0;
    color: #25365f;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
}

.rpl-about-highlight strong {
    color: var(--rpl-blue-bright);
    font-weight: 900;
}

.rpl-about-visual {
    position: relative;
    min-height: 506px;
}

.rpl-about-circle {
    position: absolute;
    right: 88px;
    bottom: -30px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 98, 244, 0.08), rgba(8, 98, 244, 0.035));
}

.rpl-about-circle::before,
.rpl-about-circle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(8, 98, 244, 0.28);
}

.rpl-about-circle::before {
    width: 360px;
    height: 360px;
    left: 55px;
    top: 78px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: rplRotateSoft 12s linear infinite;
}

.rpl-about-circle::after {
    width: 300px;
    height: 300px;
    right: 22px;
    bottom: 48px;
    border-left-color: transparent;
    border-top-color: transparent;
    animation: rplRotateSoftReverse 13s linear infinite;
}

.rpl-about-img {
    position: absolute;
    right: 190px;
    bottom: 0;
    z-index: 3;
    max-height: 100%;
    max-width: 430px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 38px rgba(31, 59, 93, 0.16));
    transition: transform 0.45s ease;
}

.rpl-about-visual:hover .rpl-about-img {
    transform: translateY(-6px) scale(1.018);
}

.rpl-floating-card {
    position: absolute;
    z-index: 4;
    display: grid;
    grid-template-columns: 66px 1fr 32px;
    align-items: center;
    gap: 16px;
    min-width: 250px;
    min-height: 96px;
    padding: 18px 18px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(31, 59, 93, 0.13);
    animation: rplFloatCard 4s ease-in-out infinite;
}

.rpl-card-work {
    top: 46px;
    right: 0;
}

.rpl-card-training {
    left: 20px;
    top: 245px;
    animation-delay: 0.7s;
}

.rpl-floating-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--rpl-blue-bright);
    font-size: 29px;
}

.rpl-floating-card h4 {
    margin: 0 0 10px;
    color: var(--rpl-blue-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.rpl-floating-card span {
    display: block;
    height: 7px;
    margin-top: 9px;
    border-radius: 999px;
    background: #cbd6e7;
}

.rpl-floating-card span:first-of-type {
    width: 115px;
}

.rpl-floating-card span:last-of-type {
    width: 74px;
}

.rpl-floating-check {
    width: 34px;
    height: 34px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(8, 98, 244, 0.24);
}

.rpl-percent-card {
    position: absolute;
    z-index: 99;
    right: 0;
    bottom: 116px;
    width: 190px;
    min-height: 230px;
    padding: 24px 22px 20px;
    border: 1.5px solid var(--color2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(31, 59, 93, 0.10);
    animation: rplFloatCard 4.4s ease-in-out infinite;
}

.rpl-percent-card h4 {
    margin: 0 0 8px;
    color: var(--rpl-blue-dark);
    font-size: 14px;
    font-weight: 900;
}

.rpl-percent-card strong {
    display: block;
    color: var(--rpl-blue-bright);
    font-size: 67px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
}

.rpl-percent-card span {
    display: block;
    margin-top: 6px;
    color: var(--rpl-blue-bright);
    font-size: 28px;
    font-weight: 900;
}

.rpl-percent-card p {
    margin: 14px 0 0;
    color: #25365f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.rpl-grad-circle {
    position: absolute;
    z-index: 6;
    right: 154px;
    bottom: 104px;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color2);
    color: var(--rpl-blue-dark);
    font-size: 42px;
    box-shadow: 0 18px 35px rgba(251, 212, 5, 0.25);
    animation: rplIconPulse 3s ease-in-out infinite;
}

/* =========================================================
   RPL BENEFIT SECTION
========================================================= */
.rpl-benefit-card {
    padding: 30px 40px 34px;
}

.rpl-benefit-header {
    margin-bottom: 30px;
    text-align: center;
}

.rpl-benefit-header .rpl-section-badge {
    margin-bottom: 12px;
}

.rpl-benefit-header .rpl-section-badge i {
    color: var(--color2);
}

.rpl-benefit-header h2 {
    margin: 0;
    color: var(--rpl-blue-dark);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.6px;
}

.rpl-benefit-header h2 span {
    color: var(--rpl-blue-bright);
}

.rpl-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.rpl-benefit-item {
    position: relative;
    min-height: 218px;
    padding: 12px 34px 4px;
    text-align: center;
    border-right: 1px solid rgba(8, 98, 244, 0.16);
    transition: all 0.35s ease;
}

.rpl-benefit-item:last-child {
    border-right: 0;
}

.rpl-benefit-item:hover {
    transform: translateY(-8px);
}

.rpl-benefit-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--rpl-blue-bright);
    font-size: 37px;
    transition: all 0.35s ease;
}

.rpl-benefit-item:hover .rpl-benefit-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 16px 34px rgba(8, 98, 244, 0.16);
}

.rpl-benefit-item h3 {
    margin: 0 0 18px;
    color: var(--rpl-blue-bright);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.28;
}

.rpl-benefit-item p {
    max-width: 245px;
    margin: 0 auto;
    color: #25365f;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.rpl-benefit-line {
    width: 42px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: var(--rpl-blue-bright);
    transition: width 0.35s ease;
}

.rpl-benefit-item:hover .rpl-benefit-line {
    width: 70px;
}

/* =========================================================
   RPL ABOUT ANIMATION
========================================================= */
@keyframes rplFloatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes rplIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 18px 35px rgba(251, 212, 5, 0.25);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 22px 45px rgba(251, 212, 5, 0.36);
    }
}

@keyframes rplRotateSoft {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rplRotateSoftReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* =========================================================
   RPL ABOUT RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .rpl-about-intro {
        padding: 44px 42px 0;
    }

    .rpl-about-content h2 {
        font-size: 40px;
    }

    .rpl-about-img {
        right: 170px;
        max-width: 390px;
    }

    .rpl-about-circle {
        right: 70px;
        width: 480px;
        height: 480px;
    }

    .rpl-benefit-item {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 1199.98px) {
    .rpl-about-content h2 {
        font-size: 35px;
    }

    .rpl-about-content > p {
        font-size: 16px;
    }

    .rpl-about-highlight {
        grid-template-columns: 66px 1fr;
        gap: 18px;
    }

    .rpl-about-highlight-icon {
        width: 66px;
        height: 66px;
        font-size: 33px;
    }

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

    .rpl-about-img {
        right: 140px;
        max-width: 350px;
    }

    .rpl-about-circle {
        right: 45px;
        width: 430px;
        height: 430px;
    }

    .rpl-floating-card {
        min-width: 220px;
        grid-template-columns: 56px 1fr 30px;
    }

    .rpl-percent-card {
        width: 165px;
    }

    .rpl-grad-circle {
        right: 126px;
    }

    .rpl-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 0;
    }

    .rpl-benefit-item:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 991.98px) {
    .rpl-about-intro {
        padding: 38px 26px 0;
    }

    .rpl-about-content {
        text-align: center;
        padding-bottom: 28px;
    }

    .rpl-section-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .rpl-about-content > p {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .rpl-about-highlight {
        max-width: 650px;
        margin: 0 auto;
        text-align: left;
    }

    .rpl-about-visual {
        min-height: 520px;
    }

    .rpl-about-circle {
        left: 50%;
        right: auto;
        bottom: -30px;
        transform: translateX(-50%);
    }

    .rpl-about-img {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .rpl-about-visual:hover .rpl-about-img {
        transform: translateX(-50%) translateY(-6px) scale(1.018);
    }

    .rpl-card-work {
        right: 32px;
    }

    .rpl-card-training {
        left: 24px;
    }

    .rpl-percent-card {
        right: 22px;
    }

    .rpl-grad-circle {
        right: 156px;
    }

    .rpl-benefit-card {
        padding: 30px 26px;
    }

    .rpl-benefit-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .rpl-about-section {
        padding: 16px 0 22px;
    }

    .rpl-about-card {
        border-radius: 16px;
    }

    .rpl-about-intro {
        padding: 30px 18px 0;
    }

    .rpl-section-badge {
        min-height: 38px;
        padding: 8px 18px;
        font-size: 14px;
    }

    .rpl-section-badge i {
        font-size: 18px;
    }

    .rpl-about-content h2 {
        font-size: 29px;
        line-height: 1.22;
    }

    .rpl-about-content > p {
        font-size: 15px;
    }

    .rpl-about-highlight {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .rpl-about-highlight-icon {
        margin: 0 auto;
    }

    .rpl-about-visual {
        min-height: 500px;
    }

    .rpl-about-circle {
        width: 360px;
        height: 360px;
    }

    .rpl-about-img {
        max-width: 310px;
    }

    .rpl-floating-card {
        min-width: 190px;
        min-height: 80px;
        grid-template-columns: 46px 1fr 26px;
        gap: 10px;
        padding: 13px;
    }

    .rpl-floating-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .rpl-floating-card h4 {
        font-size: 12px;
    }

    .rpl-floating-card span {
        height: 5px;
    }

    .rpl-floating-check {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .rpl-card-work {
        top: 28px;
        right: 0;
    }

    .rpl-card-training {
        top: 190px;
        left: 0;
    }

    .rpl-percent-card {
        width: 145px;
        min-height: 190px;
        right: 0;
        bottom: 92px;
        padding: 18px 16px;
    }

    .rpl-percent-card strong {
        font-size: 50px;
    }

    .rpl-percent-card span {
        font-size: 22px;
    }

    .rpl-grad-circle {
        width: 70px;
        height: 70px;
        right: 122px;
        bottom: 90px;
        font-size: 32px;
    }

    .rpl-benefit-card {
        padding: 28px 18px;
    }

    .rpl-benefit-header h2 {
        font-size: 25px;
    }

    .rpl-benefit-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rpl-benefit-item,
    .rpl-benefit-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(8, 98, 244, 0.14);
        padding: 22px 14px;
    }

    .rpl-benefit-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .rpl-about-content h2 {
        font-size: 26px;
    }

    .rpl-about-visual {
        min-height: 440px;
    }

    .rpl-about-circle {
        width: 310px;
        height: 310px;
    }

    .rpl-about-img {
        max-width: 265px;
    }

    .rpl-floating-card {
        min-width: 165px;
    }

    .rpl-percent-card {
        width: 128px;
        min-height: 170px;
    }

    .rpl-percent-card strong {
        font-size: 42px;
    }

    .rpl-percent-card h4,
    .rpl-percent-card p {
        font-size: 12px;
    }

    .rpl-grad-circle {
        width: 62px;
        height: 62px;
        right: 104px;
        font-size: 28px;
    }
}

/* =========================================================
   RPL REGISTER SECTION
========================================================= */
.rpl-register-section {
    position: relative;
    overflow: hidden;
    padding: 18px 0 24px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.rpl-register-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfdff 54%, #f5f9ff 100%);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.rpl-flow-card {
    padding: 26px 50px 30px;
    margin-bottom: 18px;
}

.rpl-requirement-card {
    padding: 28px 70px 28px;
}

.rpl-register-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.rpl-register-badge {
    width: fit-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 24px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(8, 98, 244, 0.12), rgba(8, 98, 244, 0.05));
    color: var(--rpl-blue-bright);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    animation: rplBadgeFloat 3.8s ease-in-out infinite;
}

.rpl-register-badge i {
    font-size: 21px;
}

.rpl-register-header h2 {
    margin: 0;
    color: var(--rpl-blue-dark);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.rpl-register-header p {
    margin: 12px 0 0;
    color: #475a84;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

/* Flow */
.rpl-flow-list {
    display: grid;
    grid-template-columns: 1fr 92px 1fr 92px 1fr 92px 1fr;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.rpl-flow-item {
    position: relative;
    text-align: center;
    transition: all 0.35s ease;
}

.rpl-flow-item:hover {
    transform: translateY(-8px);
}

.rpl-flow-number {
    position: absolute;
    top: -3px;
    left: 22px;
    z-index: 4;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(8, 98, 244, 0.26);
    animation: rplNumberPulse 2.8s ease-in-out infinite;
}

.rpl-flow-icon {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 8px auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--rpl-blue-bright);
    font-size: 64px;
    transition: all 0.4s ease;
}

.rpl-flow-icon::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.56);
}

.rpl-flow-icon > i {
    position: relative;
    z-index: 2;
}

.rpl-flow-item:hover .rpl-flow-icon {
    transform: scale(1.06);
    box-shadow: 0 18px 38px rgba(8, 98, 244, 0.14);
}

.rpl-flow-icon-yellow {
    color: #f6b900;
}

.rpl-flow-icon span {
    position: absolute;
    right: 8px;
    bottom: 18px;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 24px;
    box-shadow: 0 10px 22px rgba(8, 98, 244, 0.24);
}

.rpl-flow-check-green {
    background: #13aa8a !important;
}

.rpl-flow-item h3 {
    margin: 0 0 12px;
    color: var(--rpl-blue-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
}

.rpl-flow-item p {
    max-width: 260px;
    margin: 0 auto;
    color: #475a84;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.55;
}

.rpl-flow-arrow {
    position: relative;
    height: 2px;
    margin-top: 84px;
    border-top: 2px dashed rgba(8, 98, 244, 0.45);
    color: var(--rpl-blue-bright);
    animation: rplArrowFade 2.4s ease-in-out infinite;
}

.rpl-flow-arrow i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    animation: rplArrowMove 1.8s ease-in-out infinite;
}

.rpl-flow-info {
    max-width: 900px;
    min-height: 50px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 16px;
    margin: 34px auto 0;
    padding: 12px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 100%);
}

.rpl-flow-info i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 17px;
}

.rpl-flow-info p {
    margin: 0;
    color: #25365f;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Requirement */
.rpl-requirement-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    align-items: center;
    gap: 28px;
    margin-top: 8px;
}

.rpl-requirement-box {
    min-height: 156px;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 28px;
    padding: 20px 34px;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.rpl-requirement-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 42px rgba(31, 59, 93, 0.12);
}

.rpl-req-blue {
    background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 100%);
}

.rpl-req-green {
    background: linear-gradient(135deg, #eaf9f2 0%, #f8fffb 100%);
}

.rpl-requirement-icon {
    position: relative;
    width: 118px;
    height: 118px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-white);
    color: var(--rpl-blue-bright);
    font-size: 58px;
    box-shadow: 0 14px 32px rgba(31, 59, 93, 0.10);
    transition: all 0.35s ease;
}

.rpl-req-green .rpl-requirement-icon {
    color: #13aa8a;
}

.rpl-requirement-box:hover .rpl-requirement-icon {
    transform: scale(1.06) rotate(-4deg);
}

.rpl-requirement-icon span {
    position: absolute;
    right: 4px;
    bottom: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 22px;
}

.rpl-requirement-content h3 {
    margin: 0 0 12px;
    color: var(--rpl-blue-bright);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.25;
}

.rpl-req-green .rpl-requirement-content h3 {
    color: #13aa8a;
}

.rpl-requirement-content p {
    margin: 0;
    color: #25365f;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.rpl-requirement-content strong {
    color: var(--rpl-blue-bright);
    font-weight: 900;
}

.rpl-req-green .rpl-requirement-content strong {
    color: #13aa8a;
}

.rpl-requirement-plus {
    position: relative;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-white);
    color: var(--rpl-blue-bright);
    font-size: 22px;
    box-shadow: 0 10px 26px rgba(31, 59, 93, 0.14);
}

.rpl-requirement-plus::before,
.rpl-requirement-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 78px;
    background: rgba(8, 98, 244, 0.16);
    transform: translateX(-50%);
}

.rpl-requirement-plus::before {
    bottom: 100%;
}

.rpl-requirement-plus::after {
    top: 100%;
}

.rpl-requirement-note {
    max-width: 1130px;
    min-height: 52px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 16px;
    margin: 28px auto 0;
    padding: 12px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8e2 0%, #fffdf4 100%);
}

.rpl-requirement-note i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color2);
    color: var(--rpl-white);
    font-size: 16px;
}

.rpl-requirement-note p {
    margin: 0;
    color: #3f3f4f;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.4;
}

.rpl-requirement-note strong {
    font-weight: 900;
}

/* Animation */
@keyframes rplNumberPulse {
    0%, 100% {
        box-shadow: 0 12px 24px rgba(8, 98, 244, 0.26);
    }

    50% {
        box-shadow: 0 12px 32px rgba(8, 98, 244, 0.48);
    }
}

@keyframes rplArrowMove {
    0%, 100% {
        transform: translate(-58%, -50%);
    }

    50% {
        transform: translate(-40%, -50%);
    }
}

@keyframes rplArrowFade {
    0%, 100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1399.98px) {
    .rpl-flow-card {
        padding: 26px 38px 30px;
    }

    .rpl-flow-list {
        grid-template-columns: 1fr 72px 1fr 72px 1fr 72px 1fr;
    }

    .rpl-requirement-card {
        padding-left: 52px;
        padding-right: 52px;
    }
}

@media (max-width: 1199.98px) {
    .rpl-flow-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }

    .rpl-flow-arrow {
        display: none;
    }

    .rpl-requirement-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rpl-requirement-plus {
        transform: rotate(90deg);
    }

    .rpl-requirement-plus::before,
    .rpl-requirement-plus::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .rpl-flow-card,
    .rpl-requirement-card {
        padding: 28px 24px;
    }

    .rpl-register-header h2 {
        font-size: 34px;
    }

    .rpl-register-header p {
        font-size: 16px;
    }

    .rpl-flow-number {
        left: 30%;
    }

    .rpl-requirement-box {
        grid-template-columns: 120px 1fr;
        gap: 22px;
    }
}

@media (max-width: 767.98px) {
    .rpl-register-section {
        padding: 16px 0 22px;
    }

    .rpl-register-card {
        border-radius: 16px;
    }

    .rpl-flow-card,
    .rpl-requirement-card {
        padding: 26px 18px;
    }

    .rpl-register-badge {
        min-height: 38px;
        padding: 8px 18px;
        font-size: 14px;
    }

    .rpl-register-header h2 {
        font-size: 28px;
    }

    .rpl-flow-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rpl-flow-number {
        left: calc(50% - 86px);
    }

    .rpl-flow-icon {
        width: 138px;
        height: 138px;
        font-size: 56px;
    }

    .rpl-flow-info,
    .rpl-requirement-note {
        border-radius: 14px;
        align-items: flex-start;
        padding: 14px 18px;
    }

    .rpl-requirement-box {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 20px;
        text-align: center;
    }

    .rpl-requirement-content h3 {
        font-size: 21px;
    }

    .rpl-requirement-content p {
        font-size: 15.5px;
    }
}

@media (max-width: 575.98px) {
    .rpl-register-header h2 {
        font-size: 25px;
    }

    .rpl-flow-icon {
        width: 126px;
        height: 126px;
        font-size: 50px;
    }

    .rpl-flow-number {
        left: calc(50% - 78px);
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .rpl-requirement-icon {
        width: 102px;
        height: 102px;
        font-size: 48px;
    }
}

/* =========================================================
   RPL ADVANTAGE SECTION
========================================================= */
.rpl-advantage-section {
    position: relative;
    overflow: hidden;
    padding: 18px 0 24px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.rpl-adv-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfdff 54%, #f5f9ff 100%);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.rpl-target-card {
    padding: 42px 56px 34px;
    margin-bottom: 18px;
}

.rpl-adv-badge {
    width: fit-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(8, 98, 244, 0.12), rgba(8, 98, 244, 0.05));
    color: var(--rpl-blue-bright);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    animation: rplBadgeFloat 3.8s ease-in-out infinite;
}

.rpl-adv-badge i {
    font-size: 20px;
}

.rpl-target-content h2,
.rpl-simulation-content h2 {
    margin: 0;
    color: var(--rpl-blue-dark);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.8px;
}

.rpl-target-content h2 span,
.rpl-simulation-content h2 span {
    color: var(--rpl-blue-bright);
}

.rpl-target-content > p,
.rpl-simulation-content > p {
    margin: 20px 0 22px;
    color: #25365f;
    font-size: 18px;
    line-height: 1.55;
}

.rpl-target-highlight,
.rpl-simulation-highlight {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 100%);
    transition: all 0.35s ease;
}

.rpl-target-highlight:hover,
.rpl-simulation-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(31, 59, 93, 0.10);
}

.rpl-target-highlight-icon,
.rpl-simulation-highlight-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 28px;
    box-shadow: 0 12px 26px rgba(8, 98, 244, 0.20);
}

.rpl-simulation-highlight {
    background: linear-gradient(135deg, #fff6d8 0%, #fffdf5 100%);
}

.rpl-simulation-highlight-icon {
    background: var(--color2);
    color: var(--rpl-white);
}

.rpl-target-highlight p,
.rpl-simulation-highlight p {
    margin: 0;
    color: var(--rpl-blue-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.rpl-target-highlight strong,
.rpl-simulation-highlight strong {
    color: var(--rpl-blue-bright);
    font-weight: 900;
}

/* Target Cards */
.rpl-target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.rpl-target-item {
    position: relative;
    min-height: 385px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--rpl-white);
    box-shadow: 0 18px 42px rgba(31, 59, 93, 0.10);
    transition: all 0.35s ease;
}

.rpl-target-item:hover {
    transform: translateY(-9px);
    box-shadow: 0 28px 58px rgba(31, 59, 93, 0.15);
}

.rpl-target-img {
    width: 100%;
    height: 205px;
    overflow: hidden;
}

.rpl-target-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.rpl-target-item:hover .rpl-target-img img {
    transform: scale(1.06);
}

.rpl-target-icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin: -29px 0 16px 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rpl-white);
    font-size: 27px;
    box-shadow: 0 12px 26px rgba(31, 59, 93, 0.18);
    transition: all 0.35s ease;
}

.rpl-target-item:hover .rpl-target-icon {
    transform: scale(1.08) rotate(-4deg);
}

.rpl-target-blue {
    background: var(--rpl-blue-bright);
}

.rpl-target-yellow {
    background: var(--color2);
    color: var(--rpl-blue-dark);
}

.rpl-target-green {
    background: #13aa8a;
}

.rpl-target-item h3 {
    margin: 0 22px 14px;
    color: var(--rpl-blue-dark);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
}

.rpl-target-line {
    width: 30px;
    height: 3px;
    margin: 0 22px 20px;
    border-radius: 999px;
    background: var(--rpl-blue-bright);
    transition: width 0.35s ease;
}

.rpl-target-item:nth-child(2) .rpl-target-line {
    background: var(--color2);
}

.rpl-target-item:nth-child(3) .rpl-target-line {
    background: #13aa8a;
}

.rpl-target-item:hover .rpl-target-line {
    width: 56px;
}

.rpl-target-item p {
    margin: 0 22px 26px;
    color: #25365f;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.6;
}

/* Simulation */
.rpl-simulation-card {
    padding: 42px 56px 28px;
}

.rpl-simulation-content h2 {
    font-size: 37px;
}

.rpl-comparison-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.rpl-comparison-box {
    position: relative;
    min-height: 300px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    padding: 28px 26px 22px;
    border: 1px solid rgba(8, 98, 244, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    transition: all 0.35s ease;
}

.rpl-comparison-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 48px rgba(31, 59, 93, 0.12);
}

.rpl-comparison-label {
    position: absolute;
    top: 24px;
    left: 26px;
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    padding: 7px 18px;
    border-radius: 10px;
    background: #e3eaf3;
    color: var(--rpl-blue-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.rpl-label-blue {
    background: #e9f2ff;
    color: var(--rpl-blue-bright);
}

.rpl-comparison-main {
    padding-top: 72px;
}

.rpl-comparison-main h3 {
    margin: 0 0 8px;
    color: var(--rpl-blue-dark);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
}

.rpl-rpl-box .rpl-comparison-main h3 {
    color: var(--rpl-blue-bright);
}

.rpl-comparison-main p {
    margin: 0 0 18px;
    color: #697796;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.rpl-sks-pill {
    width: fit-content;
    padding: 9px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #edf3fb;
    color: var(--rpl-blue-dark);
    font-size: 15px;
    font-weight: 900;
}

.rpl-sks-yellow {
    background: #fff3c7;
    color: #3d3523;
}

.rpl-comparison-main small {
    display: block;
    color: #25365f;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.rpl-semester-list {
    padding-top: 62px;
}

.rpl-semester-list div {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}

.rpl-semester-list span {
    color: var(--rpl-blue-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.rpl-semester-list b {
    height: 13px;
    border-radius: 999px;
    background: #d5deeb;
}

.rpl-semester-rpl b {
    background: transparent;
    border: 1px dashed rgba(8, 98, 244, 0.28);
}

.rpl-semester-rpl div:nth-child(1) b,
.rpl-semester-rpl div:nth-child(2) b,
.rpl-semester-rpl div:nth-child(3) b {
    background: var(--rpl-blue-bright);
    border-color: var(--rpl-blue-bright);
}

.rpl-semester-rpl div:nth-child(4) b {
    background: linear-gradient(to right, var(--rpl-blue-bright) 70%, transparent 70%);
    border-color: rgba(8, 98, 244, 0.28);
}

.rpl-comparison-note {
    grid-column: 1 / -1;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 18px;
    border-radius: 10px;
    color: #25365f;
    font-size: 16px;
    font-weight: 700;
}

.rpl-note-blue {
    background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 100%);
}

.rpl-note-yellow {
    background: linear-gradient(135deg, #fff4cd 0%, #fffdf4 100%);
    font-weight: 900;
}

.rpl-note-blue i {
    color: var(--rpl-blue-bright);
    font-size: 24px;
}

.rpl-note-yellow i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color2);
    color: var(--rpl-blue-dark);
    font-size: 13px;
}

.rpl-vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 6;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(8, 98, 244, 0.28);
    animation: rplVsPulse 2.8s ease-in-out infinite;
}

.rpl-simulation-info {
    max-width: 1240px;
    min-height: 48px;
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 14px;
    margin: 26px auto 0;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 100%);
}

.rpl-simulation-info i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 16px;
}

.rpl-simulation-info p {
    margin: 0;
    color: #25365f;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.4;
}

/* Animation */
@keyframes rplVsPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 16px 34px rgba(8, 98, 244, 0.28);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.07);
        box-shadow: 0 20px 44px rgba(8, 98, 244, 0.42);
    }
}

/* Responsive */
@media (max-width: 1399.98px) {
    .rpl-target-card,
    .rpl-simulation-card {
        padding-left: 42px;
        padding-right: 42px;
    }

    .rpl-target-grid {
        gap: 24px;
    }

    .rpl-comparison-box {
        gap: 16px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .rpl-comparison-main h3 {
        font-size: 23px;
    }
}

@media (max-width: 1199.98px) {
    .rpl-target-content h2,
    .rpl-simulation-content h2 {
        font-size: 32px;
    }

    .rpl-target-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .rpl-target-img {
        height: 175px;
    }

    .rpl-target-item h3 {
        font-size: 20px;
    }

    .rpl-comparison-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rpl-vs-badge {
        position: relative;
        top: auto;
        left: auto;
        margin: -4px auto;
        transform: none;
    }

    .rpl-comparison-box {
        min-height: auto;
    }

    @keyframes rplVsPulse {
        0%, 100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.07);
        }
    }
}

@media (max-width: 991.98px) {
    .rpl-target-card,
    .rpl-simulation-card {
        padding: 34px 26px 26px;
    }

    .rpl-target-content,
    .rpl-simulation-content {
        text-align: center;
    }

    .rpl-adv-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .rpl-target-highlight,
    .rpl-simulation-highlight {
        max-width: 560px;
        margin: 0 auto;
        text-align: left;
    }

    .rpl-target-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rpl-target-item {
        min-height: auto;
    }

    .rpl-target-img {
        height: 240px;
    }

    .rpl-comparison-box {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .rpl-advantage-section {
        padding: 16px 0 22px;
    }

    .rpl-adv-card {
        border-radius: 16px;
    }

    .rpl-target-card,
    .rpl-simulation-card {
        padding: 28px 18px 22px;
    }

    .rpl-adv-badge {
        min-height: 38px;
        padding: 8px 18px;
        font-size: 14px;
    }

    .rpl-target-content h2,
    .rpl-simulation-content h2 {
        font-size: 28px;
    }

    .rpl-target-content > p,
    .rpl-simulation-content > p {
        font-size: 15.5px;
    }

    .rpl-target-highlight,
    .rpl-simulation-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rpl-target-highlight-icon,
    .rpl-simulation-highlight-icon {
        margin: 0 auto;
    }

    .rpl-target-img {
        height: 210px;
    }

    .rpl-comparison-box {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .rpl-comparison-main {
        padding-top: 64px;
        text-align: center;
    }

    .rpl-sks-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .rpl-semester-list {
        padding-top: 8px;
    }

    .rpl-comparison-note {
        font-size: 14px;
    }

    .rpl-simulation-info {
        border-radius: 14px;
        align-items: flex-start;
        padding: 14px 18px;
    }
}

@media (max-width: 575.98px) {
    .rpl-target-content h2,
    .rpl-simulation-content h2 {
        font-size: 25px;
    }

    .rpl-target-img {
        height: 185px;
    }

    .rpl-target-item h3 {
        font-size: 19px;
    }

    .rpl-comparison-label {
        left: 18px;
    }

    .rpl-comparison-box {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rpl-comparison-main h3 {
        font-size: 22px;
    }

    .rpl-comparison-main p {
        font-size: 17px;
    }
}

/* =========================================================
   RPL CTA SECTION
========================================================= */
.rpl-cta-section {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.rpl-cta-box {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 48px 48px 24px;
    border-radius: 24px;
    background: linear-gradient(120deg, #06124d 0%, #082475 38%, #0754e6 74%, #06124d 100%);
    color: var(--rpl-white);
    box-shadow: 0 26px 60px rgba(31, 59, 93, 0.18);
}

.rpl-cta-box::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 2px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    pointer-events: none;
}

.rpl-cta-box::after {
    content: "";
    position: absolute;
    right: 56px;
    top: 68px;
    width: 92px;
    height: 92px;
    opacity: 0.28;
    background-image: radial-gradient(rgba(255, 255, 255, 0.72) 2px, transparent 2px);
    background-size: 18px 18px;
}

.rpl-cta-content {
    position: relative;
    z-index: 6;
    padding: 24px 0 120px;
}

.rpl-cta-badge {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px 8px 18px;
    margin-bottom: 34px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(8, 98, 244, 0.28);
    color: var(--rpl-white);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    animation: rplCtaBadgeFloat 3.8s ease-in-out infinite;
}

.rpl-cta-badge i {
    font-size: 21px;
}

.rpl-cta-badge strong {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--color2);
    color: var(--rpl-blue-dark);
    font-size: 15px;
    font-weight: 900;
}

.rpl-cta-content h2 {
    max-width: 690px;
    margin: 0;
    color: var(--rpl-white);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -1.2px;
}

.rpl-cta-content h2 span {
    color: var(--color2);
}

.rpl-cta-content > p {
    max-width: 610px;
    margin: 26px 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
}

.rpl-cta-content > p strong {
    color: var(--color2);
    font-weight: 900;
}

.rpl-cta-feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 690px;
    margin-bottom: 34px;
}

.rpl-cta-feature {
    position: relative;
    padding: 0 18px;
    text-align: center;
}

.rpl-cta-feature:first-child {
    padding-left: 0;
}

.rpl-cta-feature:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.rpl-cta-feature div {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(8, 98, 244, 0.78);
    color: var(--rpl-white);
    font-size: 29px;
    transition: all 0.35s ease;
}

.rpl-cta-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
}

.rpl-cta-feature:hover div {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 18px 34px rgba(8, 98, 244, 0.32);
}

.rpl-cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
}

.rpl-cta-btn {
    min-width: 300px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 11px;
    font-size: 21px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.rpl-cta-btn-primary {
    background: var(--color2);
    color: var(--rpl-blue-dark);
    box-shadow: 0 18px 38px rgba(251, 212, 5, 0.28);
}

.rpl-cta-btn-outline {
    color: var(--rpl-white);
    border: 2px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.035);
}

.rpl-cta-btn i {
    font-size: 25px;
    transition: transform 0.35s ease;
}

.rpl-cta-btn:hover {
    transform: translateY(-6px);
    text-decoration: none;
}

.rpl-cta-btn:hover i {
    transform: translateX(4px);
}

.rpl-cta-btn-primary:hover {
    color: var(--rpl-blue-dark);
    background: #ffe04a;
    box-shadow: 0 24px 48px rgba(251, 212, 5, 0.38);
}

.rpl-cta-btn-outline:hover {
    color: var(--rpl-white);
    border-color: var(--rpl-white);
    background: rgba(255, 255, 255, 0.12);
}

.rpl-cta-help {
    max-width: 620px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
}

.rpl-cta-help i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.80);
    border-radius: 50%;
    font-size: 15px;
}

.rpl-cta-visual {
    position: relative;
    z-index: 4;
    height: 100%;
    min-height: 600px;
}

.rpl-cta-img {
    position: absolute;
    right: -44px;
    bottom: 0;
    max-height: 100%;
    max-width: 720px;
    width: auto;
    object-fit: contain;
    transform-origin: bottom right;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.30));
    transition: transform 0.45s ease;
}

.rpl-cta-visual:hover .rpl-cta-img {
    transform: translateY(-6px) scale(1.018);
}

.rpl-cta-program-card {
    position: absolute;
    right: 0;
    bottom: 96px;
    z-index: 7;
    width: min(430px, calc(100% - 24px));
    min-height: 118px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 12px;
    background: var(--rpl-white);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.20);
    animation: rplCtaFloatCard 4s ease-in-out infinite;
}

.rpl-cta-program-card > div:last-child {
    min-width: 0;
}

.rpl-cta-program-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rpl-blue-bright);
    color: var(--rpl-white);
    font-size: 31px;
}

.rpl-cta-program-card p {
    margin: 0 0 4px;
    color: var(--rpl-blue-dark);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.rpl-cta-program-card h3 {
    max-width: 100%;
    margin: 0 0 8px;
    color: var(--rpl-blue-bright);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.18;
    white-space: normal;
    word-break: normal;
}

.rpl-cta-program-card span {
    width: fit-content;
    max-width: 100%;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--color2);
    color: var(--rpl-blue-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
}

.rpl-cta-contact-bar {
    position: relative;
    z-index: 8;
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1.35fr;
    align-items: center;
    gap: 34px;
    padding: 18px 62px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: rgba(6, 44, 140, 0.66);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.rpl-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rpl-cta-contact-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(8, 98, 244, 0.92);
    color: var(--rpl-white);
    font-size: 27px;
    transition: all 0.35s ease;
}

.rpl-cta-contact-item:hover .rpl-cta-contact-icon {
    transform: scale(1.08) rotate(-4deg);
}

.rpl-cta-wa {
    background: #19c46b;
}

.rpl-cta-contact-item p {
    margin: 0 0 4px;
    color: var(--rpl-white);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}

.rpl-cta-contact-item strong {
    display: block;
    color: var(--color2);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.rpl-cta-contact-divider {
    width: 1px;
    height: 58px;
    background: rgba(255, 255, 255, 0.25);
}

/* =========================================================
   RPL CTA ANIMATION
========================================================= */
.rpl-cta-fade-up,
.rpl-cta-section .fade-up {
    opacity: 0;
    animation: rplCtaFadeUp 0.85s ease forwards;
}

.rpl-cta-section .delay-1 {
    animation-delay: 0.18s;
}

.rpl-cta-section .delay-2 {
    animation-delay: 0.34s;
}

.rpl-cta-section .delay-3 {
    animation-delay: 0.48s;
}

@keyframes rplCtaFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rplCtaBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes rplCtaFloatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =========================================================
   RPL CTA RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .rpl-cta-box {
        padding: 44px 42px 22px;
    }

    .rpl-cta-content h2 {
        font-size: 42px;
    }

    .rpl-cta-content > p {
        font-size: 20px;
    }

    .rpl-cta-btn {
        min-width: 260px;
        height: 68px;
        font-size: 18px;
    }

    .rpl-cta-img {
        max-width: 650px;
        right: -64px;
    }

    .rpl-cta-program-card {
        width: min(410px, calc(100% - 20px));
    }
}

@media (max-width: 1199.98px) {
    .rpl-cta-content h2 {
        font-size: 36px;
    }

    .rpl-cta-feature-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .rpl-cta-feature:nth-child(2) {
        border-right: 0;
    }

    .rpl-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .rpl-cta-btn {
        width: 100%;
        max-width: 360px;
    }

    .rpl-cta-img {
        max-width: 570px;
        right: -80px;
    }

    .rpl-cta-program-card {
        width: min(360px, calc(100% - 20px));
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .rpl-cta-contact-bar {
        padding: 18px 34px;
        gap: 24px;
    }
}

@media (max-width: 991.98px) {
    .rpl-cta-box {
        min-height: auto;
        padding: 38px 26px 24px;
    }

    .rpl-cta-content {
        padding: 0 0 32px;
        text-align: center;
    }

    .rpl-cta-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .rpl-cta-content h2,
    .rpl-cta-content > p,
    .rpl-cta-feature-list,
    .rpl-cta-help {
        margin-left: auto;
        margin-right: auto;
    }

    .rpl-cta-buttons {
        align-items: center;
    }

    .rpl-cta-visual {
        min-height: 520px;
        height: 520px;
    }

    .rpl-cta-img {
        left: 50%;
        right: auto;
        bottom: 0;
        max-height: 100%;
        max-width: 610px;
        transform: translateX(-50%);
        transform-origin: bottom center;
    }

    .rpl-cta-visual:hover .rpl-cta-img {
        transform: translateX(-50%) translateY(-5px) scale(1.018);
    }

    .rpl-cta-program-card {
        left: 50%;
        right: auto;
        bottom: 34px;
        width: calc(100% - 36px);
        max-width: 430px;
        min-height: auto;
        grid-template-columns: 64px minmax(0, 1fr);
        transform: translateX(-50%);
    }

    .rpl-cta-contact-bar {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }

    .rpl-cta-contact-divider {
        width: 100%;
        height: 1px;
    }

    @keyframes rplCtaFloatCard {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-8px);
        }
    }
}

@media (max-width: 767.98px) {
    .rpl-cta-section {
        padding: 18px 0;
    }

    .rpl-cta-box {
        border-radius: 18px;
        padding: 32px 18px 20px;
    }

    .rpl-cta-box::before {
        inset: 14px;
        border-radius: 14px;
    }

    .rpl-cta-box::after {
        right: 24px;
        top: 40px;
        width: 70px;
        height: 70px;
        background-size: 14px 14px;
    }

    .rpl-cta-badge {
        gap: 9px;
        padding: 8px 10px 8px 12px;
        font-size: 11.5px;
    }

    .rpl-cta-badge strong {
        font-size: 11.5px;
    }

    .rpl-cta-content h2 {
        font-size: 30px;
    }

    .rpl-cta-content > p {
        font-size: 16px;
    }

    .rpl-cta-feature-list {
        grid-template-columns: 1fr 1fr;
        gap: 20px 0;
    }

    .rpl-cta-feature {
        padding: 0 12px;
    }

    .rpl-cta-feature div {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .rpl-cta-feature p {
        font-size: 13px;
    }

    .rpl-cta-buttons {
        gap: 14px;
    }

    .rpl-cta-btn {
        max-width: none;
        min-width: 0;
        width: 100%;
        height: 62px;
        font-size: 16px;
    }

    .rpl-cta-help {
        text-align: left;
        font-size: 14.5px;
    }

    .rpl-cta-visual {
        min-height: 430px;
        height: 430px;
    }

    .rpl-cta-img {
        max-width: 500px;
    }

    .rpl-cta-program-card {
        bottom: 28px;
        width: calc(100% - 28px);
        max-width: 390px;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
        border-radius: 12px;
    }

    .rpl-cta-program-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .rpl-cta-program-card p {
        font-size: 12.5px;
    }

    .rpl-cta-program-card h3 {
        font-size: 17px;
        line-height: 1.2;
    }

    .rpl-cta-program-card span {
        min-height: 22px;
        padding: 4px 10px;
        font-size: 11px;
    }

    .rpl-cta-contact-item {
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .rpl-cta-content h2 {
        font-size: 26px;
    }

    .rpl-cta-feature-list {
        grid-template-columns: 1fr;
    }

    .rpl-cta-feature,
    .rpl-cta-feature:not(:last-child),
    .rpl-cta-feature:nth-child(2) {
        border-right: 0;
    }

    .rpl-cta-visual {
        min-height: 360px;
        height: 360px;
    }

    .rpl-cta-img {
        max-width: 415px;
    }

    .rpl-cta-program-card {
        bottom: 16px;
        width: calc(100% - 24px);
        max-width: 330px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .rpl-cta-program-icon {
        width: 44px;
        height: 44px;
        font-size: 21px;
    }

    .rpl-cta-program-card p {
        font-size: 11.5px;
    }

    .rpl-cta-program-card h3 {
        font-size: 15px;
    }

    .rpl-cta-program-card span {
        font-size: 10px;
    }

    .rpl-cta-contact-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 23px;
    }

    .rpl-cta-contact-item p,
    .rpl-cta-contact-item strong {
        font-size: 15px;
    }
}