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

/* ==============================
   TI HERO SECTION
================================= */

.ti-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%);
}

.ti-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%
    );
}

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

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

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

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

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

.ti-hero-content h1 {
    max-width: 760px;
    margin: 0;
    color: var(--color4);
    font-size: 82px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2.8px;
}

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

.ti-hero-content p {
    max-width: 720px;
    margin: 0 0 40px;
    color: rgba(255,255,255,0.86);
    font-size: 23px;
    line-height: 1.6;
}

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

.ti-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;
}

.ti-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);
}

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

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

.ti-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);
}

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

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

.ti-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: tiHeroGlow 4s ease-in-out infinite;
}

.ti-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 */
.ti-hero-label,
.ti-hero-content h1,
.ti-hero-line,
.ti-hero-content p,
.ti-hero-buttons {
    animation: tiHeroTextReveal 0.85s ease both;
}

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

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

.ti-hero-visual img {
    animation: tiHeroImageReveal 1s ease both 0.25s;
}

@keyframes tiHeroImageReveal {
    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 tiHeroGlow {
    0%, 100% {
        opacity: 0.72;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

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

    .ti-hero-content h1 {
        font-size: 68px;
    }

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

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

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

    .ti-hero-content h1 {
        font-size: 56px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .ti-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

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

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

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

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

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

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

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

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

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

/* ==============================
   TI PROFILE SECTION
================================= */

.ti-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%);
}

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

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

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

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

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

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

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

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

.ti-profile-btn {
    min-height: 50px;
    padding: 0 24px;
    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;
}

.ti-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);
}

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

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

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

.ti-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);
}

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

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

.ti-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);
}

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

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

.ti-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);
}

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

.ti-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;
}

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

.ti-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;
}

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

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

.ti-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;
}

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

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

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

.ti-profile-label { animation-delay: 0.05s; }
.ti-profile-content h2 { animation-delay: 0.12s; }
.ti-profile-content h3 { animation-delay: 0.20s; }
.ti-profile-content p:nth-of-type(1) { animation-delay: 0.28s; }
.ti-profile-content p:nth-of-type(2) { animation-delay: 0.36s; }
.ti-profile-buttons { animation-delay: 0.46s; }
.ti-profile-info-card { animation-delay: 0.24s; }
.ti-profile-benefits .ti-profile-benefit:nth-child(1) { animation-delay: 0.36s; }
.ti-profile-benefits .ti-profile-benefit:nth-child(2) { animation-delay: 0.44s; }
.ti-profile-benefits .ti-profile-benefit:nth-child(3) { animation-delay: 0.52s; }
.ti-profile-benefits .ti-profile-benefit:nth-child(4) { animation-delay: 0.60s; }

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

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

.ti-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);
}

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

.ti-profile-benefit:hover .ti-profile-benefit-icon,
.ti-profile-info-item:hover .ti-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);
}

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

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

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

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

    .ti-profile-buttons {
        margin-top: 52px;
    }
}

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

    .ti-profile-buttons {
        margin-top: 34px;
    }
}

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

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

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

    .ti-profile-content h2 {
        margin-bottom: 26px;
        font-size: 32px;
    }

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

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

    .ti-profile-buttons {
        margin-top: 28px;
    }

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

    .ti-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);
    }

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

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

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

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

/* ==============================
   TI CAREER SECTION
================================= */

.ti-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%);
}

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

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

.ti-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;
}

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

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

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

/* Cards */
.ti-career-list {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.ti-career-card {
    position: relative;
    min-height: 360px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(31, 59, 93, 0.08);
    box-shadow: 0 18px 38px rgba(31, 59, 93, 0.09);
}

.ti-career-img {
    height: 178px;
    overflow: hidden;
}

.ti-career-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ti-career-icon {
    position: relative;
    width: 68px;
    height: 68px;
    margin: -34px auto 16px;
    z-index: 2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #256DFF;
    background: #eef4ff;
    border: 6px solid rgba(255,255,255,0.96);
    font-size: 30px;
    box-shadow: 0 12px 24px rgba(31, 59, 93, 0.10);
}

.ti-career-body {
    padding: 0 22px 26px;
    text-align: center;
}

.ti-career-body h3 {
    margin: 0 0 14px;
    color: #0050B8;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

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

/* Bottom CTA */
.ti-career-cta {
    max-width: 1268px;
    margin: 74px 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);
}

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

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

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

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

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

.ti-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;
}

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

.ti-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);
}

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

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

.ti-career-heading { animation-delay: 0.05s; }
.ti-career-list .ti-career-card:nth-child(1) { animation-delay: 0.14s; }
.ti-career-list .ti-career-card:nth-child(2) { animation-delay: 0.22s; }
.ti-career-list .ti-career-card:nth-child(3) { animation-delay: 0.30s; }
.ti-career-list .ti-career-card:nth-child(4) { animation-delay: 0.38s; }
.ti-career-list .ti-career-card:nth-child(5) { animation-delay: 0.46s; }
.ti-career-cta { animation-delay: 0.56s; }

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

.ti-career-card,
.ti-career-img img,
.ti-career-icon {
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.ti-career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(31, 59, 93, 0.14);
}

.ti-career-card:hover .ti-career-img img {
    transform: scale(1.06);
    filter: brightness(1.04) saturate(1.08);
}

.ti-career-card:hover .ti-career-icon {
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-4px) scale(1.06);
}

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

    .ti-career-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
    }

    .ti-career-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ti-career-body h3 {
        font-size: 15px;
    }

    .ti-career-body p {
        font-size: 11.5px;
    }
}

@media (max-width: 1199.98px) {
    .ti-career-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ti-career-card {
        min-height: 350px;
    }

    .ti-career-cta {
        grid-template-columns: 140px 1fr;
    }

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

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

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

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

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

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

    .ti-career-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ti-career-card {
        min-height: auto;
    }

    .ti-career-img {
        height: 210px;
    }

    .ti-career-body {
        padding-bottom: 28px;
    }

    .ti-career-body h3 {
        font-size: 18px;
    }

    .ti-career-body p {
        font-size: 13px;
    }

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

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

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

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

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

/* ==============================
   TI OUTCOME SECTION
================================= */

.ti-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%);
}

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

.ti-outcome-heading {
    max-width: 860px;
    margin-bottom: 52px;
}

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

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

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

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

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

/* Cards */
.ti-outcome-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ti-outcome-card {
    position: relative;
    min-height: 450px;
    padding: 28px 26px 34px;
    border-radius: 14px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(31, 59, 93, 0.08);
    box-shadow: 0 18px 38px rgba(31, 59, 93, 0.08);
    text-align: center;
    overflow: hidden;
}

.ti-outcome-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(37,109,255,0.065), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
    pointer-events: none;
}

.ti-outcome-img,
.ti-outcome-number,
.ti-outcome-card h3,
.ti-outcome-card span,
.ti-outcome-card p {
    position: relative;
    z-index: 2;
}

.ti-outcome-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ti-outcome-img img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

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

.ti-outcome-card h3 {
    min-height: 48px;
    margin: 0;
    color: #0050B8;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.ti-outcome-card > span {
    display: block;
    width: 58px;
    height: 3px;
    margin: 18px auto 24px;
    border-radius: 50px;
    background: #4A8BFF;
}

.ti-outcome-card p {
    margin: 0;
    color: rgba(22, 34, 58, 0.74);
    font-size: 14px;
    line-height: 1.62;
}

/* Animation */
.ti-outcome-heading,
.ti-outcome-card {
    animation: tiOutcomeFadeUp 0.85s ease both;
}

.ti-outcome-heading { animation-delay: 0.05s; }
.ti-outcome-row .ti-outcome-card:nth-child(1) { animation-delay: 0.14s; }
.ti-outcome-row .ti-outcome-card:nth-child(2) { animation-delay: 0.22s; }
.ti-outcome-row .ti-outcome-card:nth-child(3) { animation-delay: 0.30s; }
.ti-outcome-row .ti-outcome-card:nth-child(4) { animation-delay: 0.38s; }

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

.ti-outcome-card,
.ti-outcome-img img,
.ti-outcome-number {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, filter 0.35s ease;
}

.ti-outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(31, 59, 93, 0.13);
}

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

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

.ti-outcome-card:hover > span {
    width: 78px;
}

.ti-outcome-card > span {
    transition: width 0.35s ease;
}

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

    .ti-outcome-card {
        min-height: 430px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .ti-outcome-img {
        width: 150px;
        height: 150px;
    }

    .ti-outcome-img img {
        width: 145px;
        height: 145px;
    }

    .ti-outcome-card p {
        font-size: 13px;
    }
}

@media (max-width: 1199.98px) {
    .ti-outcome-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ti-outcome-card {
        min-height: 390px;
    }
}

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

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

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

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

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

    .ti-outcome-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ti-outcome-card {
        min-height: auto;
        padding: 24px 20px 30px;
    }

    .ti-outcome-card h3 {
        min-height: auto;
        font-size: 18px;
    }

    .ti-outcome-card p {
        font-size: 13.5px;
    }
}

/* ==============================
   TI CTA SECTION
================================= */

.ti-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%);
}

.ti-cta-container {
    padding-left: 82px;
    padding-right: 82px;
}

.ti-cta-main {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 620px;
    padding: 72px 68px;
    border-radius: 28px;
    color: var(--color4);
    background: linear-gradient(115deg, #06193b 0%, #09285b 48%, #0538c9 100%);
    box-shadow: 0 28px 60px rgba(31, 59, 93, 0.20);
}

.ti-cta-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
    min-height: 476px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ti-cta-badge {
    width: fit-content;
    min-height: 54px;
    margin-bottom: 46px;
    padding: 0 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.94);
    background: rgba(255,255,255,0.10);
    font-size: 14px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.ti-cta-badge i {
    color: #35AEF4;
    font-size: 28px;
}

.ti-cta-content h2 {
    margin: 0;
    color: var(--color4);
    font-size: 50px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -2px;
}

.ti-cta-content h2 strong {
    color: #35AEF4;
    font-weight: 900;
}

.ti-cta-line {
    width: 92px;
    height: 5px;
    margin: 34px 0 30px;
    border-radius: 50px;
    background: #35AEF4;
    box-shadow: 34px 0 0 rgba(53, 174, 244, 0.35);
}

.ti-cta-content p {
    max-width: 560px;
    margin: 0 0 40px;
    color: rgba(255,255,255,0.84);
    font-size: 18px;
    line-height: 1.58;
}

.ti-cta-content p strong {
    color: #35AEF4;
    font-weight: 900;
}

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

.ti-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;
}

.ti-cta-btn i:first-child {
    font-size: 27px;
}

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

.ti-cta-btn-primary {
    background: #256DFF;
    border: 2px solid #256DFF;
    color: var(--color4);
    box-shadow: 0 18px 34px rgba(37, 109, 255, 0.30);
}

.ti-cta-btn-outline {
    background: transparent;
    border: 2px solid rgba(53, 174, 244, 0.70);
    color: var(--color4);
}

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

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

/* Image layer */
.ti-cta-visual {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.ti-cta-visual img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 520px;
    width: auto;
    max-width: 54vw;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.88;
    filter: drop-shadow(0 24px 38px rgba(0,0,0,0.32));
}

/* Animation */
.ti-cta-badge,
.ti-cta-content h2,
.ti-cta-line,
.ti-cta-content p,
.ti-cta-buttons,
.ti-cta-visual img {
    animation: tiCtaFadeUp 0.85s ease both;
}

.ti-cta-badge { animation-delay: 0.06s; }
.ti-cta-content h2 { animation-delay: 0.16s; }
.ti-cta-line { animation-delay: 0.26s; }
.ti-cta-content p { animation-delay: 0.36s; }
.ti-cta-buttons { animation-delay: 0.48s; }
.ti-cta-visual img { animation-delay: 0.25s; }

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

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

    .ti-cta-main {
        min-height: 560px;
        padding-left: 52px;
        padding-right: 52px;
    }

    .ti-cta-content {
        max-width: 590px;
        min-height: 430px;
    }

    .ti-cta-content h2 {
        font-size: 54px;
    }

    .ti-cta-content p {
        max-width: 520px;
        font-size: 19px;
    }

    .ti-cta-btn {
        min-width: 235px;
        padding: 0 22px;
        font-size: 15px;
    }

    .ti-cta-visual {
        width: 50%;
    }

    .ti-cta-visual img {
        height: 455px;
        max-width: 52vw;
    }
}

@media (max-width: 1199.98px) {
    .ti-cta-content {
        max-width: 560px;
    }

    .ti-cta-visual {
        width: 48%;
    }

    .ti-cta-visual img {
        height: 390px;
        opacity: 0.72;
    }
}

@media (max-width: 991.98px) {
    .ti-cta-main {
        min-height: auto;
        padding: 52px 30px 0;
    }

    .ti-cta-content {
        max-width: 100%;
        min-height: auto;
    }

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

    .ti-cta-content p {
        max-width: 100%;
        font-size: 16px;
    }

    .ti-cta-badge {
        margin-bottom: 34px;
    }

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

    .ti-cta-btn {
        width: 100%;
        min-width: unset;
    }

    .ti-cta-visual {
        position: relative;
        width: 100%;
        min-height: 330px;
        margin-top: 18px;
    }

    .ti-cta-visual img {
        position: absolute;
        right: -30px;
        bottom: 0;
        height: 330px;
        max-width: 100%;
        opacity: 1;
    }
}

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

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

    .ti-cta-main {
        padding: 40px 18px 0;
        border-radius: 20px;
    }

    .ti-cta-badge {
        min-height: 44px;
        margin-bottom: 28px;
        padding: 0 18px;
        font-size: 12px;
    }

    .ti-cta-badge i {
        font-size: 22px;
    }

    .ti-cta-content h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .ti-cta-line {
        width: 72px;
        height: 4px;
        margin: 24px 0 22px;
        box-shadow: 28px 0 0 rgba(53, 174, 244, 0.35);
    }

    .ti-cta-content p {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .ti-cta-btn {
        min-height: 54px;
        font-size: 13px;
    }

    .ti-cta-visual {
        min-height: 270px;
    }

    .ti-cta-visual img {
        right: -18px;
        height: 270px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ti-cta-badge,
    .ti-cta-content h2,
    .ti-cta-line,
    .ti-cta-content p,
    .ti-cta-buttons,
    .ti-cta-visual img {
        animation: none !important;
        transition: none !important;
    }
}
