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

/* ==============================
   FTI HERO
================================= */

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

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

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

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

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

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

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

.fti-hero-content h1 {
    max-width: 780px;
    margin: 0 0 18px;
    color: var(--color4);
    font-size: 70px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2.4px;
}

.fti-hero-content h1 strong {
    display: block;
    color: var(--color2);
    font-weight: 900;
}

.fti-hero-content h2 {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 26px;
    font-style: italic;
    line-height: 1.35;
}

.fti-hero-line {
    width: 98px;
    height: 5px;
    margin-bottom: 28px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-hero-content p {
    max-width: 650px;
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 22px;
    line-height: 1.58;
}

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

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

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

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

.fti-hero-btn-outline {
    min-width: 295px;
    background: transparent;
    border: 2px solid var(--color2);
    color: var(--color4);
}

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

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

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

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

.fti-hero-label {
    animation-delay: 0.08s;
}

.fti-hero-content h1 {
    animation-delay: 0.18s;
}

.fti-hero-content h2 {
    animation-delay: 0.30s;
}

.fti-hero-line {
    animation-delay: 0.38s;
}

.fti-hero-content p {
    animation-delay: 0.48s;
}

.fti-hero-buttons {
    animation-delay: 0.60s;
}

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

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

.fti-hero-visual img {
    animation: ftiHeroImageReveal 1s ease both 0.25s;
}

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

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

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

    .fti-hero-content h1 {
        font-size: 58px;
    }

    .fti-hero-content h2 {
        font-size: 22px;
    }

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

@media (max-width: 1199.98px) {

    .fti-hero-section,
    .fti-hero-container,
    .fti-hero-row,
    .fti-hero-visual {
        min-height: calc(100vh - 80px);
    }

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

    .fti-hero-content h1 {
        font-size: 50px;
    }

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

@media (max-width: 991.98px) {

    .fti-hero-section,
    .fti-hero-container,
    .fti-hero-row {
        min-height: auto;
    }

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

    .fti-hero-content h1 {
        max-width: 640px;
        font-size: 44px;
    }

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

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

    .fti-hero-visual {
        min-height: 430px;
        justify-content: center;
    }

    .fti-hero-visual img {
        height: 430px;
    }
}

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

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

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

    .fti-hero-label span {
        width: 42px;
        height: 4px;
    }

    .fti-hero-content h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .fti-hero-content h2 {
        font-size: 16px;
    }

    .fti-hero-line {
        width: 76px;
        margin-bottom: 22px;
    }

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

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

    .fti-hero-visual {
        min-height: 380px;
    }

    .fti-hero-visual img {
        height: 380px;
    }
}

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

    .fti-hero-visual {
        min-height: 340px;
    }

    .fti-hero-visual img {
        height: 340px;
    }
}

/* ==============================
   FTI ABOUT SECTION
================================= */

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

.fti-about-container {
    position: relative;
    z-index: 2;
    padding-left: 72px;
    padding-right: 72px;
}

.fti-about-row {
    align-items: center;
    row-gap: 46px;
}

.fti-about-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    color: var(--color2);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

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

.fti-about-content h2 {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--color1);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.7px;
}

.fti-about-desc {
    max-width: 760px;
    margin: 0 0 52px;
    color: rgba(22, 34, 58, 0.74);
    font-size: 15px;
    line-height: 1.55;
}

.fti-about-desc strong {
    color: #256DFF;
    font-weight: 900;
}

/* Value */
.fti-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 46px;
}

.fti-about-value {
    position: relative;
    padding: 0 28px;
    text-align: center;
    border-right: 1px solid rgba(31, 59, 93, 0.13);
}

.fti-about-value:first-child {
    padding-left: 0;
}

.fti-about-value:last-child {
    padding-right: 0;
    border-right: 0;
}

.fti-about-value-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #256DFF;
    font-size: 34px;
    background: rgba(37, 109, 255, 0.08);
}

.fti-about-value h4 {
    margin: 0 0 14px;
    color: var(--color1);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.fti-about-value p {
    margin: 0;
    color: rgba(22, 34, 58, 0.68);
    font-size: 12px;
    line-height: 1.55;
}

/* Quote */
.fti-about-quote {
    max-width: 820px;
    min-height: 116px;
    padding: 24px 30px;
    display: grid;
    grid-template-columns: 68px 1fr;
    align-items: center;
    gap: 18px;
    border-radius: 16px;
    background: rgba(240, 247, 255, 0.88);
    box-shadow: 0 12px 30px rgba(31, 59, 93, 0.06);
}

.fti-about-quote i {
    color: #256DFF;
    font-size: 46px;
    line-height: 1;
}

.fti-about-quote p {
    position: relative;
    margin: 0;
    padding-left: 24px;
    color: rgba(22, 34, 58, 0.80);
    font-size: 14px;
    line-height: 1.55;
    font-style: italic;
}

.fti-about-quote p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    border-radius: 40px;
    background: var(--color2);
}

.fti-about-quote strong {
    color: #256DFF;
    font-weight: 900;
}

/* Visual */
.fti-about-visual {
    position: relative;
}

.fti-about-image {
    position: relative;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(31, 59, 93, 0.16);
}

.fti-about-image img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.fti-about-stats {
    position: relative;
    z-index: 3;
    width: calc(100% - 40px);
    margin: -96px auto 0;
    padding: 28px 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 100%, rgba(251, 212, 5, 0.30) 0%, transparent 34%),
        linear-gradient(115deg, #06193b 0%, var(--color1) 52%, #0538c9 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 46px rgba(31, 59, 93, 0.24);
}

.fti-about-stat {
    padding: 0 5px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.fti-about-stat:last-child {
    border-right: 0;
}

.fti-about-stat i {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 36px;
}

.fti-about-stat h3 {
    margin: 0 0 10px;
    color: var(--color2);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.fti-about-stat p {
    margin: 0 0 8px;
    color: var(--color4);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.25;
}

.fti-about-stat span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    line-height: 1;
}

/* Animation */
.fti-about-label,
.fti-about-content h2,
.fti-about-desc,
.fti-about-value,
.fti-about-quote,
.fti-about-image,
.fti-about-stats {
    animation: ftiAboutFadeUp 0.85s ease both;
}

.fti-about-label {
    animation-delay: 0.06s;
}

.fti-about-content h2 {
    animation-delay: 0.14s;
}

.fti-about-desc {
    animation-delay: 0.22s;
}

.fti-about-value:nth-child(1) {
    animation-delay: 0.30s;
}

.fti-about-value:nth-child(2) {
    animation-delay: 0.38s;
}

.fti-about-value:nth-child(3) {
    animation-delay: 0.46s;
}

.fti-about-quote {
    animation-delay: 0.54s;
}

.fti-about-image {
    animation-delay: 0.22s;
}

.fti-about-stats {
    animation-delay: 0.44s;
}

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

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

.fti-about-image img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.35s ease;
}

.fti-about-image:hover img {
    transform: scale(1.045);
    filter: brightness(1.03) saturate(1.08);
}

.fti-about-value,
.fti-about-value-icon,
.fti-about-stat,
.fti-about-quote {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.fti-about-value:hover {
    transform: translateY(-7px);
}

.fti-about-value:hover .fti-about-value-icon {
    background: var(--color2);
    color: var(--color1);
    transform: rotate(-4deg) scale(1.08);
    box-shadow: 0 14px 28px rgba(251, 212, 5, 0.25);
}

.fti-about-stat:hover {
    transform: translateY(-6px);
}

.fti-about-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 59, 93, 0.10);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .fti-about-container {
        padding-left: 52px;
        padding-right: 52px;
    }

    .fti-about-content h2 {
        font-size: 48px;
    }

    .fti-about-desc {
        font-size: 17px;
    }

    .fti-about-stat {
        padding: 0 14px;
    }
}

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

    .fti-about-image,
    .fti-about-image img {
        height: 460px;
        min-height: 460px;
    }
}

@media (max-width: 991.98px) {
    .fti-about-section {
        padding: 62px 0 68px;
    }

    .fti-about-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .fti-about-values {
        max-width: 760px;
    }

    .fti-about-visual {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .fti-about-section {
        padding: 52px 0 56px;
    }

    .fti-about-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fti-about-label {
        gap: 12px;
        margin-bottom: 22px;
        font-size: 12px;
    }

    .fti-about-label span {
        width: 42px;
        height: 4px;
    }

    .fti-about-content h2 {
        margin-bottom: 18px;
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .fti-about-desc {
        margin-bottom: 34px;
        font-size: 14px;
    }

    .fti-about-values {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 34px;
    }

    .fti-about-value {
        padding: 0;
        border-right: 0;
    }

    .fti-about-value-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 14px;
        font-size: 28px;
    }

    .fti-about-quote {
        min-height: auto;
        grid-template-columns: 42px 1fr;
        padding: 20px 18px;
        gap: 12px;
    }

    .fti-about-quote i {
        font-size: 34px;
    }

    .fti-about-quote p {
        padding-left: 16px;
        font-size: 13.5px;
    }

    .fti-about-image,
    .fti-about-image img {
        height: 320px;
        min-height: 320px;
        border-radius: 16px;
    }

    .fti-about-stats {
        width: calc(100% - 24px);
        margin-top: -52px;
        padding: 20px 14px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .fti-about-stat:nth-child(2) {
        border-right: 0;
    }

    .fti-about-stat:nth-child(1),
    .fti-about-stat:nth-child(2) {
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .fti-about-stat i {
        font-size: 26px;
    }

    .fti-about-stat h3 {
        font-size: 26px;
    }

    .fti-about-stat p {
        font-size: 12px;
    }

    .fti-about-stat span {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .fti-about-content h2 {
        font-size: 27px;
    }

    .fti-about-image,
    .fti-about-image img {
        height: 280px;
        min-height: 280px;
    }
}

/* ==============================
   FTI VMT SECTION
================================= */

.fti-vmt-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
    background:
        radial-gradient(circle at 8% 18%, rgba(31, 59, 93, 0.055) 0%, rgba(31, 59, 93, 0.018) 30%, transparent 54%),
        radial-gradient(circle at 94% 76%, rgba(37, 109, 255, 0.055) 0%, rgba(37, 109, 255, 0.018) 32%, transparent 60%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.fti-vmt-section::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 170px;
    height: 170px;
    background-image: radial-gradient(rgba(31, 59, 93, 0.14) 1.35px, transparent 1.35px);
    background-size: 13px 13px;
    opacity: 0.18;
}

.fti-vmt-section::after {
    content: "";
    position: absolute;
    right: -140px;
    top: 54px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(31, 59, 93, 0.08);
    box-shadow:
        0 0 0 38px rgba(31, 59, 93, 0.018),
        0 0 0 76px rgba(31, 59, 93, 0.012);
}

.fti-vmt-container {
    position: relative;
    z-index: 2;
    padding-left: 56px;
    padding-right: 56px;
}

.fti-vmt-heading {
    max-width: 980px;
    margin: 0 auto 58px;
    text-align: center;
}

.fti-vmt-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--color2);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.fti-vmt-label span {
    width: 42px;
    height: 3px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-vmt-heading h2 {
    margin: 0 0 18px;
    color: var(--color1);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.fti-vmt-heading p {
    max-width: 850px;
    margin: 0 auto;
    color: rgba(22, 34, 58, 0.72);
    font-size: 16px;
    line-height: 1.55;
}

.fti-vmt-row {
    row-gap: 34px;
}

.fti-vmt-card {
    position: relative;
    height: 100%;
    min-height: 650px;
    padding: 62px 30px 28px;
    border-radius: 18px;
    box-shadow: 0 22px 46px rgba(31, 59, 93, 0.10);
}

.fti-vmt-top-icon {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color4);
    color: #256DFF;
    font-size: 31px;
    border: 1px solid rgba(31, 59, 93, 0.10);
    box-shadow: 0 12px 30px rgba(31, 59, 93, 0.12);
}

.fti-vmt-card h3 {
    margin: 0;
    text-align: center;
    color: var(--color1);
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
}

.fti-vmt-title-line {
    width: 52px;
    height: 4px;
    margin: 18px auto 28px;
    border-radius: 50px;
    background: #256DFF;
}

/* Vision */
.fti-vmt-vision {
    color: var(--color4);
    background:
        radial-gradient(circle at 50% 88%, rgba(37, 109, 255, 0.52) 0%, rgba(37, 109, 255, 0.16) 36%, transparent 62%),
        linear-gradient(145deg, #06193b 0%, var(--color1) 52%, #0538c9 100%);
}

.fti-vmt-vision h3 {
    color: var(--color2);
}

.fti-vmt-vision .fti-vmt-title-line {
    background: var(--color2);
}

.fti-vmt-quote {
    position: relative;
    z-index: 2;
    min-height: 250px;
}

.fti-vmt-quote i {
    color: var(--color2);
    font-size: 34px;
}

.fti-vmt-quote i:last-child {
    position: absolute;
    right: 28px;
    bottom: 0;
}

.fti-vmt-quote p {
    margin: 8px 22px 0 34px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.62;
}

.fti-vmt-quote strong {
    color: var(--color2);
    font-weight: 900;
}

.fti-vmt-vision-illustration {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 245px;
    background:
        radial-gradient(circle at 50% 70%, rgba(37, 194, 255, 0.56), transparent 42%),
        linear-gradient(to top, rgba(0, 20, 55, 0.92), transparent);
    overflow: hidden;
}

.fti-vmt-vision-illustration::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 48px;
    height: 105px;
    background:
        linear-gradient(to top, rgba(37, 194, 255, 0.72), rgba(37, 194, 255, 0.18));
    clip-path: polygon(0 100%, 0 52%, 5% 52%, 5% 34%, 10% 34%, 10% 64%, 15% 64%, 15% 25%,
            21% 25%, 21% 100%, 28% 100%, 28% 38%, 34% 38%, 34% 18%, 42% 18%,
            42% 100%, 50% 100%, 50% 30%, 57% 30%, 57% 10%, 64% 10%, 64% 100%,
            71% 100%, 71% 44%, 78% 44%, 78% 22%, 85% 22%, 85% 100%, 100% 100%);
    opacity: 0.72;
    filter: drop-shadow(0 0 18px rgba(37, 194, 255, 0.58));
}

.fti-vmt-vision-illustration::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 36px;
    width: 360px;
    height: 120px;
    transform: translateX(-50%);
    border-radius: 50%;
    border-top: 2px solid rgba(37, 194, 255, 0.38);
    box-shadow:
        0 -14px 35px rgba(37, 194, 255, 0.18),
        inset 0 18px 45px rgba(37, 194, 255, 0.10);
}

.fti-vmt-year {
    position: absolute;
    left: 50%;
    bottom: 54px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.78);
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 22px rgba(37, 194, 255, 0.85);
}

/* Mission & Goals */
.fti-vmt-mission,
.fti-vmt-goals {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(37, 109, 255, 0.20);
}

.fti-vmt-goals {
    background:
        radial-gradient(circle at 20% 0%, rgba(251, 212, 5, 0.13) 0%, transparent 38%),
        rgba(255, 255, 255, 0.88);
    border-color: rgba(251, 212, 5, 0.35);
}

.fti-vmt-goals .fti-vmt-top-icon,
.fti-vmt-goals .fti-vmt-item-icon {
    color: var(--color2);
}

.fti-vmt-goals .fti-vmt-title-line {
    background: var(--color2);
}

.fti-vmt-list {
    display: flex;
    flex-direction: column;
}

.fti-vmt-item {
    position: relative;
    display: grid;
    grid-template-columns: 34px 74px 1fr;
    align-items: center;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(31, 59, 93, 0.10);
}

.fti-vmt-item:last-child {
    border-bottom: 0;
}

.fti-vmt-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0050B8;
    color: var(--color4);
    font-size: 12px;
    font-weight: 900;
}

.fti-vmt-goals .fti-vmt-number {
    background: var(--color2);
    color: var(--color4);
}

.fti-vmt-item-icon {
    width: 66px;
    height: 66px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 109, 255, 0.08);
    color: #256DFF;
    font-size: 29px;
}

.fti-vmt-goals .fti-vmt-item-icon {
    background: rgba(251, 212, 5, 0.15);
}

.fti-vmt-item p {
    margin: 0;
    color: rgba(22, 34, 58, 0.78);
    font-size: 12px;
    line-height: 1.43;
}

.fti-vmt-item strong {
    color: #256DFF;
    font-weight: 900;
}

/* Animation */
.fti-vmt-heading,
.fti-vmt-card {
    animation: ftiVmtFadeUp 0.85s ease both;
}

.fti-vmt-heading {
    animation-delay: 0.05s;
}

.fti-vmt-row .col-xl-4:nth-child(1) .fti-vmt-card {
    animation-delay: 0.16s;
}

.fti-vmt-row .col-xl-4:nth-child(2) .fti-vmt-card {
    animation-delay: 0.28s;
}

.fti-vmt-row .col-xl-4:nth-child(3) .fti-vmt-card {
    animation-delay: 0.40s;
}

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

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

.fti-vmt-card,
.fti-vmt-top-icon,
.fti-vmt-item,
.fti-vmt-item-icon {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

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

.fti-vmt-card:hover .fti-vmt-top-icon {
    transform: translateX(-50%) translateY(-5px) scale(1.06);
    box-shadow: 0 18px 34px rgba(31, 59, 93, 0.18);
}

.fti-vmt-item:hover {
    transform: translateX(7px);
}

.fti-vmt-item:hover .fti-vmt-item-icon {
    transform: rotate(-4deg) scale(1.06);
    background: var(--color2);
    color: var(--color1);
}

.fti-vmt-vision:hover .fti-vmt-vision-illustration::before {
    filter: drop-shadow(0 0 26px rgba(37, 194, 255, 0.85));
}

/* Responsive */
@media (max-width: 1399.98px) {
    .fti-vmt-container {
        padding-left: 42px;
        padding-right: 42px;
    }

    .fti-vmt-heading h2 {
        font-size: 40px;
    }

    .fti-vmt-card {
        min-height: 640px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .fti-vmt-item {
        grid-template-columns: 30px 62px 1fr;
        gap: 14px;
    }

    .fti-vmt-item-icon {
        width: 58px;
        height: 58px;
        font-size: 25px;
    }

    .fti-vmt-item p {
        font-size: 12.5px;
    }
}

@media (max-width: 1199.98px) {
    .fti-vmt-card {
        min-height: auto;
    }

    .fti-vmt-vision {
        min-height: 650px;
    }
}

@media (max-width: 767.98px) {
    .fti-vmt-section {
        padding: 54px 0 60px;
    }

    .fti-vmt-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fti-vmt-heading {
        margin-bottom: 44px;
    }

    .fti-vmt-label {
        gap: 10px;
        font-size: 11px;
    }

    .fti-vmt-label span {
        width: 30px;
    }

    .fti-vmt-heading h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .fti-vmt-heading p {
        font-size: 13.5px;
    }

    .fti-vmt-card {
        padding: 54px 18px 24px;
        border-radius: 16px;
    }

    .fti-vmt-top-icon {
        width: 66px;
        height: 66px;
        top: -33px;
        font-size: 26px;
    }

    .fti-vmt-card h3 {
        font-size: 22px;
    }

    .fti-vmt-vision {
        min-height: 600px;
    }

    .fti-vmt-quote p {
        margin-left: 18px;
        margin-right: 14px;
        font-size: 15px;
    }

    .fti-vmt-year {
        font-size: 38px;
    }

    .fti-vmt-item {
        grid-template-columns: 30px 52px 1fr;
        gap: 10px;
        padding: 14px 0;
    }

    .fti-vmt-item-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 21px;
    }

    .fti-vmt-item p {
        font-size: 12px;
    }
}

/* ==============================
   FTI CORE VALUE SECTION
================================= */

.fti-core-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 82px;
    background:
        radial-gradient(circle at 8% 18%, rgba(31, 59, 93, 0.05) 0%, rgba(31, 59, 93, 0.018) 30%, transparent 54%),
        radial-gradient(circle at 92% 82%, rgba(37, 109, 255, 0.05) 0%, rgba(37, 109, 255, 0.018) 32%, transparent 60%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.fti-core-section::before,
.fti-core-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 220px;
    opacity: 0.18;
    background:
        linear-gradient(135deg, transparent 0 20%, rgba(37, 109, 255, 0.22) 20% 22%, transparent 22% 42%, rgba(37, 109, 255, 0.18) 42% 44%, transparent 44%),
        radial-gradient(rgba(37, 109, 255, 0.28) 2px, transparent 2px);
    background-size: 46px 46px, 28px 28px;
}

.fti-core-section::before {
    left: -40px;
    top: 145px;
}

.fti-core-section::after {
    right: -40px;
    top: 95px;
    transform: scaleX(-1);
}

.fti-core-container {
    position: relative;
    z-index: 2;
    padding-left: 62px;
    padding-right: 62px;
}

.fti-core-heading {
    max-width: 980px;
    margin: 0 auto 44px;
    text-align: center;
}

.fti-core-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--color2);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.fti-core-label span {
    width: 42px;
    height: 3px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-core-heading h2 {
    margin: 0 0 16px;
    color: var(--color1);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -1.2px;
}

.fti-core-heading p {
    max-width: 820px;
    margin: 0 auto 24px;
    color: rgba(22, 34, 58, 0.72);
    font-size: 16px;
    line-height: 1.55;
}

/* Tagline */
.fti-core-tagline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.fti-core-tagline::before,
.fti-core-tagline::after {
    position: absolute;
    top: 32px;
    color: var(--color2);
    font-size: 48px;
    font-family: Georgia, serif;
    font-weight: 900;
    line-height: 1;
}

.fti-core-tagline::before {
    content: "“";
    left: -50px;
}

.fti-core-tagline::after {
    content: "”";
    right: -50px;
}

.fti-core-tagline-badge {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto -13px;
    padding: 8px 28px;
    border-radius: 10px;
    background: #0050B8;
    color: var(--color4);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.fti-core-tagline-text {
    padding: 22px 34px 18px;
    border-radius: 999px;
    border: 1px solid rgba(37, 109, 255, 0.24);
    background: rgba(255, 255, 255, 0.72);
    color: #0050B8;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
}

.fti-core-tagline-sub {
    width: fit-content;
    margin: -3px auto 0;
    padding: 8px 24px;
    border-radius: 999px;
    background: var(--color2);
    color: var(--color1);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

/* Cards */
.fti-core-card-row {
    row-gap: 28px;
    margin-top: 48px;
}

.fti-core-card {
    position: relative;
    height: 100%;
    min-height: 365px;
    padding: 34px 24px 28px;
    border-radius: 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(31, 59, 93, 0.07);
    box-shadow: 0 18px 38px rgba(31, 59, 93, 0.09);
    overflow: hidden;
}

.fti-core-icon {
    width: 94px;
    height: 94px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0050B8;
    font-size: 48px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 59, 93, 0.06);
    box-shadow: 0 12px 26px rgba(31, 59, 93, 0.08);
}

.fti-core-card h3 {
    margin: 0;
    color: var(--color1);
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
}

.fti-core-card>span {
    display: block;
    width: 34px;
    height: 3px;
    margin: 18px auto 18px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-core-card p {
    max-width: 220px;
    margin: 0 auto;
    color: rgba(22, 34, 58, 0.72);
    font-size: 13.5px;
    line-height: 1.55;
}

.fti-core-card strong {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    color: rgba(37, 109, 255, 0.20);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

/* Impact */
.fti-core-impact {
    margin-top: 34px;
    padding: 28px 34px;
    display: grid;
    grid-template-columns: 1.65fr repeat(4, 1fr);
    align-items: center;
    border-radius: 16px;
    background:
        radial-gradient(circle at 10% 40%, rgba(37, 109, 255, 0.35) 0%, transparent 36%),
        linear-gradient(115deg, #06193b 0%, var(--color1) 52%, #0538c9 100%);
    color: var(--color4);
    box-shadow: 0 20px 44px rgba(31, 59, 93, 0.24);
}

.fti-core-impact-main {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 22px;
    padding-right: 28px;
}

.fti-core-impact-icon {
    width: 98px;
    height: 98px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color4);
    font-size: 64px;
    background: rgba(37, 109, 255, 0.20);
}

.fti-core-impact-main h4 {
    margin: 0;
    color: var(--color4);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.42;
}

.fti-core-impact-main h4 strong {
    display: block;
    color: var(--color2);
}

.fti-core-impact-item {
    min-height: 120px;
    padding: 0 24px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.20);
}

.fti-core-impact-item i {
    margin-bottom: 14px;
    color: var(--color2);
    font-size: 34px;
}

.fti-core-impact-item h5 {
    margin: 0 0 8px;
    color: var(--color4);
    font-size: 14px;
    font-weight: 900;
}

.fti-core-impact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.45;
}

/* Animation */
.fti-core-heading,
.fti-core-card,
.fti-core-impact {
    animation: ftiCoreFadeUp 0.85s ease both;
}

.fti-core-heading {
    animation-delay: 0.05s;
}

.fti-core-card-row>div:nth-child(1) .fti-core-card {
    animation-delay: 0.14s;
}

.fti-core-card-row>div:nth-child(2) .fti-core-card {
    animation-delay: 0.22s;
}

.fti-core-card-row>div:nth-child(3) .fti-core-card {
    animation-delay: 0.30s;
}

.fti-core-card-row>div:nth-child(4) .fti-core-card {
    animation-delay: 0.38s;
}

.fti-core-card-row>div:nth-child(5) .fti-core-card {
    animation-delay: 0.46s;
}

.fti-core-impact {
    animation-delay: 0.54s;
}

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

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

.fti-core-card,
.fti-core-icon,
.fti-core-impact-item,
.fti-core-impact-icon {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.fti-core-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 28px 56px rgba(31, 59, 93, 0.15);
}

.fti-core-card:hover .fti-core-icon {
    background: var(--color2);
    color: var(--color1);
    transform: rotate(-4deg) scale(1.08);
    box-shadow: 0 16px 32px rgba(251, 212, 5, 0.26);
}

.fti-core-card:hover>span {
    width: 58px;
}

.fti-core-card>span {
    transition: width 0.35s ease;
}

.fti-core-impact-item:hover,
.fti-core-impact-main:hover .fti-core-impact-icon {
    transform: translateY(-6px);
}

.fti-core-impact-main:hover .fti-core-impact-icon {
    background: var(--color2);
    color: var(--color1);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .fti-core-container {
        padding-left: 42px;
        padding-right: 42px;
    }

    .fti-core-heading h2 {
        font-size: 40px;
    }

    .fti-core-card {
        min-height: 350px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .fti-core-impact {
        grid-template-columns: 1.45fr repeat(4, 1fr);
    }
}

@media (max-width: 1199.98px) {
    .fti-core-impact {
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
    }

    .fti-core-impact-main {
        grid-column: 1 / -1;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    }

    .fti-core-impact-item {
        border-left: 0;
    }

    .fti-core-impact-item:nth-child(3),
    .fti-core-impact-item:nth-child(5) {
        border-left: 1px solid rgba(255, 255, 255, 0.20);
    }
}

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

    .fti-core-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fti-core-label {
        gap: 10px;
        font-size: 11px;
    }

    .fti-core-label span {
        width: 30px;
    }

    .fti-core-heading h2 {
        font-size: 29px;
    }

    .fti-core-heading p {
        font-size: 13.5px;
    }

    .fti-core-tagline::before,
    .fti-core-tagline::after {
        display: none;
    }

    .fti-core-tagline-text {
        padding: 20px 18px 16px;
        border-radius: 18px;
        font-size: 18px;
    }

    .fti-core-tagline-sub {
        font-size: 13px;
    }

    .fti-core-card {
        min-height: 310px;
    }

    .fti-core-icon {
        width: 78px;
        height: 78px;
        font-size: 38px;
    }

    .fti-core-impact {
        padding: 24px 18px;
        grid-template-columns: 1fr;
    }

    .fti-core-impact-main {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }

    .fti-core-impact-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        font-size: 42px;
    }

    .fti-core-impact-main h4 {
        font-size: 16px;
    }

    .fti-core-impact-item,
    .fti-core-impact-item:nth-child(3),
    .fti-core-impact-item:nth-child(5) {
        min-height: auto;
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .fti-core-impact-item:last-child {
        border-bottom: 0;
    }
}

/* ==============================
   FTI PROGRAM SECTION
================================= */

.fti-program-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 82px;
    background:
        radial-gradient(circle at 8% 18%, rgba(31, 59, 93, 0.052) 0%, rgba(31, 59, 93, 0.018) 30%, transparent 54%),
        radial-gradient(circle at 92% 84%, rgba(37, 109, 255, 0.052) 0%, rgba(37, 109, 255, 0.018) 32%, transparent 60%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.fti-program-container {
    position: relative;
    z-index: 2;
    padding-left: 72px;
    padding-right: 72px;
}

.fti-program-heading {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.fti-program-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--color2);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.fti-program-label span {
    width: 42px;
    height: 3px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-program-heading h2 {
    margin: 0 0 16px;
    color: var(--color1);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.fti-program-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(22, 34, 58, 0.72);
    font-size: 17px;
    line-height: 1.55;
}

.fti-program-card-row {
    row-gap: 28px;
}

/* Card */
.fti-program-card {
    position: relative;
    height: 100%;
    min-height: 430px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 59, 93, 0.075);
    box-shadow: 0 20px 42px rgba(31, 59, 93, 0.10);
    overflow: hidden;
}

.fti-program-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 26px;
}

.fti-program-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 109, 255, 0.06), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent);
    pointer-events: none;
}

.fti-program-illustration,
.fti-program-content {
    position: relative;
    z-index: 2;
}

.fti-program-illustration {
    width: 205px;
    height: 205px;
    align-self: flex-start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(37, 109, 255, 0.18);
}

.fti-program-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fti-program-content {
    min-width: 0;
}

.fti-program-badge {
    width: fit-content;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.fti-program-badge-blue {
    background: #256DFF;
    color: var(--color4);
}

.fti-program-badge-yellow {
    background: var(--color2);
    color: var(--color1);
}

.fti-program-content h3 {
    margin: 0;
    color: var(--color1);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.fti-program-line {
    display: block;
    width: 42px;
    height: 3px;
    margin: 16px 0 20px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-program-content>p {
    max-width: 100%;
    margin: 0;
    color: rgba(22, 34, 58, 0.72);
    font-size: 14px;
    line-height: 1.62;
}

/* Focus fix */
.fti-program-focus {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: auto 0 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fti-program-focus-item {
    min-height: 74px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(31, 59, 93, 0.07);
    box-shadow: 0 10px 24px rgba(31, 59, 93, 0.07);
}

.fti-program-btn {
    position: relative;
    z-index: 2;

    /* CENTER FIX */
    align-self: center;
    margin: 0 auto;

    min-height: 48px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border-radius: 9px;
    background: #256DFF;
    color: var(--color4);

    font-size: 14px;
    font-weight: 900;
    text-decoration: none;

    box-shadow: 0 12px 24px rgba(37, 109, 255, 0.22);
    transition: 0.35s ease;
}

.fti-program-card-si .fti-program-btn {
    background: var(--color2);
    color: var(--color1);
    box-shadow: 0 12px 24px rgba(251, 212, 5, 0.22);
}

.fti-program-card-ti .fti-program-btn {
    background: #256DFF;
    color: var(--color4);
}

.fti-program-btn i {
    transition: transform 0.35s ease;
}

.fti-program-btn:hover {
    background: var(--color1);
    color: var(--color4);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(31, 59, 93, 0.22);
}

.fti-program-btn:hover i {
    transform: translateX(7px);
}

.fti-program-focus-item i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #256DFF;
    background: rgba(37, 109, 255, 0.10);
    font-size: 17px;
}

.fti-program-card-ti .fti-program-focus-item i {
    color: #256DFF;
    background: rgba(37, 109, 255, 0.10);
}

.fti-program-focus-item span {
    min-width: 0;
    color: rgba(22, 34, 58, 0.78);
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.32;
    word-break: normal;
}

.fti-program-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #256DFF;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.fti-program-link i {
    transition: transform 0.35s ease;
}

.fti-program-link:hover {
    color: var(--color1);
    text-decoration: none;
}

.fti-program-link:hover i {
    transform: translateX(7px);
}

/* International */
.fti-program-international {
    position: relative;
    margin-top: 34px;
    padding: 34px 36px 30px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 10% 40%, rgba(37, 109, 255, 0.08), transparent 38%),
        linear-gradient(135deg, rgba(241, 247, 255, 0.94), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(31, 59, 93, 0.075);
    box-shadow: 0 20px 42px rgba(31, 59, 93, 0.10);
    overflow: hidden;
}

.fti-program-international::before {
    content: "";
    position: absolute;
    left: 82px;
    top: 70px;
    width: 260px;
    height: 150px;
    background-image: radial-gradient(rgba(37, 109, 255, 0.12) 1.4px, transparent 1.4px);
    background-size: 13px 13px;
    opacity: 0.6;
}

.fti-program-international {
    display: grid;
    grid-template-columns: 1.55fr 4fr;
    gap: 34px;
    align-items: stretch;
}

.fti-program-intro {
    position: relative;
    z-index: 2;
    padding-right: 28px;
}

.fti-program-intro h3 {
    margin: 0;
    color: var(--color1);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.16;
}

.fti-program-intro h3 strong {
    color: #256DFF;
}

.fti-program-intro>span {
    display: block;
    width: 42px;
    height: 3px;
    margin: 20px 0;
    border-radius: 50px;
    background: var(--color2);
}

.fti-program-intro p {
    margin: 0;
    color: rgba(22, 34, 58, 0.72);
    font-size: 14px;
    line-height: 1.58;
}

.fti-program-int-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fti-program-int-item {
    min-height: 210px;
    padding: 0 28px;
    text-align: center;
    border-left: 1px solid rgba(31, 59, 93, 0.12);
}

.fti-program-int-item i {
    margin-bottom: 18px;
    color: #256DFF;
    font-size: 52px;
    line-height: 1;
}

.fti-program-int-item h4 {
    margin: 0 0 16px;
    color: var(--color1);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.28;
}

.fti-program-int-item p {
    margin: 0;
    color: rgba(22, 34, 58, 0.70);
    font-size: 12.5px;
    line-height: 1.55;
}

.fti-program-int-action {
    position: relative;
    z-index: 3;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.fti-program-int-btn {
    min-width: 360px;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #256DFF;
    color: var(--color4);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(37, 109, 255, 0.24);
    transition: 0.35s ease;
}

.fti-program-int-btn i:last-child {
    transition: transform 0.35s ease;
}

.fti-program-int-btn:hover {
    background: var(--color2);
    color: var(--color1);
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(251, 212, 5, 0.25);
}

.fti-program-int-btn:hover i:last-child {
    transform: translateX(7px);
}

/* Animation */
.fti-program-heading,
.fti-program-card,
.fti-program-international {
    animation: ftiProgramFadeUp 0.85s ease both;
}

.fti-program-heading {
    animation-delay: 0.05s;
}

.fti-program-card-row>div:nth-child(1) .fti-program-card {
    animation-delay: 0.16s;
}

.fti-program-card-row>div:nth-child(2) .fti-program-card {
    animation-delay: 0.28s;
}

.fti-program-international {
    animation-delay: 0.40s;
}

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

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

.fti-program-card,
.fti-program-illustration img,
.fti-program-focus-item,
.fti-program-int-item,
.fti-program-int-item i {
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease, background 0.35s ease;
}

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

.fti-program-card:hover .fti-program-illustration img {
    transform: scale(1.06);
    filter: brightness(1.04) saturate(1.08);
}

.fti-program-focus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(31, 59, 93, 0.10);
}

.fti-program-int-item:hover {
    transform: translateY(-7px);
}

.fti-program-int-item:hover i {
    transform: scale(1.08) rotate(-4deg);
    color: var(--color2);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .fti-program-container {
        padding-left: 46px;
        padding-right: 46px;
    }

    .fti-program-card {
        grid-template-columns: 185px minmax(0, 1fr);
        gap: 24px;
    }

    .fti-program-illustration {
        width: 180px;
        height: 180px;
    }

    .fti-program-content h3 {
        font-size: 26px;
    }

    .fti-program-content>p {
        font-size: 14px;
    }

    .fti-program-main {
        grid-template-columns: 185px minmax(0, 1fr);
        gap: 24px;
    }

    .fti-program-focus {
        gap: 10px;
    }

    .fti-program-focus-item {
        padding: 11px 12px;
        gap: 9px;
    }

    .fti-program-focus-item span {
        font-size: 10.8px;
    }
}

@media (max-width: 1199.98px) {
    .fti-program-card {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .fti-program-international {
        grid-template-columns: 1fr;
    }

    .fti-program-intro {
        padding-right: 0;
        text-align: center;
    }

    .fti-program-intro>span {
        margin-left: auto;
        margin-right: auto;
    }

    .fti-program-int-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 0;
    }

    .fti-program-int-item {
        border-left: 0;
        padding: 0 22px;
    }
}

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

    .fti-program-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fti-program-label {
        gap: 10px;
        font-size: 11px;
    }

    .fti-program-label span {
        width: 30px;
    }

    .fti-program-heading h2 {
        font-size: 31px;
    }

    .fti-program-heading p {
        font-size: 13.5px;
    }

    .fti-program-card {
        padding: 20px;
    }

    .fti-program-main {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .fti-program-illustration {
        width: 160px;
        height: 160px;
    }

    .fti-program-content h3 {
        font-size: 23px;
    }

    .fti-program-content>p {
        font-size: 13.5px;
    }

    .fti-program-focus {
        grid-template-columns: 1fr;
        margin-top: 4px;
    }

    .fti-program-btn {
        width: 100%;
    }

    .fti-program-international {
        padding: 28px 20px 30px;
    }

    .fti-program-intro h3 {
        font-size: 25px;
    }

    .fti-program-int-list {
        grid-template-columns: 1fr;
    }

    .fti-program-int-item {
        min-height: auto;
        padding: 18px 0;
        border-top: 1px solid rgba(31, 59, 93, 0.10);
    }

    .fti-program-int-item i {
        font-size: 42px;
    }

    .fti-program-int-btn {
        min-width: 100%;
        font-size: 12.5px;
    }
}

@media (max-width: 767.98px) {
    .fti-program-btn {
        width: 100%;
        align-self: stretch;
    }
}

/* ==============================
   FTI EXCELLENCE SECTION
================================= */

.fti-excellence-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 82px;
    background:
        linear-gradient(180deg, rgba(248,251,255,0.88), rgba(255,255,255,0.96)),
        url('../images/fti/excellence-bg.png') right top / 420px auto no-repeat,
        radial-gradient(circle at 8% 18%, rgba(31, 59, 93, 0.05) 0%, rgba(31, 59, 93, 0.018) 30%, transparent 54%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.fti-excellence-section::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 32px;
    width: 160px;
    height: 170px;
    background-image: radial-gradient(rgba(37,109,255,0.18) 1.4px, transparent 1.4px);
    background-size: 13px 13px;
    opacity: 0.28;
}

.fti-excellence-container {
    position: relative;
    z-index: 2;
    padding-left: 72px;
    padding-right: 72px;
}

.fti-excellence-heading {
    max-width: 980px;
    margin: 0 auto 34px;
    text-align: center;
}

.fti-excellence-label,
.fti-excellence-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #256DFF;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.fti-excellence-label span,
.fti-excellence-subtitle span {
    width: 42px;
    height: 3px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-excellence-heading h2 {
    margin: 16px 0 14px;
    color: var(--color1);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.fti-excellence-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(22, 34, 58, 0.72);
    font-size: 15.5px;
    line-height: 1.55;
}

/* Main stats */
.fti-excellence-stats {
    padding: 32px 26px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(31, 59, 93, 0.08);
    box-shadow: 0 20px 42px rgba(31, 59, 93, 0.10);
}

.fti-excellence-stat {
    padding: 0 22px;
    text-align: center;
    border-right: 1px solid rgba(31,59,93,0.13);
}

.fti-excellence-stat:last-child {
    border-right: 0;
}

.fti-excellence-stat i {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #256DFF;
    font-size: 38px;
    background: rgba(37,109,255,0.08);
}

.fti-excellence-stat h3 {
    margin: 0 0 10px;
    color: #0050B8;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.fti-excellence-stat h4 {
    margin: 0 0 8px;
    color: var(--color1);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.fti-excellence-stat p {
    margin: 0;
    color: rgba(22, 34, 58, 0.70);
    font-size: 12px;
    line-height: 1.5;
}

/* Achievement */
.fti-achievement-box {
    margin-top: 28px;
    padding: 28px 34px;
    display: grid;
    grid-template-columns: 220px 160px repeat(5, 1fr);
    align-items: center;
    border-radius: 20px;
    background:
        radial-gradient(circle at 12% 50%, rgba(37,109,255,0.34), transparent 36%),
        linear-gradient(115deg, #06193b 0%, var(--color1) 52%, #0538c9 100%);
    color: var(--color4);
    box-shadow: 0 22px 46px rgba(31, 59, 93, 0.24);
}

.fti-trophy-circle {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color4);
    background: radial-gradient(circle, rgba(37,109,255,0.36), rgba(5,25,62,0.25));
    box-shadow: 0 0 34px rgba(37,109,255,0.36);
}

.fti-trophy-circle i {
    font-size: 72px;
}

.fti-trophy-circle span {
    margin-top: -38px;
    font-size: 22px;
    font-weight: 900;
}

.fti-achievement-title h3 {
    margin: 0;
    color: var(--color4);
    font-size: 23px;
    font-weight: 900;
}

.fti-achievement-title span {
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 12px;
    border-radius: 50px;
    background: var(--color2);
}

.fti-achievement-item {
    min-height: 170px;
    padding: 0 24px;
    border-left: 1px solid rgba(255,255,255,0.20);
}

.fti-achievement-item i {
    margin-bottom: 14px;
    color: var(--color2);
    font-size: 42px;
}

.fti-achievement-item h4 {
    margin: 0 0 8px;
    color: var(--color2);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.fti-achievement-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color4);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.fti-achievement-item p {
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.5;
}

.fti-excellence-subtitle {
    width: 100%;
    justify-content: center;
    margin: 28px 0 14px;
    color: #0050B8;
    font-size: 18px;
}

/* Fields */
.fti-excellence-fields {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.fti-field-card {
    min-height: 118px;
    padding: 18px 16px;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(31, 59, 93, 0.07);
    box-shadow: 0 14px 30px rgba(31, 59, 93, 0.08);
}

.fti-field-card i {
    width: 50px;
    height: 50px;
    grid-row: span 2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #256DFF;
    font-size: 26px;
    background: rgba(37,109,255,0.08);
}

.fti-field-card h4 {
    margin: 0;
    color: #0050B8;
    font-size: 11.5px;
    font-weight: 900;
    line-height: 1.25;
}

.fti-field-card p {
    margin: 0;
    color: rgba(22, 34, 58, 0.68);
    font-size: 10.5px;
    line-height: 1.45;
}

/* Animations */
.fti-excellence-heading,
.fti-excellence-stats,
.fti-achievement-box,
.fti-field-card {
    animation: ftiExcellenceFadeUp 0.85s ease both;
}

.fti-excellence-heading { animation-delay: 0.05s; }
.fti-excellence-stats { animation-delay: 0.16s; }
.fti-achievement-box { animation-delay: 0.28s; }
.fti-excellence-fields .fti-field-card:nth-child(1) { animation-delay: 0.36s; }
.fti-excellence-fields .fti-field-card:nth-child(2) { animation-delay: 0.42s; }
.fti-excellence-fields .fti-field-card:nth-child(3) { animation-delay: 0.48s; }
.fti-excellence-fields .fti-field-card:nth-child(4) { animation-delay: 0.54s; }
.fti-excellence-fields .fti-field-card:nth-child(5) { animation-delay: 0.60s; }
.fti-excellence-fields .fti-field-card:nth-child(6) { animation-delay: 0.66s; }

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

.fti-excellence-stat,
.fti-excellence-stat i,
.fti-achievement-item,
.fti-achievement-item i,
.fti-field-card,
.fti-field-card i {
    transition: 0.35s ease;
}

.fti-excellence-stat:hover,
.fti-achievement-item:hover,
.fti-field-card:hover {
    transform: translateY(-7px);
}

.fti-excellence-stat:hover i,
.fti-field-card:hover i {
    background: var(--color2);
    color: var(--color1);
    transform: rotate(-4deg) scale(1.08);
}

.fti-achievement-item:hover i {
    transform: scale(1.08) rotate(-4deg);
}

/* Responsive */
@media (max-width: 1399.98px) {
    .fti-excellence-container {
        padding-left: 42px;
        padding-right: 42px;
    }

    .fti-excellence-heading h2 {
        font-size: 40px;
    }

    .fti-excellence-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px 0;
    }

    .fti-excellence-stat:nth-child(3) {
        border-right: 0;
    }

    .fti-excellence-stat:nth-child(1),
    .fti-excellence-stat:nth-child(2),
    .fti-excellence-stat:nth-child(3) {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(31,59,93,0.13);
    }

    .fti-achievement-box {
        grid-template-columns: 1fr 1fr;
        gap: 26px 0;
    }

    .fti-achievement-trophy,
    .fti-achievement-title {
        grid-column: span 1;
    }

    .fti-excellence-fields {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .fti-excellence-section {
        padding: 54px 0 58px;
        background:
            linear-gradient(180deg, rgba(248,251,255,0.92), rgba(255,255,255,0.98)),
            radial-gradient(circle at 8% 18%, rgba(31,59,93,0.05), transparent 54%),
            linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
    }

    .fti-excellence-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fti-excellence-label {
        gap: 10px;
        font-size: 11px;
    }

    .fti-excellence-label span {
        width: 30px;
    }

    .fti-excellence-heading h2 {
        font-size: 29px;
    }

    .fti-excellence-heading p {
        font-size: 13.5px;
    }

    .fti-excellence-stats {
        grid-template-columns: 1fr;
        padding: 26px 18px;
    }

    .fti-excellence-stat,
    .fti-excellence-stat:nth-child(3) {
        padding: 0 0 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(31,59,93,0.13);
    }

    .fti-excellence-stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .fti-achievement-box {
        padding: 26px 18px;
        grid-template-columns: 1fr;
    }

    .fti-achievement-title {
        text-align: center;
    }

    .fti-achievement-title span {
        margin-left: auto;
        margin-right: auto;
    }

    .fti-achievement-item {
        min-height: auto;
        padding: 20px 0;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.18);
        text-align: center;
    }

    .fti-excellence-fields {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   FTI CTA SECTION - REWRITE
================================= */

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

.fti-cta-container {
    padding-left: 28px;
    padding-right: 28px;
}

.fti-cta-main {
    position: relative;
    overflow: hidden;
    max-width: 1540px;
    margin: 0 auto;
    padding: 72px 58px 36px;
    border-radius: 24px;
    color: var(--color4);
    background:
        radial-gradient(circle at 78% 44%, rgba(34, 91, 255, 0.82) 0%, rgba(12, 64, 180, 0.62) 30%, rgba(6, 25, 59, 0) 58%),
        linear-gradient(115deg, #06193b 0%, #09285b 45%, #0538c9 100%);
    box-shadow: 0 24px 56px rgba(31, 59, 93, 0.20);
}

/* HERO AREA */
.fti-cta-hero-row {
    position: relative;
    z-index: 2;
    min-height: 520px;
    align-items: stretch;
}

.fti-cta-content {
    position: relative;
    z-index: 4;
    padding-right: 28px;
}

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

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

.fti-cta-content h2 {
    max-width: 660px;
    margin: 0 0 24px;
    color: var(--color4);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -1.8px;
}

.fti-cta-content > p {
    max-width: 720px;
    margin: 0 0 44px;
    color: rgba(255,255,255,0.86);
    font-size: 19px;
    line-height: 1.58;
}

/* Benefits */
.fti-cta-benefits {
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fti-cta-benefit {
    padding: 0 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.24);
}

.fti-cta-benefit:first-child {
    padding-left: 0;
}

.fti-cta-benefit:last-child {
    padding-right: 0;
    border-right: 0;
}

.fti-cta-benefit i {
    display: block;
    margin-bottom: 13px;
    color: var(--color2);
    font-size: 38px;
}

.fti-cta-benefit span {
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

/* Visual: max 50% desktop, always right edge */
.fti-cta-visual {
    position: relative;
    z-index: 3;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
    overflow: visible;
}

.fti-cta-visual img {
    position: absolute;
    right: -58px;
    bottom: -6px;
    width: auto;
    height: 560px;
    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;
}

/* ACTION BOX */
.fti-cta-action-box {
    position: relative;
    z-index: 6;
    margin-top: -4px;
    padding: 30px 28px;
    display: grid;
    grid-template-columns: 1.75fr repeat(4, 1fr);
    gap: 0;
    align-items: stretch;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    color: var(--color1);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

.fti-cta-action-intro {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    align-items: center;
    padding-right: 32px;
}

.fti-cta-action-icon,
.fti-cta-action-item > i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,109,255,0.09);
    color: #256DFF;
    font-size: 34px;
}

.fti-cta-action-intro h3 {
    margin: 0 0 12px;
    color: var(--color1);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.35;
}

.fti-cta-action-intro p {
    margin: 0;
    color: rgba(22, 34, 58, 0.72);
    font-size: 13px;
    line-height: 1.55;
}

.fti-cta-action-item {
    padding: 0 22px;
    text-align: center;
    border-left: 1px solid rgba(31,59,93,0.14);
}

.fti-cta-action-item > i {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    font-size: 28px;
}

.fti-cta-action-item h4 {
    margin: 0 0 10px;
    color: var(--color1);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.fti-cta-action-item p {
    min-height: 44px;
    margin: 0 0 14px;
    color: rgba(22, 34, 58, 0.70);
    font-size: 11.5px;
    line-height: 1.45;
}

.fti-cta-action-item a {
    min-height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    background: #256DFF;
    color: var(--color4);
    font-size: 11.5px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37,109,255,0.22);
    transition: 0.35s ease;
}

.fti-cta-action-item a i {
    transition: transform 0.35s ease;
}

.fti-cta-action-item a:hover {
    background: var(--color2);
    color: var(--color1);
    text-decoration: none;
    transform: translateY(-3px);
}

.fti-cta-action-item a:hover i {
    transform: translateX(6px);
}

/* Quote */
.fti-cta-quote {
    position: relative;
    z-index: 3;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--color4);
    text-align: center;
}

.fti-cta-quote i {
    color: var(--color2);
    font-size: 23px;
}

.fti-cta-quote p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

/* Animation */
.fti-cta-label,
.fti-cta-content h2,
.fti-cta-content > p,
.fti-cta-benefit,
.fti-cta-visual img,
.fti-cta-action-box,
.fti-cta-quote {
    animation: ftiCtaFadeUp 0.85s ease both;
}

.fti-cta-label { animation-delay: 0.06s; }
.fti-cta-content h2 { animation-delay: 0.14s; }
.fti-cta-content > p { animation-delay: 0.22s; }
.fti-cta-benefit:nth-child(1) { animation-delay: 0.30s; }
.fti-cta-benefit:nth-child(2) { animation-delay: 0.38s; }
.fti-cta-benefit:nth-child(3) { animation-delay: 0.46s; }
.fti-cta-benefit:nth-child(4) { animation-delay: 0.54s; }
.fti-cta-visual img { animation-delay: 0.24s; }
.fti-cta-action-box { animation-delay: 0.62s; }
.fti-cta-quote { animation-delay: 0.72s; }

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

.fti-cta-benefit,
.fti-cta-benefit i,
.fti-cta-action-item,
.fti-cta-action-item > i {
    transition: 0.35s ease;
}

.fti-cta-benefit:hover,
.fti-cta-action-item:hover {
    transform: translateY(-7px);
}

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

/* Responsive */
@media (max-width: 1399.98px) {
    .fti-cta-main {
        padding-left: 46px;
        padding-right: 46px;
    }

    .fti-cta-content h2 {
        max-width: 600px;
        font-size: 46px;
    }

    .fti-cta-content > p {
        max-width: 620px;
        font-size: 16px;
    }

    .fti-cta-visual img {
        right: -46px;
        height: 520px;
    }

    .fti-cta-action-box {
        grid-template-columns: 1fr 1fr;
        gap: 28px 0;
    }

    .fti-cta-action-intro {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .fti-cta-action-item:nth-child(2),
    .fti-cta-action-item:nth-child(4) {
        border-left: 0;
    }
}

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

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

    .fti-cta-visual {
        min-height: 440px;
    }

    .fti-cta-visual img {
        position: relative;
        right: -46px;
        bottom: 0;
        height: 440px;
        max-width: 100%;
        margin-left: auto;
    }
}

@media (max-width: 991.98px) {
    .fti-cta-main {
        padding: 54px 28px 34px;
    }

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

    .fti-cta-content > p,
    .fti-cta-benefits {
        max-width: 100%;
    }

    .fti-cta-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .fti-cta-benefit:nth-child(2) {
        border-right: 0;
    }

    .fti-cta-visual {
        justify-content: flex-end;
        min-height: 420px;
    }

    .fti-cta-visual img {
        right: -28px;
        height: 420px;
    }
}

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

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

    .fti-cta-main {
        padding: 42px 18px 30px;
        border-radius: 18px;
    }

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

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

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

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

    .fti-cta-benefits {
        grid-template-columns: 1fr;
    }

    .fti-cta-benefit,
    .fti-cta-benefit:nth-child(2) {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .fti-cta-benefit:last-child {
        border-bottom: 0;
    }

    .fti-cta-visual {
        min-height: 330px;
    }

    .fti-cta-visual img {
        right: -18px;
        height: 330px;
    }

    .fti-cta-action-box {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

    .fti-cta-action-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fti-cta-action-icon {
        margin: 0 auto;
    }

    .fti-cta-action-intro h3 {
        font-size: 21px;
    }

    .fti-cta-action-item,
    .fti-cta-action-item:nth-child(2),
    .fti-cta-action-item:nth-child(4) {
        padding: 22px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(31,59,93,0.12);
    }

    .fti-cta-quote {
        gap: 10px;
    }

    .fti-cta-quote p {
        font-size: 13.5px;
    }
}