:root {
    --color1: #1F3B5D;
    --color2: #FBD405;
    --color3: #061B3E;
    --color4: #ffffff;
    --color5: #256DFF;
}

/* ==============================
   SI HERO SECTION
================================= */

.si-hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 88px);
    color: var(--color4);
    background:
        radial-gradient(circle at 78% 42%, rgba(29, 89, 255, 0.86) 0%, rgba(16, 59, 172, 0.62) 28%, rgba(7, 26, 66, 0) 58%),
        linear-gradient(115deg, #06193b 0%, #09285b 44%, #0538c9 100%);
}

.si-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(2, 13, 35, 0.54) 0%,
        rgba(2, 13, 35, 0.18) 52%,
        rgba(2, 13, 35, 0) 100%
    );
}

.si-hero-container {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 88px);
    padding-left: 72px;
    padding-right: 0;
}

.si-hero-row {
    min-height: calc(100vh - 88px);
    align-items: stretch;
}

.si-hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 58px;
    padding-bottom: 58px;
}

.si-hero-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    color: var(--color2);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.si-hero-label span {
    width: 54px;
    height: 5px;
    border-radius: 50px;
    background: var(--color2);
}

.si-hero-content h1 {
    max-width: 720px;
    margin: 0;
    color: var(--color4);
    font-size: 86px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.8px;
}

.si-hero-line {
    width: 88px;
    height: 5px;
    margin: 28px 0 30px;
    border-radius: 50px;
    background: var(--color2);
}

.si-hero-content p {
    max-width: 660px;
    margin: 0 0 40px;
    color: rgba(255,255,255,0.86);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.55;
}

.si-hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.si-hero-btn {
    min-height: 64px;
    padding: 0 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: 0.35s ease;
}

.si-hero-btn-primary {
    min-width: 290px;
    background: var(--color2);
    border: 2px solid var(--color2);
    color: var(--color1);
    box-shadow: 0 18px 34px rgba(251, 212, 5, 0.28);
}

.si-hero-btn-outline {
    min-width: 290px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.48);
    color: var(--color4);
}

.si-hero-btn i {
    transition: transform 0.35s ease;
}

.si-hero-btn:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
    color: var(--color1);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.20);
}

.si-hero-btn:hover i {
    transform: translateX(7px);
}

/* Visual */
.si-hero-visual {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
}

.si-hero-glow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 760px;
    height: 640px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 60% 46%, rgba(37,109,255,0.38), transparent 52%),
        radial-gradient(circle at 70% 74%, rgba(255,255,255,0.10), transparent 52%);
    animation: siHeroGlow 4s ease-in-out infinite;
}

.si-hero-visual img {
    position: relative;
    z-index: 3;
    height: calc(100vh - 88px);
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,0.30));
}

/* Animation */
.si-hero-label,
.si-hero-content h1,
.si-hero-line,
.si-hero-content p,
.si-hero-buttons {
    animation: siHeroTextReveal 0.85s ease both;
}

.si-hero-label { animation-delay: 0.08s; }
.si-hero-content h1 { animation-delay: 0.18s; }
.si-hero-line { animation-delay: 0.30s; }
.si-hero-content p { animation-delay: 0.42s; }
.si-hero-buttons { animation-delay: 0.56s; }

@keyframes siHeroTextReveal {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.si-hero-visual img {
    animation: siHeroImageReveal 1s ease both 0.25s;
}

@keyframes siHeroImageReveal {
    from {
        opacity: 0;
        transform: translateX(70px) scale(0.98);
        filter: blur(5px) drop-shadow(0 28px 42px rgba(0,0,0,0.30));
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0) drop-shadow(0 28px 42px rgba(0,0,0,0.30));
    }
}

@keyframes siHeroGlow {
    0%, 100% {
        opacity: 0.72;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

/* Responsive */
@media (max-width: 1399.98px) {
    .si-hero-container {
        padding-left: 54px;
    }

    .si-hero-content h1 {
        font-size: 72px;
    }

    .si-hero-content p {
        font-size: 19px;
    }
}

@media (max-width: 1199.98px) {
    .si-hero-section,
    .si-hero-container,
    .si-hero-row,
    .si-hero-visual {
        min-height: calc(100vh - 80px);
    }

    .si-hero-container {
        padding-left: 36px;
        padding-right: 36px;
    }

    .si-hero-content h1 {
        font-size: 60px;
    }

    .si-hero-visual img {
        height: 560px;
    }
}

@media (max-width: 991.98px) {
    .si-hero-section,
    .si-hero-container,
    .si-hero-row {
        min-height: auto;
    }

    .si-hero-content {
        padding-top: 62px;
        padding-bottom: 20px;
    }

    .si-hero-content h1 {
        max-width: 640px;
        font-size: 50px;
    }

    .si-hero-content p {
        max-width: 620px;
        font-size: 16px;
    }

    .si-hero-btn,
    .si-hero-btn-primary,
    .si-hero-btn-outline {
        width: 100%;
        min-width: unset;
    }

    .si-hero-visual {
        min-height: 430px;
        justify-content: flex-end;
    }

    .si-hero-visual img {
        height: 430px;
        right: -36px;
    }
}

@media (max-width: 767.98px) {
    .si-hero-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .si-hero-content {
        padding-top: 48px;
    }

    .si-hero-label {
        gap: 12px;
        margin-bottom: 22px;
        font-size: 13px;
    }

    .si-hero-label span {
        width: 38px;
        height: 4px;
    }

    .si-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .si-hero-line {
        width: 72px;
        margin: 22px 0;
    }

    .si-hero-content p {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .si-hero-btn {
        min-height: 52px;
        padding: 0 16px;
        font-size: 13px;
    }

    .si-hero-visual {
        min-height: 360px;
    }

    .si-hero-visual img {
        height: 360px;
        right: -38px;
    }
}

@media (max-width: 420px) {
    .si-hero-content h1 {
        font-size: 36px;
    }

    .si-hero-visual {
        min-height: 320px;
    }

    .si-hero-visual img {
        height: 320px;
        right: -48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .si-hero-label,
    .si-hero-content h1,
    .si-hero-line,
    .si-hero-content p,
    .si-hero-buttons,
    .si-hero-visual img,
    .si-hero-glow {
        animation: none !important;
        transition: none !important;
    }
}

/* ==============================
   SI PROFILE SECTION
================================= */

.si-profile-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 88px;
    background:
        radial-gradient(circle at 8% 20%, rgba(31, 59, 93, 0.045) 0%, rgba(31, 59, 93, 0.014) 30%, transparent 54%),
        radial-gradient(circle at 92% 84%, rgba(37, 109, 255, 0.04) 0%, rgba(37, 109, 255, 0.014) 32%, transparent 60%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.si-profile-container {
    position: relative;
    z-index: 2;
    padding-left: 82px;
    padding-right: 82px;
}

.si-profile-row {
    align-items: center;
    row-gap: 48px;
}

.si-profile-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--color1);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.si-profile-label span {
    width: 4px;
    height: 28px;
    border-radius: 50px;
    background: var(--color2);
}

.si-profile-content h2 {
    margin: 0 0 22px;
    color: var(--color1);
    font-size: 50px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.4px;
}

.si-profile-badge {
    width: fit-content;
    min-height: 48px;
    margin-bottom: 38px;
    padding: 7px 18px 7px 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 9px;
    border: 1.5px solid rgba(251, 212, 5, 0.95);
    background: rgba(255,255,255,0.82);
    color: #E7A600;
    font-size: 15px;
    font-weight: 900;
}

.si-profile-badge img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.si-profile-content h3 {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--color1);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
}

.si-profile-content p {
    max-width: 790px;
    margin: 0 0 26px;
    color: rgba(22, 34, 58, 0.82);
    font-size: 16px;
    line-height: 1.42;
}

.si-profile-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.si-profile-btn {
    min-height: 50px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.35s ease;
}

.si-profile-btn-primary {
    min-width: 260px;
    background: #0050B8;
    border: 2px solid #0050B8;
    color: var(--color4);
    box-shadow: 0 14px 28px rgba(0, 80, 184, 0.22);
}

.si-profile-btn-outline {
    min-width: 270px;
    background: var(--color4);
    border: 2px solid #0050B8;
    color: var(--color1);
}

.si-profile-btn i:first-child {
    font-size: 32px;
}

.si-profile-btn i:last-child {
    transition: transform 0.35s ease;
}

.si-profile-btn:hover {
    background: var(--color2);
    border-color: var(--color2);
    color: var(--color1);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(251, 212, 5, 0.22);
}

.si-profile-btn:hover i:last-child {
    transform: translateX(6px);
}

/* Right Side */
.si-profile-side {
    position: relative;
}

.si-profile-info-card {
    position: relative;
    max-width: 610px;
    margin-left: auto;
    padding: 30px 36px 26px;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    border: 1.5px solid #35AEF4;
    border-left-width: 8px;
    box-shadow:
        -8px 8px 0 rgba(53, 174, 244, 0.95),
        0 20px 42px rgba(31, 59, 93, 0.10);
}

.si-profile-info-card h3 {
    margin: 0;
    color: var(--color1);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
}

.si-profile-info-line {
    display: block;
    width: 68px;
    height: 4px;
    margin: 12px 0 20px;
    border-radius: 50px;
    background: var(--color2);
}

.si-profile-info-item {
    display: grid;
    grid-template-columns: 72px 1fr 1.35fr;
    align-items: center;
    gap: 20px;
    min-height: 92px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(31, 59, 93, 0.12);
}

.si-profile-info-item:last-child {
    border-bottom: 0;
}

.si-profile-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 109, 255, 0.10);
    color: #35AEF4;
    font-size: 24px;
}

.si-profile-info-item strong {
    color: var(--color1);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.si-profile-info-item p {
    margin: 0;
    padding-left: 20px;
    border-left: 1px solid rgba(31, 59, 93, 0.12);
    color: var(--color1);
    font-size: 16px;
    line-height: 1.22;
}

.si-profile-accreditation-img {
    padding-left: 20px;
    border-left: 1px solid rgba(31, 59, 93, 0.12);
}

.si-profile-accreditation-img img {
    width: 120px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Benefits */
.si-profile-benefits {
    max-width: 610px;
    margin: 54px 0 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 44px;
}

.si-profile-benefit {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 16px;
    align-items: center;
}

.si-profile-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 109, 255, 0.10);
    color: #35AEF4;
    font-size: 32px;
}

.si-profile-benefit h4 {
    margin: 0 0 8px;
    color: var(--color1);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.16;
}

.si-profile-benefit p {
    margin: 0;
    color: rgba(22, 34, 58, 0.78);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
}

/* Animation */
.si-profile-label,
.si-profile-content h2,
.si-profile-badge,
.si-profile-content h3,
.si-profile-content p,
.si-profile-buttons,
.si-profile-info-card,
.si-profile-benefit {
    animation: siProfileFadeUp 0.85s ease both;
}

.si-profile-label { animation-delay: 0.05s; }
.si-profile-content h2 { animation-delay: 0.12s; }
.si-profile-badge { animation-delay: 0.18s; }
.si-profile-content h3 { animation-delay: 0.25s; }
.si-profile-content p:nth-of-type(1) { animation-delay: 0.32s; }
.si-profile-content p:nth-of-type(2) { animation-delay: 0.39s; }
.si-profile-buttons { animation-delay: 0.48s; }
.si-profile-info-card { animation-delay: 0.24s; }
.si-profile-benefits .si-profile-benefit:nth-child(1) { animation-delay: 0.36s; }
.si-profile-benefits .si-profile-benefit:nth-child(2) { animation-delay: 0.44s; }
.si-profile-benefits .si-profile-benefit:nth-child(3) { animation-delay: 0.52s; }
.si-profile-benefits .si-profile-benefit:nth-child(4) { animation-delay: 0.60s; }

@keyframes siProfileFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.si-profile-info-card,
.si-profile-benefit,
.si-profile-info-icon,
.si-profile-benefit-icon,
.si-profile-badge {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.si-profile-info-card:hover {
    transform: translateY(-6px);
    box-shadow:
        -8px 8px 0 rgba(53, 174, 244, 0.95),
        0 28px 56px rgba(31, 59, 93, 0.14);
}

.si-profile-benefit:hover {
    transform: translateY(-6px);
}

.si-profile-benefit:hover .si-profile-benefit-icon,
.si-profile-info-item:hover .si-profile-info-icon {
    background: var(--color2);
    color: var(--color1);
    transform: rotate(-4deg) scale(1.07);
    box-shadow: 0 14px 28px rgba(251, 212, 5, 0.22);
}

.si-profile-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 212, 5, 0.18);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .si-profile-container {
        padding-left: 56px;
        padding-right: 56px;
    }

    .si-profile-content h2 {
        font-size: 44px;
    }

    .si-profile-content p {
        font-size: 17px;
    }

    .si-profile-info-card,
    .si-profile-benefits {
        max-width: 560px;
    }
}

@media (max-width: 1199.98px) {
    .si-profile-info-card,
    .si-profile-benefits {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .si-profile-section {
        padding: 54px 0 58px;
    }

    .si-profile-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .si-profile-label {
        font-size: 13px;
    }

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

    .si-profile-badge {
        margin-bottom: 28px;
        font-size: 13px;
    }

    .si-profile-content h3 {
        font-size: 17px;
    }

    .si-profile-content p {
        font-size: 14px;
    }

    .si-profile-btn,
    .si-profile-btn-primary,
    .si-profile-btn-outline {
        width: 100%;
        min-width: unset;
    }

    .si-profile-info-card {
        padding: 24px 18px;
        border-left-width: 5px;
        box-shadow:
            -5px 5px 0 rgba(53, 174, 244, 0.95),
            0 18px 34px rgba(31, 59, 93, 0.10);
    }

    .si-profile-info-item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
        min-height: auto;
    }

    .si-profile-info-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .si-profile-info-item p,
    .si-profile-accreditation-img {
        grid-column: 2 / -1;
        padding-left: 0;
        border-left: 0;
        font-size: 16px;
    }

    .si-profile-accreditation-img img {
        width: 150px;
    }

    .si-profile-benefits {
        margin-top: 34px;
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ==============================
   SI CAREER SECTION
================================= */

.si-career-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 86px;
    background:
        radial-gradient(circle at 8% 18%, rgba(31, 59, 93, 0.045) 0%, rgba(31, 59, 93, 0.014) 30%, transparent 54%),
        radial-gradient(circle at 92% 84%, rgba(53, 174, 244, 0.045) 0%, rgba(53, 174, 244, 0.014) 32%, transparent 60%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.si-career-container {
    position: relative;
    z-index: 2;
    padding-left: 82px;
    padding-right: 82px;
}

.si-career-heading {
    max-width: 920px;
    margin: 0 auto 48px;
    text-align: center;
}

.si-career-heading > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-bottom: 22px;
    padding: 0 42px;
    border-radius: 999px;
    background: #35AEF4;
    color: var(--color4);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.si-career-heading h2 {
    margin: 0 0 20px;
    color: var(--color1);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -0.8px;
}

.si-career-heading p {
    max-width: 850px;
    margin: 0 auto;
    color: rgba(22, 34, 58, 0.78);
    font-size: 16px;
    line-height: 1.42;
}

.si-career-line {
    width: 60px;
    height: 4px;
    margin: 22px auto 0;
    border-radius: 50px;
    background: var(--color2);
}

.si-career-row {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 24px;
}

/* Card */
.si-career-card {
    position: relative;
    height: 100%;
    min-height: 220px;
    padding: 28px 26px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 26px;
    align-items: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.94);
    border: 2px solid #35AEF4;
    border-bottom-width: 6px;
    box-shadow: 0 18px 38px rgba(31, 59, 93, 0.09);
    overflow: hidden;
}

.si-career-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 50%, rgba(53, 174, 244, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.72), transparent);
    pointer-events: none;
}

.si-career-img,
.si-career-content {
    position: relative;
    z-index: 2;
}

.si-career-img {
    width: 142px;
    height: 142px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-career-img img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.si-career-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.si-career-title span {
    min-width: 32px;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #256DFF;
    color: var(--color4);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.si-career-title h3 {
    margin: 0;
    color: var(--color1);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.si-career-content p {
    margin: 0;
    color: rgba(22, 34, 58, 0.72);
    font-size: 12.5px;
    line-height: 1.55;
}

/* Bottom CTA */
.si-career-cta {
    max-width: 1268px;
    margin: 78px auto 0;
    min-height: 92px;
    padding: 18px 34px;
    display: grid;
    grid-template-columns: 170px 190px 1fr 190px;
    align-items: center;
    gap: 22px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 8% 50%, rgba(37, 109, 255, 0.08), transparent 34%),
        linear-gradient(135deg, rgba(241, 247, 255, 0.96), rgba(255,255,255,0.96));
    border: 1px solid rgba(31, 59, 93, 0.06);
    box-shadow: 0 14px 30px rgba(31, 59, 93, 0.07);
}

.si-career-cta-img img {
    width: 130px;
    height: auto;
    object-fit: contain;
}

.si-career-cta-title {
    position: relative;
    padding-left: 22px;
}

.si-career-cta-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 30px;
    background: var(--color2);
}

.si-career-cta-title h3 {
    margin: 0;
    color: var(--color1);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
}

.si-career-cta p {
    margin: 0;
    color: rgba(22, 34, 58, 0.72);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.si-career-cta a {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0050B8;
    color: var(--color4);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0, 80, 184, 0.20);
    transition: 0.35s ease;
}

.si-career-cta a i {
    transition: transform 0.35s ease;
}

.si-career-cta a:hover {
    background: var(--color2);
    color: var(--color1);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(251, 212, 5, 0.22);
}

.si-career-cta a:hover i {
    transform: translateX(6px);
}

/* Animation */
.si-career-heading,
.si-career-card,
.si-career-cta {
    animation: siCareerFadeUp 0.85s ease both;
}

.si-career-heading { animation-delay: 0.05s; }
.si-career-row > div:nth-child(1) .si-career-card { animation-delay: 0.14s; }
.si-career-row > div:nth-child(2) .si-career-card { animation-delay: 0.22s; }
.si-career-row > div:nth-child(3) .si-career-card { animation-delay: 0.30s; }
.si-career-row > div:nth-child(4) .si-career-card { animation-delay: 0.38s; }
.si-career-row > div:nth-child(5) .si-career-card { animation-delay: 0.46s; }
.si-career-row > div:nth-child(6) .si-career-card { animation-delay: 0.54s; }
.si-career-cta { animation-delay: 0.62s; }

@keyframes siCareerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.si-career-card,
.si-career-img img,
.si-career-title span {
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease, background 0.35s ease;
}

.si-career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(31, 59, 93, 0.14);
    border-color: #256DFF;
}

.si-career-card:hover .si-career-img img {
    transform: scale(1.08) rotate(-2deg);
    filter: brightness(1.04) saturate(1.08);
}

.si-career-card:hover .si-career-title span {
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .si-career-container {
        padding-left: 56px;
        padding-right: 56px;
    }

    .si-career-card {
        grid-template-columns: 130px 1fr;
        gap: 20px;
    }

    .si-career-img img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 1199.98px) {
    .si-career-cta {
        grid-template-columns: 140px 1fr;
    }

    .si-career-cta-title,
    .si-career-cta p,
    .si-career-cta a {
        grid-column: span 1;
    }
}

@media (max-width: 767.98px) {
    .si-career-section {
        padding: 54px 0 58px;
    }

    .si-career-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .si-career-heading > span {
        min-height: 42px;
        padding: 0 24px;
        font-size: 12px;
    }

    .si-career-heading h2 {
        font-size: 29px;
    }

    .si-career-heading p {
        font-size: 14px;
    }

    .si-career-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
    }

    .si-career-img {
        margin: 0 auto;
    }

    .si-career-title {
        justify-content: center;
    }

    .si-career-cta {
        margin-top: 44px;
        padding: 24px 18px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .si-career-cta-img img {
        margin: 0 auto;
    }

    .si-career-cta-title {
        padding-left: 0;
    }

    .si-career-cta-title::before {
        display: none;
    }

    .si-career-cta a {
        width: 100%;
    }
}

/* ==============================
   SI OUTCOME SECTION
================================= */

.si-outcome-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 88px;
    background:
        radial-gradient(circle at 8% 18%, rgba(31, 59, 93, 0.045) 0%, rgba(31, 59, 93, 0.014) 30%, transparent 54%),
        radial-gradient(circle at 92% 84%, rgba(53, 174, 244, 0.045) 0%, rgba(53, 174, 244, 0.014) 32%, transparent 60%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.si-outcome-container {
    position: relative;
    z-index: 2;
    padding-left: 82px;
    padding-right: 82px;
}

.si-outcome-heading {
    max-width: 860px;
    margin-bottom: 42px;
}

.si-outcome-heading > span {
    display: block;
    margin-bottom: 14px;
    color: #E7A600;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.si-outcome-heading > div {
    width: 58px;
    height: 4px;
    margin-bottom: 24px;
    border-radius: 50px;
    background: var(--color2);
}

.si-outcome-heading > div:last-child {
    margin-top: 16px;
    margin-bottom: 0;
}

.si-outcome-heading h2 {
    margin: 0 0 10px;
    color: var(--color1);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.8px;
}

.si-outcome-heading p {
    max-width: 780px;
    margin: 0;
    color: rgba(22, 34, 58, 0.82);
    font-size: 17px;
    line-height: 1.45;
}

.si-outcome-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.si-outcome-item {
    position: relative;
    min-height: 118px;
    padding: 18px 34px 18px 64px;
    display: grid;
    grid-template-columns: 135px 1px 58px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    border-radius: 15px;
    background: rgba(255,255,255,0.94);
    border: 2px solid #35AEF4;
    border-bottom-width: 6px;
    box-shadow: 0 18px 38px rgba(31, 59, 93, 0.08);
    overflow: hidden;
}

.si-outcome-icon,
.si-outcome-separator,
.si-outcome-number,
.si-outcome-item p {
    position: relative;
    z-index: 2;
}

.si-outcome-icon {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-outcome-icon img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.si-outcome-separator {
    width: 1px;
    height: 66px;
    background: rgba(31, 59, 93, 0.12);
}

.si-outcome-number {
    width: 48px;
    height: 48px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #256DFF;
    color: var(--color4);
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(37, 109, 255, 0.18);
}

.si-outcome-item p {
    max-width: 750px;
    margin: 0;
    color: rgba(22, 34, 58, 0.80);
    font-size: 16px;
    line-height: 1.5;
}

.si-outcome-item p strong {
    color: #0050B8;
    font-weight: 900;
}

/* Animation */
.si-outcome-heading,
.si-outcome-item {
    animation: siOutcomeFadeUp 0.85s ease both;
}

.si-outcome-heading { animation-delay: 0.05s; }
.si-outcome-list .si-outcome-item:nth-child(1) { animation-delay: 0.14s; }
.si-outcome-list .si-outcome-item:nth-child(2) { animation-delay: 0.22s; }
.si-outcome-list .si-outcome-item:nth-child(3) { animation-delay: 0.30s; }
.si-outcome-list .si-outcome-item:nth-child(4) { animation-delay: 0.38s; }
.si-outcome-list .si-outcome-item:nth-child(5) { animation-delay: 0.46s; }

@keyframes siOutcomeFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.si-outcome-item,
.si-outcome-icon img,
.si-outcome-number {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, filter 0.35s ease;
}

.si-outcome-item:hover {
    transform: translateY(-7px);
    border-color: #256DFF;
    box-shadow: 0 28px 56px rgba(31, 59, 93, 0.13);
}

.si-outcome-item:hover .si-outcome-icon img {
    transform: scale(1.08) rotate(-2deg);
    filter: brightness(1.04) saturate(1.08);
}

.si-outcome-item:hover .si-outcome-number {
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .si-outcome-container {
        padding-left: 56px;
        padding-right: 56px;
    }

    .si-outcome-item {
        padding-left: 42px;
        grid-template-columns: 118px 1px 54px minmax(0, 1fr);
        gap: 22px;
    }

    .si-outcome-icon img {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 991.98px) {
    .si-outcome-heading {
        max-width: 100%;
    }

    .si-outcome-item {
        grid-template-columns: 100px 50px minmax(0, 1fr);
    }

    .si-outcome-separator {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .si-outcome-section {
        padding: 54px 0 58px;
    }

    .si-outcome-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .si-outcome-heading > span {
        font-size: 12px;
    }

    .si-outcome-heading h2 {
        font-size: 29px;
    }

    .si-outcome-heading p {
        font-size: 14px;
    }

    .si-outcome-item {
        min-height: auto;
        padding: 24px 20px;
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    .si-outcome-item::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
        width: auto;
        max-width: none;
        height: 130px;
        background: linear-gradient(
            180deg,
            rgba(245, 247, 252, 0.96) 0%,
            rgba(245, 247, 252, 0.66) 58%,
            rgba(245, 247, 252, 0) 100%
        );
    }

    .si-outcome-icon {
        margin: 0 auto;
    }

    .si-outcome-number {
        margin: 0 auto;
    }

    .si-outcome-item p {
        max-width: 100%;
        font-size: 13.5px;
    }
}

/* ==============================
   SI CTA SECTION
================================= */

.si-cta-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 88px;
    background:
        radial-gradient(circle at 8% 18%, rgba(31, 59, 93, 0.045), transparent 46%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.si-cta-container {
    position: relative;
    z-index: 2;
    padding-left: 82px;
    padding-right: 82px;
}

.si-cta-main {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 62px 62px 48px;
    border-radius: 22px;
    color: var(--color4);
    background:
        radial-gradient(circle at 78% 42%, rgba(34, 91, 255, 0.84) 0%, rgba(12, 64, 180, 0.58) 30%, rgba(6, 25, 59, 0) 58%),
        linear-gradient(115deg, #06193b 0%, #09285b 46%, #0538c9 100%);
    box-shadow: 0 24px 56px rgba(31, 59, 93, 0.20);
}

.si-cta-row {
    position: relative;
    z-index: 2;
    min-height: 410px;
    align-items: stretch;
}

.si-cta-content {
    position: relative;
    z-index: 5;
    padding-right: 24px;
}

.si-cta-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    color: var(--color2);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.si-cta-label span {
    width: 46px;
    height: 3px;
    border-radius: 50px;
    background: var(--color2);
}

.si-cta-content h2 {
    max-width: 650px;
    margin: 0 0 22px;
    color: var(--color4);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.si-cta-content h2 strong {
    display: block;
    color: var(--color2);
    font-weight: 900;
}

.si-cta-content > p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255,255,255,0.84);
    font-size: 18px;
    line-height: 1.58;
}

.si-cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.si-cta-btn {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.35s ease;
}

.si-cta-btn-primary {
    background: var(--color2);
    border: 2px solid var(--color2);
    color: var(--color1);
    box-shadow: 0 16px 32px rgba(251, 212, 5, 0.25);
}

.si-cta-btn-outline {
    background: rgba(255,255,255,0.02);
    border: 2px solid rgba(255,255,255,0.52);
    color: var(--color4);
}

.si-cta-btn i:first-child {
    font-size: 24px;
}

.si-cta-btn i:last-child {
    transition: transform 0.35s ease;
}

.si-cta-btn:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
    color: var(--color1);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.20);
}

.si-cta-btn:hover i:last-child {
    transform: translateX(7px);
}

/* Features */
.si-cta-features {
    max-width: 650px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.si-cta-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-right: 1px solid rgba(255,255,255,0.24);
}

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

.si-cta-feature:last-child {
    padding-right: 0;
    border-right: 0;
}

.si-cta-feature i {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color2);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 24px;
}

.si-cta-feature span {
    color: rgba(255,255,255,0.86);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

/* Visual: right edge, max half width, no overlap */
.si-cta-visual {
    position: relative;
    z-index: 3;
    min-height: 410px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
    overflow: visible;
}

.si-cta-visual img {
    position: absolute;
    right: -62px;
    bottom: -48px;
    height: 520px;
    width: auto;
    max-width: 50vw;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,0.30));
    pointer-events: none;
}

/* RPL Box */
.si-cta-rpl {
    position: relative;
    z-index: 5;
    width: calc(100% - 80px);
    margin: -14px auto 0;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: 120px 300px 1fr 350px;
    gap: 28px;
    align-items: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(31, 59, 93, 0.08);
    box-shadow: 0 22px 50px rgba(31, 59, 93, 0.14);
}

.si-cta-rpl-icon {
    width: 108px;
    height: 108px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color4);
    background: linear-gradient(145deg, #06193b, #0050B8);
    box-shadow: 0 16px 32px rgba(0, 80, 184, 0.20);
}

.si-cta-rpl-icon i {
    color: var(--color2);
    font-size: 38px;
    line-height: 1;
}

.si-cta-rpl-icon strong {
    margin-top: 6px;
    color: var(--color4);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.si-cta-rpl-title {
    padding-right: 28px;
    border-right: 3px solid var(--color2);
}

.si-cta-rpl-title h3 {
    margin: 0 0 8px;
    color: var(--color1);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.2;
}

.si-cta-rpl-title p {
    margin: 0;
    color: var(--color1);
    font-size: 15px;
    font-weight: 800;
}

.si-cta-rpl-desc p {
    margin: 0;
    color: rgba(22, 34, 58, 0.78);
    font-size: 15px;
    line-height: 1.52;
}

.si-cta-rpl-btn {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 9px;
    border: 2px solid #256DFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #256DFF;
    background: var(--color4);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.35s ease;
}

.si-cta-rpl-btn i:last-child {
    transition: transform 0.35s ease;
}

.si-cta-rpl-btn:hover {
    background: #256DFF;
    color: var(--color4);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(37,109,255,0.22);
}

.si-cta-rpl-btn:hover i:last-child {
    transform: translateX(7px);
}

/* Animation */
.si-cta-label,
.si-cta-content h2,
.si-cta-content > p,
.si-cta-buttons,
.si-cta-feature,
.si-cta-visual img,
.si-cta-rpl {
    animation: siCtaFadeUp 0.85s ease both;
}

.si-cta-label { animation-delay: 0.06s; }
.si-cta-content h2 { animation-delay: 0.14s; }
.si-cta-content > p { animation-delay: 0.22s; }
.si-cta-buttons { animation-delay: 0.32s; }
.si-cta-feature:nth-child(1) { animation-delay: 0.40s; }
.si-cta-feature:nth-child(2) { animation-delay: 0.48s; }
.si-cta-feature:nth-child(3) { animation-delay: 0.56s; }
.si-cta-visual img { animation-delay: 0.26s; }
.si-cta-rpl { animation-delay: 0.64s; }

@keyframes siCtaFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.si-cta-feature,
.si-cta-feature i,
.si-cta-rpl,
.si-cta-rpl-icon {
    transition: 0.35s ease;
}

.si-cta-feature:hover {
    transform: translateY(-6px);
}

.si-cta-feature:hover i {
    background: var(--color2);
    color: var(--color1);
    transform: rotate(-4deg) scale(1.08);
    box-shadow: 0 14px 28px rgba(251,212,5,0.24);
}

.si-cta-rpl:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 58px rgba(31, 59, 93, 0.17);
}

.si-cta-rpl:hover .si-cta-rpl-icon {
    transform: rotate(-3deg) scale(1.04);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .si-cta-container {
        padding-left: 56px;
        padding-right: 56px;
    }

    .si-cta-main {
        padding-left: 48px;
        padding-right: 48px;
    }

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

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

    .si-cta-visual img {
        right: -48px;
        height: 470px;
    }

    .si-cta-rpl {
        width: calc(100% - 50px);
        grid-template-columns: 110px 260px 1fr;
    }

    .si-cta-rpl-btn {
        grid-column: 2 / -1;
        width: fit-content;
    }
}

@media (max-width: 1199.98px) {
    .si-cta-row {
        min-height: auto;
    }

    .si-cta-content {
        padding-right: 0;
    }

    .si-cta-visual {
        min-height: 390px;
    }

    .si-cta-visual img {
        position: relative;
        right: -48px;
        bottom: -48px;
        height: 420px;
        max-width: 100%;
        margin-left: auto;
    }

    .si-cta-rpl {
        margin-top: 22px;
        grid-template-columns: 100px 1fr;
        width: 100%;
    }

    .si-cta-rpl-title {
        border-right: 0;
        padding-right: 0;
    }

    .si-cta-rpl-desc,
    .si-cta-rpl-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .si-cta-main {
        padding: 52px 28px 0;
    }

    .si-cta-content h2 {
        max-width: 100%;
        font-size: 36px;
    }

    .si-cta-content > p,
    .si-cta-features {
        max-width: 100%;
    }

    .si-cta-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .si-cta-feature,
    .si-cta-feature:first-child,
    .si-cta-feature:last-child {
        padding: 0;
        border-right: 0;
    }

    .si-cta-visual {
        justify-content: flex-end;
        min-height: 360px;
    }

    .si-cta-visual img {
        right: -28px;
        height: 360px;
    }

    .si-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 14px;
    }
}

@media (max-width: 767.98px) {
    .si-cta-section {
        padding: 54px 0 58px;
    }

    .si-cta-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .si-cta-main {
        padding: 42px 18px 0;
        border-radius: 18px;
    }

    .si-cta-label {
        gap: 10px;
        font-size: 11px;
    }

    .si-cta-label span {
        width: 34px;
    }

    .si-cta-content h2 {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .si-cta-content > p {
        font-size: 13.5px;
    }

    .si-cta-btn,
    .si-cta-btn-primary,
    .si-cta-btn-outline {
        width: 100%;
        min-width: unset;
    }

    .si-cta-feature {
        justify-content: flex-start;
    }

    .si-cta-visual {
        min-height: 300px;
    }

    .si-cta-visual img {
        right: -18px;
        bottom: -28px;
        height: 300px;
    }

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

    .si-cta-rpl-icon {
        margin: 0 auto;
    }

    .si-cta-rpl-title {
        border-right: 0;
        border-bottom: 3px solid var(--color2);
        padding: 0 0 18px;
    }

    .si-cta-rpl-title h3 {
        font-size: 22px;
    }

    .si-cta-rpl-desc,
    .si-cta-rpl-btn {
        grid-column: auto;
    }

    .si-cta-rpl-btn {
        width: 100%;
        font-size: 13px;
    }
}