/* --- CSS VARIABLES & SYSTEM RESET --- */
:root {
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --header-height: 85px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: #ffffff;
    color: #111111;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

button,
input,
textarea,
select {
    font-family: var(--font-primary);
}

/* --- HEADER NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

/* Active State (When hovered or scrolled) */
header.header-active-menu {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.header-container {
    width: 100%;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Link Wrapper & Base Sizing */
.logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 75px;
    /* Standard vertical offset height */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* 
   TRANSITION FILTER LOGIC:
   Automatically turns the dark logo into an all-white silhouette when 
   over the dark hero section, then back to original colors when the header turns white.
*/
header .logo-img {
    filter: brightness(0) invert(1);
}

header.header-active-menu .logo-img {
    filter: none;
}

/* Nav Items & Dropdowns */
.nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.nav-item-custom {
    position: static;
    height: var(--header-height);
    display: inline-flex;
    align-items: center;
}

.nav-link-custom {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

header.header-active-menu .nav-link-custom {
    color: #333333;
}

header.header-active-menu .nav-link-custom:hover {
    color: #000000;
}

.btn-lp-login {
    font-weight: 600;
}

/* --- MEGA MENU DROPDOWN PANEL --- */
.mega-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
}

.nav-item-custom:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-header {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #888888;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 0.65rem;
}

.menu-item-link {
    font-size: 1.05rem;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.menu-item-link:hover {
    opacity: 0.6;
}

/* Dark overlay backdrop behind mega-menu */
.menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}


/* --- HERO BANNER SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #000000;
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(7, 13, 12, 0.78) 0%, rgba(7, 13, 12, 0.48) 38%, rgba(7, 13, 12, 0.12) 70%),
        linear-gradient(0deg, rgba(6, 10, 9, 0.74) 0%, rgba(6, 10, 9, 0.08) 55%, rgba(6, 10, 9, 0.32) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Dynamic Fading Background Slideshow */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Hero Content Details */
.hero-container {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 3rem);
    max-width: 1440px;
    min-height: 100vh;
    min-height: 100svh;
    margin-inline: auto;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: clamp(3.5rem, 8vh, 6.5rem);
}

.hero-content {
    width: 100%;
    max-width: 1020px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-eyebrow-mark {
    width: 2.5rem;
    height: 1px;
    background: #b9d9a8;
}

.hero-headline {
    max-width: 1000px;
    font-size: clamp(3.15rem, 4.5vw, 5.25rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.055em;
    margin: 0;
    line-height: 0.98;
    text-wrap: balance;
}

.hero-headline span {
    color: #d5d7ed;
}

.hero-content-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    max-width: 960px;
    margin-top: clamp(1.75rem, 3.5vh, 2.75rem);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-subtext {
    width: 100%;
    max-width: 610px;
    margin: 0;
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    flex: 0 0 auto;
}

.hero-btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 3.5rem;
    padding: 0.8rem 1.15rem 0.8rem 1.35rem;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    border-radius: 12px;
}

.hero-btn-icon {
    display: grid;
    place-items: center;
    /* width: 1.75rem; */
    /* height: 1.75rem; */
    color: #ffffff;
    font-size: 0.85rem;
    /* background: #d8ebce; */
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-btn-link:hover,
.hero-btn-link:focus-visible {
    color: #101a13;
    border-color: #ffffff;
    background: #ffffff;
}

.hero-btn-link:hover .hero-btn-icon,
.hero-btn-link:focus-visible .hero-btn-icon {
    transform: translate(2px, -2px);
    color: #101a13;
}


/* --- INTRO SECTION (ON SCROLL) --- */
.intro-section {
    background-color: #ffffff;
    padding: 8rem 0;
    position: relative;
    z-index: 5;
}

.intro-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.45rem);
    font-weight: 400;
    line-height: 1.35;
    color: #111111;
    letter-spacing: -0.02em;
}

.intro-body-text {
    font-size: 1.125rem;
    line-height: 1.65;
    color: #555555;
}

.intro-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    border-bottom: 2px solid #111111;
    padding-bottom: 4px;
    transition: opacity 0.2s ease;
}

.intro-link:hover {
    opacity: 0.6;
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991.98px) {
    header {
        background-color: rgba(0, 0, 0, 0.85);
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        padding-bottom: 4rem;
    }

    .hero-content-footer {
        max-width: 720px;
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

    .intro-section {
        padding: 5rem 0;
    }
}

/* --- ABOUT & PURPOSE DESIGN SYSTEM --- */

/* Section Spacing & Background */
.about-section {
    background-color: #F8F7F5;
    /* Warm off-white background matching screenshot */
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.purpose-section {
    background-color: #f8f7f5;
    /* Slightly different tone to distinguish sections */
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Section Header Tags */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tag i {
    font-size: 0.95rem;
}

/* Typography styles */
.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    /* margin-bottom: 1.5rem; */
}

/* Custom Minimalist Dark Buttons */
.btn-pill-dark {
    display: inline-block;
    background-color: #111111;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-pill-dark:hover {
    background-color: #2b2b2b;
    transform: translateY(-1px);
}

/* --- STAT CARDS --- */
.stat-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    /* transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); */
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
}

.stat-icon {
    font-size: 1.35rem;
    color: #171e6d;
    opacity: 0.85;

}

.stat-card:hover .stat-icon {
    color: #fff;
}

.stat-number {
    font-size: 55px;
    font-weight: 700;
    color: #171e6d;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: auto;
}

/* --- PURPOSE CARDS & INDEX LIST --- */
.purpose-indicator-list {
    border-left: 2px solid #e0e0de;
    padding-left: 0;
}

.purpose-indicator-list li {
    font-size: 1rem;
    font-weight: 500;
    color: #8c8c8a;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.purpose-indicator-list li .bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: transparent;
    display: inline-block;
}

.purpose-indicator-list li.active-item {
    color: #171e6d;
    font-weight: 600;
}

.purpose-indicator-list li.active-item .bullet {
    background-color: #111111;
}

.purpose-indicator-list li {
    padding: 0;
}

.purpose-indicator-list li a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 20px;
    color: inherit;
    text-decoration: none;
}

.purpose-indicator-list li a:hover,
.purpose-indicator-list li a:focus-visible {
    color: #171e6d;
}

.purpose-indicator-list li a:focus-visible {
    outline: 2px solid #171e6d;
    outline-offset: 3px;
}

.purpose-card[id] {
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

/* Card layout wrapper */
.purpose-card {
    background-color: #FFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e6;
    transition: box-shadow 0.3s ease;
}

.purpose-card:hover {
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04); */
}

.purpose-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    padding: 25px;
}

.purpose-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.purpose-card:hover .purpose-img {
    transform: scale(1.02);
}

.purpose-body {
    padding: 25px;
}

.purpose-icon-box {
    width: 44px;
    height: 44px;
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #171e6d;
    background: #fff;
}

.purpose-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #171e6d;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.purpose-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 991.98px) {

    .about-section,
    .purpose-section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .purpose-img-wrapper {
        height: 250px;
    }

    .purpose-body {
        padding: 1.75rem;
    }
}

.py-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

@media (max-width: 991.98px) {

    .about-section,
    .purpose-section {
        .py-70 {
            padding-top: 70px !important;
            padding-bottom: 70px !important;
        }
    }
}


/* --- SECTION CONTAINER --- */
.ventures-section {
    width: 100%;
    padding: 3rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ventures-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* --- CARD FLEX GRID --- */
.ventures-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* --- 3D FLIP CONTAINER --- */
.flip-card {
    background-color: transparent;
    width: 280px;
    height: 280px;
    perspective: 1000px;
    /* Depth of the 3D space */
}

/* Inner Flipper */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border-radius: 4px;
}

/* Vertical rotation triggers around the X-axis (matching the video) */
.flip-card:hover .flip-card-inner {
    transform: rotateX(180deg) scale(1.01);
}

/* Front & Back Faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 4px;
    border: 1px solid #eeeeee;
}

/* --- CARD FRONT (LOGO VIEW) --- */
.flip-card-front {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0c4c32;
    /* Deep pine-green logo text */
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-top: -5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0c4c32;
    letter-spacing: 0.15em;
    margin-top: 0.35rem;
    text-transform: uppercase;
}

/* --- CARD BACK (TEXT VIEW) --- */
.flip-card-back {
    background-color: #0e5135;
    /* Pine green */
    color: #ffffff;
    transform: rotateX(180deg);
    /* Start inverted so it sits flat when flipped */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem;
    text-align: left;
}

.back-text {
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.back-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.08em;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 3px;
    margin-top: auto;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.back-link:hover {
    opacity: 0.8;
}

/* --- MOBILE ADAPTATION --- */
@media (max-width: 576px) {
    .flip-card {
        width: 290px;
        height: 290px;
    }
}



/* --- TEAM REGION DESIGN SYSTEM --- */
.team-section {
    background-color: #fafaf9;
    /* Warm off-white background matching the reference */
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

/* Header elements */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tag i {
    font-size: 0.95rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    /* margin-bottom: 1.5rem; */
}

/* Rounded Pill Button */
.btn-pill-dark {
    display: inline-block;
    background-color: #111111;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-pill-dark:hover {
    background-color: #2b2b2b;
    transform: translateY(-1px);
}

/* --- HIERARCHICAL NAVIGATION --- */
.team-navigation-wrapper {
    border-left: 2px solid #e2e2e0;
    padding-left: 0;
}

.team-nav-list {
    display: flex;
    flex-direction: column;
}

.team-nav-item {
    font-size: 1.05rem;
    font-weight: 500;
    color: #8c8c8a;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease, font-weight 0.2s ease;
    user-select: none;
}

/* Dot/bullet indicator */
.team-nav-item .nav-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: transparent;
    display: inline-block;
    margin-right: 14px;
    transition: background-color 0.25s ease;
}

/* Active Menu Item */
.team-nav-item.active {
    color: #111111;
    font-weight: 700;
}

.team-nav-item.active .nav-bullet {
    background-color: #111111;
}

/* Sub-items hierarchy indents (under Executive Committee) */
.team-nav-subitem {
    padding-left: 2.5rem !important;
    font-size: 0.95rem;
}

/* --- RIGHT SIDE DYNAMIC CONTENT CARDS --- */
.card-panel {
    position: relative;
}

.team-display-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e6;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.35s;
}

/* Active card trigger styles */
.team-display-card.active {
    display: block;
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.card-image-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-display-card:hover .card-img {
    transform: scale(1.02);
}

.card-footer-box {
    padding: 2.5rem;
}

.card-icon-box {
    width: 44px;
    height: 44px;
    border: 1px solid #e8e8e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #111111;
}

.card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.card-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

/* --- MOBILE & TABLET LAYOUT --- */
@media (max-width: 991.98px) {
    .team-section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .card-image-container {
        height: 250px;
    }

    .card-footer-box {
        padding: 1.75rem;
    }

    .team-navigation-wrapper {
        border-left: none;
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .team-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .team-nav-item {
        background-color: #ffffff;
        border: 1px solid #e8e8e6;
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .team-nav-item .nav-bullet {
        display: none;
        /* Hide bullets in tablet/mobile pill layout */
    }

    .team-nav-item.active {
        background-color: #111111;
        border-color: #111111;
        color: #ffffff;
    }

    .team-nav-subitem {
        padding-left: 16px !important;
        /* Reset nested indent to fit pill grids */
    }
}

/* --- SECTORS-STYLE TEAM GRID SECTION --- */
.sectors-team-section {
    background-color: #F8F7F5;
    /* Warm off-white matches the reference screenshot precisely */
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Header Tags & Typography */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tag i {
    font-size: 16px;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -0.025em;
    max-width: 715px;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 10px;
}

/* --- ABOUT US STAT CARDS --- */
.about-section {
    background-color: #f8f7f5;
    position: relative;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.stat-card:hover {
    /* transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(17, 31, 75, 0.08); */
    border-color: #cbd5e1;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-label {
    font-size: 15px;
    line-height: 1.55;
    color: #555555;
    margin: 0;
    font-weight: 500;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: #171e6d;
    line-height: 1;
    letter-spacing: -0.03em;
}

.btn-pill-dark {
    display: inline-block;
    background-color: #111111;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-pill-dark:hover {
    background-color: #2b2b2b;
    transform: translateY(-1px);
}

/* --- PREMIUM "VIEW MORE" BUTTON COMPONENT --- */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #171e6d;
    color: #ffffff !important;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 22px;
    /* border-radius: 50px; */
    text-decoration: none;
    border: 1px solid #171e6d;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(23, 30, 109, 0.12);
    border-radius: 12px;
}

.btn-view-more i {
    font-size: 0.95rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-view-more:hover {
    background-color: #0b1145;
    border-color: #0b1145;
    color: #ffffff !important;
    /* transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 30, 109, 0.22); */
}

.btn-view-more:hover i {
    transform: translate(2px, -2px);
}

/* --- GRID CARDS (Sectors layout) --- */
.team-grid-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease;
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #e8e8e6;
}

.team-grid-card:hover {
    transform: translateY(-4px);
    /* Flat card hover lift effect */
}

.team-grid-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    /* Clean horizontal landscape ratio */
    overflow: hidden;
    border-radius: 8px;
    /* Standard subtle corner rounding from reference screenshot */
    margin-bottom: 1.5rem;
}

.team-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-grid-card:hover .team-grid-img {
    transform: scale(1.02);
}

.team-grid-icon {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.team-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.team-grid-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

/* --- MOBILE & TABLET LAYOUT --- */
@media (max-width: 991.98px) {
    .sectors-team-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}




/* --- ICON BOX STYLING --- */
.team-grid-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgb(248 247 245);
    border: 1px solid #e8e8e6;
    border-radius: 8px;
    /* Clean, modern squircle box */
    color: #555555;
    margin-bottom: 1.25rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.team-grid-icon-box i {
    font-size: 1.2rem;
    line-height: 1;
}

/* Hover Interaction: Shifts the box color dynamically when the parent card is hovered */
.team-grid-card:hover .team-grid-icon-box {
    background-color: #111111;
    border-color: #111111;
    color: #ffffff;
}

.pl-3 {
    padding-left: 1rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.mt-32 {
    margin-top: 32px !important;
}


/* --- PHILOSOPHY SECTION --- */
.philosophy-section {
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.philosophy-card {
    background-color: #F8F7F5;
    /* Matches the custom warm off-white */
    border: 1px solid #e8e8e6;
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.philosophy-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.philosophy-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 1.25rem;
}

.philosophy-body p:last-child {
    margin-bottom: 0;
}


/* --- VEHICLES SECTION --- */
.bg-light-warm {
    background-color: #F8F7F5;
}

.vehicles-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vehicle-grid-card {
    background: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.vehicle-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* Constrains logo layout ratios */
.vehicle-logo-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
    border-bottom: 1px dashed #e8e8e6;
    padding-bottom: 1.5rem;
}

.vehicle-logo-wrapper svg {
    max-width: 320px;
    height: auto;
}

.vehicle-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.vehicle-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}


/* --- TABLET & MOBILE RESPONSIVENESS --- */
@media (max-width: 991.98px) {

    .philosophy-card,
    .vehicle-grid-card {
        padding: 1.75rem;
    }

    .vehicle-logo-wrapper {
        height: 100px;
        margin-bottom: 1.5rem;
    }
}


/* --- 3D FLIP CONTAINER DESIGN SYSTEM --- */
.bg-light-warm {
    background-color: #F8F7F5;
}

.vehicles-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vehicle-flip-card {
    background-color: transparent;
    perspective: 1500px;
    /* Depth of 3D container */
    height: 480px;
    /* Tall aesthetic matching reference grid standard */
}

/* Flipper inner track */
.vehicle-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.2, 0.85, 0.4, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

/* Card flip trigger */
.vehicle-flip-card:hover .vehicle-flip-inner {
    transform: rotateY(180deg);
}

/* Front & Back Face Properties */
.vehicle-flip-front,
.vehicle-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Prevent Safari visual bugs */
    border-radius: 20px;
    overflow: hidden;
}

/* --- CARD FRONT FACE --- */
.vehicle-flip-front {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-front-logo {
    width: 100%;
    opacity: 0.95;
}

.vehicle-front-metrics {
    text-align: left;
}

.vehicle-metric-num {
    font-size: clamp(2.2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.vehicle-metric-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.35rem;
}

/* --- CARD BACK FACE --- */
.vehicle-flip-back {
    background-color: #171e6d;
    /* Deep pine-green aesthetic matching branding */
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem;
    text-align: left;
    border: 1px solid #093724;
}

.vehicle-back-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.75rem;
}

.vehicle-back-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.vehicle-back-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: opacity 0.2s ease;
}

.vehicle-back-link:hover {
    opacity: 0.85;
}

/* --- RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 991.98px) {
    .vehicle-flip-card {
        height: 440px;
        /* Slight height balance for tablets */
    }

    .vehicle-flip-front,
    .vehicle-flip-back {
        padding: 1.75rem;
    }
}

/* Restricts the height and scaling of custom brand image links */
.vehicle-logo-img {
    max-height: 42px;
    /* Standard vertical height for branding silhouttes */
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

/* --- 3D FLIP CONTAINER DESIGN SYSTEM --- */
.bg-light-warm {
    background-color: #F8F7F5;
}

.vehicles-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vehicle-flip-card {
    background-color: transparent;
    perspective: 1500px;
    /* Depth of 3D container */
    height: 480px;
    /* Tall aesthetic matching reference grid standard */
}

/* Flipper inner track */
.vehicle-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.2, 0.85, 0.4, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
}

/* Card flip trigger */
.vehicle-flip-card:hover .vehicle-flip-inner {
    transform: rotateY(180deg);
}

/* Front & Back Face Properties */
.vehicle-flip-front,
.vehicle-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Prevent Safari visual bugs */
    border-radius: 20px;
    overflow: hidden;
}

/* --- CARD FRONT FACE (Plaque View) --- */
.vehicle-flip-front {
    background-color: #ffffff;
    /* Solid white premium background */
    border: 1px solid #e8e8e6;
    /* Soft border styling */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem 2.25rem 2rem;
    text-align: center;
}

/* Centers the logo vertically and horizontally inside the front card */
.vehicle-front-logo-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}

.vehicle-logo-img {
    max-height: 65px;
    /* Prominent height allocation for high-resolution logos */
    max-width: 85%;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

/* Subtle brand scale effect when card is hovered */
.vehicle-flip-card:hover .vehicle-logo-img {
    transform: scale(1.04);
}

.vehicle-front-metrics {
    width: 100%;
    border-top: 1px solid #f1f0ee;
    /* Underline divider */
    padding-top: 1.25rem;
}

.vehicle-metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #8c8c8a;
    /* Clean muted text color */
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- CARD BACK FACE --- */
.vehicle-flip-back {
    background-color: #171e6d;
    /* Deep TNA Navy Blue */
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem;
    text-align: left;
    border: 1px solid #111754;
}

.vehicle-back-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.75rem;
}

.vehicle-back-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.vehicle-back-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: opacity 0.2s ease;
}

.vehicle-back-link:hover {
    opacity: 0.85;
}

/* --- RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 991.98px) {
    .vehicle-flip-card {
        height: 440px;
    }

    .vehicle-flip-front,
    .vehicle-flip-back {
        padding: 1.75rem;
    }
}


/* --- TEAM FLIP-CARD STYLING --- */
.team-flip-card {
    background-color: transparent;
    perspective: 1500px;
    /* Establishes 3D space depth */
    height: 480px;
    /* Matches the tall vertical style of the vehicle grid */
    margin-top: 16px;
}

/* Flipper inner container */
.team-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.2, 0.85, 0.4, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

/* Hover rotation action */
.team-flip-card:hover .team-flip-inner {
    transform: rotateY(180deg);
}

/* Front & Back basic shared structure */
.team-flip-front,
.team-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Safari visual bug fix */
    border-radius: 20px;
    overflow: hidden;
}

/* --- FRONT DESIGN (Visual Image State) --- */
.team-flip-front {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glassmorphism Icon Box */
.team-front-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
}

.team-front-icon-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 50px;
    background-color: rgb(248 247 245);
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    color: #171e6d;
    flex-shrink: 0;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-front-icon-1 i,
.team-front-icon-1 .stat-icon {
    font-size: 1.25rem;
    color: #171e6d;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Synchronized Hover: Hovering .stat-card OR .team-front-icon-1 directly */
.stat-card:hover .team-front-icon-1,
.team-front-icon-1:hover {
    background-color: #171e6d;
    border-color: #171e6d;
    color: #ffffff;
    transform: scale(1.05);
}

.stat-card:hover .team-front-icon-1 i,
.stat-card:hover .team-front-icon-1 .stat-icon,
.team-front-icon-1:hover i,
.team-front-icon-1:hover .stat-icon {
    color: #ffffff;
}

.team-front-icon i {
    font-size: 1.25rem;
}

.team-front-details {
    text-align: left;
}

.team-front-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin: 0;
}

.team-front-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
}

/* --- BACK DESIGN (Action/Info State) --- */
.team-flip-back {
    background-color: #171e6d;
    /* Deep TNA Navy Blue */
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem;
    text-align: left;
    border: 1px solid #111754;
}

.team-back-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.75rem;
}

.team-back-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.team-back-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: opacity 0.2s ease;
}

.team-back-link:hover {
    opacity: 0.85;
}

.team-back-link-1 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #171e6d !important;
    text-decoration: none;
    /* letter-spacing: 0.08em; */
    /* text-transform: uppercase; */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: opacity 0.2s ease;
}

.team-back-link-1:hover {
    opacity: 0.85;
}

/* Responsive adjustment for tablets/mobiles */
@media (max-width: 991.98px) {
    .team-flip-card {
        height: 440px;
        /* Balance heights on smaller viewports */
    }

    .team-flip-front,
    .team-flip-back {
        padding: 1.75rem;
    }
}


/* --- PORTFOLIO VEHICLES FLAT GRID SYSTEM --- */
.vehicles-grid-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #e8e8e6;
    height: 100%;
    /* Ensures uniform heights across standard row sets */
}

.vehicles-grid-card:hover {
    transform: translateY(-4px);
    /* Clean lift-up interaction on focus */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.vehicles-grid-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    /* Flat horizontal display aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.vehicles-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.vehicles-grid-card:hover .vehicles-grid-img {
    transform: scale(1.025);
}

/* Sizing wrapper for mini brand logos or icons */
.vehicles-grid-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    padding: 4px 10px;
    color: #555555;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.vehicles-grid-logo-box i {
    font-size: 1.2rem;
}

.vehicles-grid-logo-img {
    max-width: 100px;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Interaction: Box border highlight on hover */
.vehicles-grid-card:hover .vehicles-grid-logo-box {
    border-color: #111111;
    background-color: #fcfcfc;
}

.vehicles-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.vehicles-grid-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 991.98px) {
    .vehicles-grid-card {
        padding: 1.75rem;
    }
}

/* --- PORTFOLIO VEHICLES FLAT GRID SECTION --- */
.vehicles-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vehicles-grid-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #e8e8e6;
    height: 100%;
    /* Keeps card heights uniform in a multi-row grid */
}

.vehicles-grid-card:hover {
    transform: translateY(-4px);
    /* Flat card hover lift effect */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.vehicles-grid-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    /* Clean horizontal landscape ratio */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.vehicles-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.vehicles-grid-card:hover .vehicles-grid-img {
    transform: scale(1.025);
}

/* Squircles matching the team-grid-icon-box exactly */
.vehicles-grid-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgb(248 247 245);
    border: 1px solid #e8e8e6;
    border-radius: 8px;
    /* Clean squircle */
    color: #555555;
    margin-bottom: 1.25rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.vehicles-grid-icon-box i {
    font-size: 1.2rem;
    line-height: 1;
}

/* Hover Interaction: Inverts the icon color when the parent card is hovered */
.vehicles-grid-card:hover .vehicles-grid-icon-box {
    background-color: #111111;
    border-color: #111111;
    color: #ffffff;
}

.vehicles-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.010em;
}

.vehicles-grid-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

/* --- MOBILE & TABLET LAYOUTS --- */
@media (max-width: 991.98px) {
    .vehicles-grid-card {
        padding: 1.75rem;
    }
}


/* --- PORTFOLIO VEHICLES FLAT GRID SECTION --- */
.vehicles-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vehicles-grid-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #e8e8e6;
    height: 100%;
}

.vehicles-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.vehicles-grid-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.vehicles-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.vehicles-grid-card:hover .vehicles-grid-img {
    transform: scale(1.025);
}

/* Sizing wrapper specifically tailored to contain horizontal or square logos */
.vehicles-grid-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 60px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    padding: 6px 12px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.vehicles-grid-logo-img {
    max-width: 100px;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Card hover highlights the logo box outline */
.vehicles-grid-card:hover .vehicles-grid-logo-box {
    border-color: #111111;
    background-color: #fafaf9;
}

.vehicles-grid-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.010em;
}

.vehicles-grid-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 991.98px) {
    .vehicles-grid-card {
        padding: 1.75rem;
    }
}

/* --- OPTIMIZED PORTFOLIO BRAND LOGO BOX --- */

/* Generous wrapper optimized for wide wordmarks and square brand marks */
.vehicles-grid-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 140px;
    /* Wider container to allow text logos to stretch out */
    height: 60px;
    /* Increased vertical area for much better legibility */
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    padding: 8px 16px;
    /* Adjusted padding to prevent squeezing standard logos */
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Image scaling settings designed to maximize crispness */
.vehicles-grid-logo-img {
    max-width: 120px;
    /* Comfortably fits corporate branding ratios */
    max-height: 42px;
    /* Significantly increased height to make text readable */
    width: auto;
    height: auto;
    object-fit: contain;
    /* Guarantees logos do not distort or stretch */
    display: block;
}

/* Card hover transition updates */
.vehicles-grid-card:hover .vehicles-grid-logo-box {
    border-color: #111111;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* --- PREMIUM INTEGRATED PORTFOLIO CARDS --- */
.vehicles-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vehicle-premium-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease;
}

/* Header plaque block framing the logo */
.vehicle-card-header {
    height: 140px;
    /* Fixed height for horizontal alignment */
    background-color: #f7f6f3;
    /* Clean warm-grey canvas block */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e8e8e6;
    transition: background-color 0.4s ease;
}

.vehicle-brand-logo {
    max-height: 60px;
    /* Restricts logo overflow */
    max-width: 80%;
    /* Prevents logos touching boundary edges */
    width: auto;
    height: auto;
    object-fit: contain;
    /* Guarantees clean scale preservation */
}

/* Card Body spacing layout */
.vehicle-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8c8c8a;
    /* Muted gray category label */
    margin-bottom: 0.5rem;
    display: block;
}

.vehicle-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.vehicle-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* --- PREMIUM HOVER EFFECTS --- */
.vehicle-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: #d1d1cd;
}

.vehicle-premium-card:hover .vehicle-card-header {
    background-color: #f1f0ec;
    /* Subtle color shift on card focus */
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .vehicle-card-body {
        padding: 1.5rem;
    }

    .vehicle-card-header {
        height: 120px;
    }
}

/* --- PREMIUM INTEGRATED SECTOR CARDS --- */
.sectors-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sector-premium-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease;
}

/* Card Header with background graphic & gradient overlay */
.sector-card-header {
    height: 160px;
    background-color: #ffffff;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 250, 0.4) 100%),
        url('../images/abstract-wave.png');
    /* Replace with your background wave path */
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e8e8e6;
    position: relative;
}

/* Centered Circular Icon Wrapper */
.sector-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(23, 30, 109, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171e6d;
    /* Primary theme color */
    font-size: 1.5rem;
    transform: translateY(-8px);
    /* Offset upward */
    box-shadow: 0 4px 12px rgba(23, 30, 109, 0.05);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.4s ease,
        border-color 0.4s ease,
        color 0.4s ease;
}

/* Floating Glassmorphism Badge */
.sector-header-badge {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background-color: rgba(217, 227, 241, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #171e6d;
    pointer-events: none;
}

/* Sector Card Body */
.sector-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sector-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.sector-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* --- PREMIUM INTERACTIVE HOVER TRANSITIONS --- */
.sector-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: #d1d1cd;
}

/* Icon shifts color and scales upward slightly on card focus */
.sector-premium-card:hover .sector-icon-wrapper {
    transform: translateY(-12px) scale(1.05);
    background-color: #171e6d;
    border-color: #171e6d;
    color: #ffffff;
}

/* Responsive Scaling */
@media (max-width: 991.98px) {
    .sector-card-body {
        padding: 1.5rem;
    }

    .sector-card-header {
        height: 140px;
    }

    .sector-header-badge {
        bottom: 10px;
        left: 12px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .sector-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}


/* --- PREMIUM INTEGRATED SECTOR CARDS --- */
.sectors-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sector-premium-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease;
}

/* Updated header to handle photo-blended backgrounds dynamically */
.sector-card-header {
    height: 160px;
    background-color: #ffffff;

    /* Configured to cover and scale dynamically */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e8e8e6;
    position: relative;
    transition: background-color 0.4s ease;
}

/* Centered Circular Icon Wrapper */
.sector-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(23, 30, 109, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171e6d;
    /* Primary theme color */
    font-size: 1.5rem;
    transform: translateY(-8px);
    /* Offset upward */
    box-shadow: 0 4px 12px rgba(23, 30, 109, 0.05);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.4s ease,
        border-color 0.4s ease,
        color 0.4s ease;
}

/* Floating Glassmorphism Badge */
.sector-header-badge {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background-color: rgba(217, 227, 241, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #171e6d;
    pointer-events: none;
}

/* Sector Card Body */
.sector-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sector-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.sector-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* --- PREMIUM INTERACTIVE HOVER TRANSITIONS --- */
.sector-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: #d1d1cd;
}

/* Icon shifts color and scales upward slightly on card focus */
.sector-premium-card:hover .sector-icon-wrapper {
    transform: translateY(-12px) scale(1.05);
    background-color: #171e6d;
    border-color: #171e6d;
    color: #ffffff;
}

/* Responsive Scaling */
@media (max-width: 991.98px) {
    .sector-card-body {
        padding: 1.5rem;
    }

    .sector-card-header {
        height: 140px;
    }

    .sector-header-badge {
        bottom: 10px;
        left: 12px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .sector-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}


/* --- PREMIUM IMMERSIVE BENTO CARDS --- */
.sectors-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sector-immersive-card {
    position: relative;
    height: 480px;
    /* Generous height for visual depth */
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);

    /* Hardware acceleration rules for clean transitions */
    transform: translate3d(0, 0, 0);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 
   Dark linear gradient overlay.
   Protects readability by fading the image into a deep neutral slate at the bottom.
*/
.sector-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.1) 0%,
            rgba(15, 23, 42, 0.5) 45%,
            rgba(10, 15, 30, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Translucent Glassmorphism Icon Badge positioned top-right */
.sector-icon-top {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.4s ease,
        color 0.4s ease;
}

/* Text Container anchored at the bottom */
.sector-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.25rem;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Translucent Category Badge */
.sector-badge {
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.sector-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
}

.sector-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- INTERACTIVE HOVER ACTIONS --- */
.sector-immersive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10, 15, 30, 0.15);
}

/* Highlighting the icon badge on card hover */
.sector-immersive-card:hover .sector-icon-top {
    transform: scale(1.05);
    background-color: #ffffff;
    color: #171e6d;
    /* Primary slate blue color */
}

/* --- MOBILE & TABLET ADAPTATIONS --- */
@media (max-width: 991.98px) {
    .sector-immersive-card {
        height: 420px;
    }

    .sector-card-content {
        padding: 1.75rem;
    }

    .sector-title {
        font-size: 1.35rem;
    }

    .sector-text {
        font-size: 0.9rem;
    }
}


/* --- PREMIUM STRUCTURED SECTOR CARDS --- */
.sectors-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sector-flat-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;

    /* Hardware acceleration rules for transitions */
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease;
}

/* Full-bleed photo wrapper with unified aspect-ratio */
.sector-card-image-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    /* Desktop landscape ratio */
    overflow: hidden;
    background-color: #f7f6f3;
}

.sector-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Solid card body below */
.sector-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

/* Category Label positioned as clean top typography */
.sector-category-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #171e6d;
    /* Sleek corporate primary blue */
    margin-bottom: 0.5rem;
    display: block;
}

.sector-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.sector-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* --- HOVER ACTIONS --- */
.sector-flat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: #d1d1cd;
}

/* Subtle image scale effect inside the cropped viewport */
.sector-flat-card:hover .sector-card-image {
    transform: scale(1.03);
}

/* --- MOBILE & TABLET RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .sector-card-body {
        padding: 1.5rem;
    }
}



/* --- PREMIUM STRUCTURED SECTOR CARDS --- */
.sectors-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sector-flat-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;

    transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease;
}

/* Full-bleed photo wrapper acting as coordinate parent for absolute child positioning */
.sector-card-image-wrapper {
    position: relative;
    /* Essential for positioning the badge */
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f7f6f3;
}

.sector-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Circular Solid White Icon Badge Floating over Top-Right */
.sector-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    /* Diameter matching the screenshot ratio */
    height: 50px;
    background-color: #ffffff;
    /* Solid white backdrop */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171e6d;
    /* Deep blue theme icon color */
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Clean depth shadow */
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.4s ease,
        color 0.4s ease;
}

/* Card Body below the image */
.sector-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.sector-category-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #171e6d;
    margin-bottom: 0.5rem;
    display: block;
}

.sector-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #171e6d;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.sector-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* --- HOVER ACTIONS --- */
.sector-flat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: #d1d1cd;
}

.sector-flat-card:hover .sector-card-image {
    transform: scale(1.03);
}

/* Hover scales the badge up and highlights it with the deep primary blue color */
.sector-flat-card:hover .sector-icon-badge {
    transform: scale(1.05);
    background-color: #171e6d;
    color: #ffffff;
}

/* --- MOBILE & TABLET RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .sector-card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(7, 13, 12, 0.77) 0%, rgba(7, 13, 12, 0.28) 100%),
            linear-gradient(0deg, rgba(6, 10, 9, 0.88) 0%, rgba(6, 10, 9, 0.1) 70%, rgba(6, 10, 9, 0.42) 100%);
    }

    .hero-video {
        object-position: 54% center;
    }

    .hero-container {
        align-items: flex-end;
        /* padding-right: 1.25rem;
        padding-left: 1.25rem; */
        padding-bottom: 2.5rem;
    }

    .hero-eyebrow {
        margin-bottom: 1rem;
        font-size: 0.67rem;
        letter-spacing: 0.13em;
    }

    .hero-eyebrow-mark {
        width: 1.75rem;
    }

    .hero-headline {
        max-width: 10ch;
        font-size: clamp(2.75rem, 13vw, 4rem);
        line-height: 1;
    }

    .hero-content,
    .hero-content-footer,
    .hero-subtext {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .hero-content-footer {
        margin-top: 1.5rem;
        padding-top: 1.15rem;
        gap: 1.25rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero-btn-link {
        min-height: 3.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-btn-link,
    .hero-btn-icon {
        transition: none;
    }
}

/* --- REFINED SITE HEADER & NAVIGATION --- */
html {
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

header {
    box-sizing: border-box;
    height: var(--header-height);
    background: linear-gradient(180deg, rgb(0 0 0 / 56%) 0%, rgba(9, 12, 44, 0) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.18);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.3s ease,
        border-color 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-active-menu,
header:has(.has-mega-menu:focus-within),
header:has(.nav-link-custom:hover),
header:has(.nav-link-custom:focus-visible) {
    background: #ffffff;
    border-bottom-color: #e7e9e6;
}

header:has(.has-mega-menu:focus-within) .logo-img,
header:has(.nav-link-custom:hover) .logo-img,
header:has(.nav-link-custom:focus-visible) .logo-img {
    filter: none;
}

.header-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1760px;
    height: 100%;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3.75rem);
}

.logo-link {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.logo-img {
    height: 68px;
}

.desktop-navigation,
.nav-menu {
    height: 100%;
}

.desktop-navigation {
    margin-left: auto;
}

.nav-menu {
    gap: 0.1rem;
}

.nav-item-custom {
    height: 100%;
}

.nav-link-custom {
    position: relative;
    gap: 0.55rem;
    height: 100%;
    padding: 0 clamp(0.65rem, 0.85vw, 1rem);
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 550;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    right: 1rem;
    bottom: -1px;
    left: 1rem;
    height: 2px;
    background: #171e6d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom:focus-visible::after,
.has-mega-menu:hover>.nav-link-custom::after,
.has-mega-menu:focus-within>.nav-link-custom::after {
    transform: scaleX(1);
}

header.header-active-menu .nav-link-custom,
header:has(.has-mega-menu:focus-within) .nav-link-custom,
header:has(.nav-link-custom:hover) .nav-link-custom,
header:has(.nav-link-custom:focus-visible) .nav-link-custom {
    color: #292b3f;
}

.nav-link-custom:hover,
.nav-link-custom:focus-visible,
header.header-active-menu .nav-link-custom:hover,
header.header-active-menu .nav-link-custom:focus-visible {
    color: #171e6d;
}

.nav-chevron {
    width: 0.42rem;
    height: 0.42rem;
    margin-top: -0.2rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.has-mega-menu:hover .nav-chevron,
.has-mega-menu:focus-within .nav-chevron {
    transform: translateY(2px) rotate(225deg);
}

.nav-contact-item {
    margin-left: 0.5rem;
}

.nav-contact-link {
    align-self: center;
    height: 2.85rem;
    padding: 0 1.25rem;
    color: #ffffff;
    background: #171e6d;
    border: 1px solid #171e6d;
    width: fit-content;
    border-radius: 12px;
}

.nav-contact-link::after {
    display: none;
}

header.header-active-menu .nav-contact-link,
header:has(.has-mega-menu:focus-within) .nav-contact-link,
header:has(.nav-link-custom:hover) .nav-contact-link,
header:has(.nav-link-custom:focus-visible) .nav-contact-link {
    color: #ffffff;
    background: #171e6d;
    border-color: #171e6d;
    border-radius: 12px;
}

.nav-contact-link:hover,
header.header-active-menu .nav-contact-link:hover {
    color: #ffffff;
    background: #0f1450;
}

.mega-menu {
    top: 100%;
    box-sizing: border-box;
    padding: 2.25rem clamp(1.5rem, 3vw, 3.75rem) 2.75rem;
    border-top: 1px solid #e7e9e6;
    box-shadow: 0 24px 50px rgba(23, 30, 109, 0.14);
    pointer-events: none;
    transform: translateY(-6px);
}

.nav-item-custom:hover .mega-menu,
.nav-item-custom:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-shell {
    display: grid;
    gap: clamp(2.5rem, 4vw, 5rem);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-menu-about {
    grid-template-columns: minmax(280px, 0.9fr) minmax(180px, 0.55fr) minmax(440px, 1.45fr);
}

.mega-menu-investments {
    grid-template-columns: minmax(280px, 0.75fr) minmax(560px, 1.8fr);
}

.mega-menu-feature {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 1.8rem;
    color: #ffffff;
    background: #171e6d;
}

.mega-menu-feature::after {
    content: '';
    position: absolute;
    right: -45px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(203, 208, 255, 0.24);
    border-radius: 50%;
    box-shadow: 0 0 0 32px rgba(203, 208, 255, 0.05), 0 0 0 64px rgba(203, 208, 255, 0.03);
}

.mega-menu-kicker {
    display: block;
    margin-bottom: 1rem;
    color: #cbd0ff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mega-menu-feature h2 {
    max-width: 13ch;
    margin: 0 0 0.85rem;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.mega-menu-feature p {
    max-width: 38ch;
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    line-height: 1.55;
}

.mega-feature-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
}

.mega-feature-link:hover,
.mega-feature-link:focus-visible {
    color: #e1e4ff;
}

.mega-menu-group {
    padding-top: 0.4rem;
}

.menu-header {
    margin: 0 0 1.25rem;
    color: #8a918d;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.menu-list li {
    margin-bottom: 0;
}

.menu-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
}

.menu-item-link {
    display: flex;
    align-items: center;
    min-height: 2.6rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #eceeeb;
    color: #202923;
    font-size: 0.9rem;
    font-weight: 500;
}

.menu-item-link::after {
    content: '↗';
    margin-left: auto;
    color: #718077;
    font-size: 0.75rem;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-item-link:hover,
.menu-item-link:focus-visible {
    color: #171e6d;
    opacity: 1;
}

.menu-item-link:hover::after,
.menu-item-link:focus-visible::after {
    opacity: 1;
    transform: translate(0, 0);
}

.partner-menu-link {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem;
    color: #1d2922;
    background: #f4f6f2;
    border: 1px solid #e4e8e2;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.partner-menu-link:hover,
.partner-menu-link:focus-visible {
    color: #ffffff;
    background: #171e6d;
    border-color: #171e6d;
}

.partner-menu-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    color: #ffffff;
    background: #171e6d;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 300;
}

.partner-menu-link strong,
.partner-menu-link small {
    display: block;
}

.partner-menu-link strong {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.partner-menu-link small {
    color: #778078;
    font-size: 0.7rem;
}

.partner-menu-link:hover small,
.partner-menu-link:focus-visible small {
    color: rgba(255, 255, 255, 0.65);
}

.mobile-menu-toggle,
.mobile-navigation {
    display: none;
}

body.navigation-open {
    overflow: hidden;
}

@media (max-width: 1199.98px) {
    :root {
        --header-height: 76px;
    }

    header,
    header.header-active-menu {
        background: rgba(9, 12, 44, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    header.menu-open {
        transform: none;
        background: #ffffff;
        border-bottom-color: #e5e8e4;
    }

    .header-container {
        position: relative;
        z-index: 1003;
        padding: 0 1.25rem;
    }

    .logo-img {
        height: 64px;
    }

    header.header-active-menu .logo-img {
        filter: brightness(0) invert(1);
    }

    header.menu-open .logo-img {
        filter: none;
    }

    .desktop-navigation,
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 3;
        display: inline-flex;
        flex: 0 0 3rem;
        flex-direction: column;
        gap: 0.42rem;
        align-items: flex-end;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        margin-left: auto;
        padding: 0;
        color: #ffffff;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: none;
    }

    .mobile-menu-toggle::before,
    .mobile-menu-toggle::after {
        content: '';
        position: absolute;
        right: 0.45rem;
        width: 1.6rem;
        height: 1.5px;
        background: currentColor;
        transform-origin: center;
        transition: transform 0.25s ease, width 0.25s ease;
    }

    .mobile-menu-toggle::before {
        transform: translateY(-4px);
    }

    .mobile-menu-toggle::after {
        width: 1.1rem;
        transform: translateY(4px);
    }

    header.menu-open .mobile-menu-toggle {
        color: #18221c;
    }

    header.menu-open .mobile-menu-toggle::before {
        width: 1.5rem;
        transform: rotate(45deg);
    }

    header.menu-open .mobile-menu-toggle::after {
        width: 1.5rem;
        transform: rotate(-45deg);
    }

    .mobile-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: auto;
        z-index: 1002;
        display: block;
        box-sizing: border-box;
        width: min(100%, 460px);
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #ffffff;
        border-left: 1px solid #e5e8e4;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease, visibility 0.35s;
    }

    header.menu-open .mobile-navigation {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-menu-inner {
        box-sizing: border-box;
        min-height: 100%;
        padding: 1rem 1.5rem 2rem;
    }

    .mobile-direct-link,
    .mobile-menu-group>summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 3.8rem;
        color: #172019;
        border-bottom: 1px solid #e8ebe7;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: -0.02em;
        text-decoration: none;
    }

    .mobile-menu-group>summary {
        list-style: none;
        cursor: pointer;
    }

    .mobile-menu-group>summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu-group>summary span {
        color: #526159;
        font-size: 1.2rem;
        font-weight: 300;
        transition: transform 0.25s ease;
    }

    .mobile-menu-group[open]>summary span {
        transform: rotate(45deg);
    }

    .mobile-submenu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.5rem;
        padding: 0.75rem 0 1.25rem;
        border-bottom: 1px solid #e8ebe7;
    }

    .mobile-submenu p {
        grid-column: 1 / -1;
        margin: 1rem 0 0.35rem;
        color: #899189;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .mobile-submenu a {
        padding: 0.5rem 0;
        color: #3f4a43;
        font-size: 0.82rem;
        line-height: 1.35;
        text-decoration: none;
    }

    .mobile-submenu a:hover,
    .mobile-submenu a:focus-visible {
        color: #171e6d;
    }

    .mobile-contact-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 3.6rem;
        margin-top: 1.5rem;
        padding: 0 1.25rem;
        color: #ffffff;
        background: #171e6d;
        font-size: 0.86rem;
        font-weight: 600;
        text-decoration: none;
    }

    .menu-backdrop.active {
        pointer-events: auto;
    }
}

@media (max-width: 575.98px) {
    .mobile-navigation {
        width: 100%;
        border-left: 0;
    }

    .mobile-menu-inner {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .mobile-submenu {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    header,
    .mega-menu,
    .mobile-navigation,
    .mobile-menu-toggle::before,
    .mobile-menu-toggle::after {
        transition: none;
    }
}

/* --- ABOUT SECTION WATERMARK --- */
.about-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.about-section::before {
    content: 'SEL';
    position: absolute;
    top: -0.18em;
    right: -0.035em;
    z-index: -1;
    color: #171e6d;
    font-size: clamp(11rem, 25vw, 29rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    opacity: 0.035;
    pointer-events: none;
    user-select: none;
}

.about-section>.container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .about-section::before {
        top: 0.08em;
        right: -0.08em;
        font-size: clamp(9rem, 48vw, 14rem);
        opacity: 0.03;
    }
}

.purpose-container {
    box-sizing: border-box;
    width: calc(100% - 3rem);
    max-width: 1440px;
    margin-inline: auto;
}

.purpose-section-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: end;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: clamp(2.25rem, 3vw, 3rem);
    border-bottom: 1px solid #dfe1e8;
}

.purpose-eyebrow {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin: 0 0 1.5rem;
    color: #555968;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.purpose-eyebrow span {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    background: #171e6d;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
}

.purpose-main-heading {
    max-width: 13ch;
    margin: 0;
    color: #12141d;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.purpose-main-heading span {
    color: #171e6d;
}

.purpose-intro {
    padding-left: clamp(1.5rem, 3vw, 2.75rem);
    border-left: 1px solid rgba(23, 30, 109, 0.24);
}

.purpose-intro>p {
    max-width: 48ch;
    margin: 0 0 1.75rem;
    color: #5f626d;
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.7;
}

.purpose-action {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    min-height: 3.4rem;
    padding: 0.7rem 0.8rem 0.7rem 1.25rem;
    color: #ffffff;
    background: #171e6d;
    border: 1px solid #171e6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.purpose-action span {
    display: grid;
    place-items: center;
    width: 1.85rem;
    height: 1.85rem;
    color: #171e6d;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

.purpose-action:hover,
.purpose-action:focus-visible {
    color: #ffffff;
    background: #0f1450;
    border-color: #0f1450;
}

.purpose-action:hover span,
.purpose-action:focus-visible span {
    transform: translate(2px, -2px);
}

.purpose-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.purpose-panel {
    position: relative;
    overflow: hidden;
    background: #f5f5f2;
    border: 1px solid #e1e2e0;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.purpose-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(23, 30, 109, 0.09);
}

.purpose-panel-mission {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.purpose-panel-side {
    display: grid;
    grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
    min-height: 340px;
}

.purpose-panel-media {
    position: relative;
    overflow: hidden;
    min-height: 0;
    background: #d9dbe2;
}

.purpose-panel-mission .purpose-panel-media {
    flex: 1 1 auto;
    min-height: 390px;
}

.purpose-panel-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 13, 30, 0.04) 40%, rgba(10, 13, 30, 0.45) 100%);
    pointer-events: none;
}

.purpose-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.purpose-panel:hover .purpose-panel-media img {
    transform: scale(1.035);
}

.purpose-panel-number {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    color: #171e6d;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.purpose-panel-content {
    padding: clamp(1.75rem, 2.8vw, 2.6rem);
}

.purpose-panel-mission .purpose-panel-content {
    flex: 0 0 auto;
}

.purpose-panel-label {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: 1.15rem;
    color: #171e6d;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.purpose-panel-icon {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(23, 30, 109, 0.24);
    border-radius: 50%;
    font-size: 0.85rem;
}

.purpose-panel h3 {
    max-width: 20ch;
    margin: 0 0 0.85rem;
    color: #151720;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.purpose-panel p {
    max-width: 55ch;
    margin: 0;
    color: #656872;
    font-size: 0.84rem;
    line-height: 1.65;
}

.purpose-panel-vision {
    color: #ffffff;
    background: #171e6d;
    border-color: #171e6d;
}

.purpose-panel-vision .purpose-panel-label,
.purpose-panel-vision h3 {
    color: #ffffff;
}

.purpose-panel-vision .purpose-panel-icon {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}

.purpose-panel-vision p {
    color: rgba(255, 255, 255, 0.68);
}

.purpose-panel-values .purpose-panel-media {
    grid-column: 2;
    grid-row: 1;
}

.purpose-panel-values .purpose-panel-content {
    grid-column: 1;
    grid-row: 1;
}

@media (max-width: 1199.98px) {
    .purpose-section-header {
        grid-template-columns: 1fr 0.8fr;
        gap: 3rem;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .purpose-panel-mission {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 360px;
    }

    .purpose-panel-mission .purpose-panel-media {
        min-height: 360px;
    }

    .purpose-panel-side {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .purpose-container {
        width: calc(100% - 2.5rem);
    }

    .purpose-section-header {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .purpose-main-heading {
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .purpose-intro {
        padding: 1.5rem 0 0;
        border-top: 1px solid rgba(23, 30, 109, 0.24);
        border-left: 0;
    }

    .purpose-panel-mission,
    .purpose-panel-side {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .purpose-panel-mission .purpose-panel-media,
    .purpose-panel-side .purpose-panel-media,
    .purpose-panel-values .purpose-panel-media {
        order: 0;
        min-height: 250px;
    }

    .purpose-panel-mission .purpose-panel-content,
    .purpose-panel-side .purpose-panel-content,
    .purpose-panel-values .purpose-panel-content {
        order: 1;
    }
}

@media (prefers-reduced-motion: reduce) {

    .purpose-panel,
    .purpose-panel-media img,
    .purpose-action,
    .purpose-action span {
        transition: none;
    }
}

/* --- INVESTMENT PHILOSOPHY CARDS ONLY --- */
.philosophy-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    background: #f8f7f5;
    border: 1px solid #dfe1e8;
    border-radius: 16px;
    box-shadow: 0 8px 26px rgba(23, 30, 109, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.philosophy-card::after {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(23, 30, 109, 0.42);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

/* .philosophy-section .row.g-4 > div:nth-child(1) .philosophy-card::after {
    content: '01';
}

.philosophy-section .row.g-4 > div:nth-child(2) .philosophy-card::after {
    content: '02';
}

.philosophy-section .row.g-4 > div:nth-child(3) .philosophy-card::after {
    content: '03';
} */

.philosophy-card::before {
    /* content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: #171e6d;
    transform: scaleX(0.18);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); */
}

.philosophy-card:hover {
    border-color: rgba(23, 30, 109, 0.26);
    box-shadow: 0 20px 44px rgba(23, 30, 109, 0.11);
    transform: translateY(-5px);
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card .card-icon-box {
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 1.75rem !important;
    color: #171e6d;
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 50%;
    /* box-shadow: 0 8px 18px rgba(23, 30, 109, 0.16); */
    font-size: 1.05rem;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.35s ease;
}

.philosophy-card:hover .card-icon-box {
    background: #0f1450;
    transform: translateY(-2px) rotate(-5deg);
    color: #fff;
}

.philosophy-card .philosophy-title {
    margin-bottom: 1.2rem;
    color: #171e6d;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.philosophy-card .philosophy-body p {
    margin-bottom: 1.1rem;
    color: #5f626d;
    font-size: 0.93rem;
    line-height: 1.7;
}

.philosophy-card .philosophy-body p+p {
    padding-top: 1.1rem;
    border-top: 1px solid #e5e6eb;
}

.philosophy-card .philosophy-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .philosophy-card {
        padding: 2rem;
    }

    .philosophy-card::after {
        top: 1.75rem;
        right: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .philosophy-card,
    .philosophy-card::before,
    .philosophy-card .card-icon-box {
        transition: none;
    }
}

/* --- PARTNERS SECTION --- */
.partners-section {
    position: relative;
    overflow: hidden;
    background: #fafaf8;
}

.partners-header {
    position: relative;
}

.partners-roster {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e4e2dc;
    border-left: 1px solid #e4e2dc;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 0;
    text-align: center;
    border-right: 1px solid #e4e2dc;
    border-bottom: 1px solid #e4e2dc;
    background: #fafaf8;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.partner-item:nth-child(4n) {
    border-right: 1px solid #e4e2dc;
}

.partner-link-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.partner-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-img {
    display: block;
    max-width: 165px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-img-wide {
    max-width: 185px;
    max-height: 52px;
}

.partner-name {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 16px;
    margin: 0 auto;
    display: block;
    max-width: 35ch;
    color: #171e6d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.35s ease,
        color 0.25s ease;
    pointer-events: none;
}

.partner-item:hover,
.partner-item:focus-within {
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #cbd5e1;
}

.partner-item:hover .partner-mark,
.partner-item:focus-within .partner-mark {
    transform: translateY(-12px);
}

.partner-item:hover .partner-name,
.partner-item:focus-within .partner-name {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    color: #171e6d;
}

.partners-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: #171e6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.partners-heading {
    margin: 0;
    color: #111526;
    font-size: clamp(2.15rem, 4vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.partners-intro {
    max-width: 670px;
    margin: 1.25rem auto 0;
    color: #62677e;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

.partners-heading-line {
    display: block;
    width: 54px;
    height: 3px;
    margin: 1.65rem auto 0;
    background: #171e6d;
    border-radius: 999px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.partner-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 158px;
    padding: 2rem 1.25rem;
    overflow: hidden;
    background: rgb(248 247 245);
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    box-shadow: 0 5px 22px rgba(23, 30, 109, 0.035);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.partner-card::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #171e6d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.partner-card:hover {
    border-color: rgba(23, 30, 109, 0.24);
    box-shadow: 0 18px 38px rgba(23, 30, 109, 0.1);
    transform: translateY(-6px);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    color: #1b2334;
    font-family: var(--font-primary);
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.partner-card:hover .brand-lockup {
    transform: scale(1.045);
}

.brand-microsoft {
    gap: 0.7rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.microsoft-mark {
    display: grid;
    grid-template-columns: repeat(2, 17px);
    gap: 3px;
}

.microsoft-mark i {
    width: 17px;
    height: 17px;
}

.microsoft-mark i:nth-child(1) {
    background: #f25022;
}

.microsoft-mark i:nth-child(2) {
    background: #7fba00;
}

.microsoft-mark i:nth-child(3) {
    background: #00a4ef;
}

.microsoft-mark i:nth-child(4) {
    background: #ffb900;
}

.brand-aws {
    position: relative;
    flex-direction: column;
    color: #202939;
}

.brand-aws .brand-name {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.09em;
}

.aws-smile {
    width: 76px;
    height: 18px;
    margin: -2px 0 0 10px;
    border-bottom: 5px solid #ff9900;
    border-radius: 0 0 80% 70%;
    transform: rotate(4deg);
}

.brand-google {
    gap: 0.55rem;
    color: #5f6368;
    font-size: 1.18rem;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.brand-google strong {
    font-weight: 500;
}

.google-mark {
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 25% 42%, #fbbc05 42% 65%, #ea4335 65% 82%, #4285f4 82% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.4rem;
    font-weight: 800;
}

.brand-dell {
    gap: 0.25rem;
    white-space: nowrap;
}

.brand-dell .brand-name {
    color: #0672ce;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.08em;
}

.brand-dell small {
    color: #737980;
    font-size: 0.9rem;
    font-weight: 400;
}

.brand-oracle {
    color: #c74634;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.brand-servicenow {
    color: #293e40;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.brand-servicenow span,
.brand-servicenow b {
    color: #62d84e;
}

.brand-servicenow b {
    font-size: 1.8rem;
}

.brand-cisco {
    flex-direction: column;
    gap: 0.42rem;
    color: #049fd9;
}

.cisco-bars {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 28px;
}

.cisco-bars i {
    width: 4px;
    height: 13px;
    background: currentColor;
    border-radius: 999px;
}

.cisco-bars i:nth-child(2),
.cisco-bars i:nth-child(8) {
    height: 20px;
}

.cisco-bars i:nth-child(3),
.cisco-bars i:nth-child(7) {
    height: 26px;
}

.cisco-bars i:nth-child(4),
.cisco-bars i:nth-child(6) {
    height: 17px;
}

.cisco-bars i:nth-child(5) {
    height: 28px;
}

.brand-cisco .brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.brand-adobe {
    gap: 0.65rem;
    color: #111;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.adobe-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: #ed2224;
    font-size: 1.75rem;
    font-weight: 800;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 61% 100%, 50% 68%, 39% 100%, 18% 100%);
}

.brand-atlassian {
    gap: 0.55rem;
    color: #1868db;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.atlassian-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    color: #fff;
    background: #1868db;
    font-size: 1.4rem;
    font-weight: 800;
    clip-path: polygon(50% 0, 100% 100%, 75% 100%, 50% 48%, 27% 100%, 0 100%);
}

.brand-github {
    gap: 0.55rem;
    color: #171515;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.brand-github>i {
    font-size: 2.5rem;
}

.partner-logo-img {
    display: block;
    width: auto;
    max-width: 200px;
    height: 85px;
    object-fit: contain;
    /* filter: grayscale(1); */
    opacity: 1;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.partner-logo-img-wide {
    max-width: 215px;
    height: 45px;
}

.partner-card:hover .partner-logo-img,
.partner-item:hover .partner-logo-img,
.partner-item:focus-within .partner-logo-img {
    filter: grayscale(0);
    opacity: 1;
}

.partners-closing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 2.75rem auto 0;
}

.partners-closing-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #171e6d;
    background: #eef0fb;
    border: 1px solid rgba(23, 30, 109, 0.12);
    border-radius: 50%;
    font-size: 1.3rem;
}

.partners-closing p {
    margin: 0;
    color: #555b76;
    font-size: 1rem;
    line-height: 1.65;
}

@media (max-width: 1199.98px) {
    .partners-roster {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .partners-roster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-item {
        min-height: 180px;
    }

    .partner-link-wrapper {
        padding: 1.75rem 1.25rem 1.5rem;
        gap: 12px;
    }

    .partner-mark {
        height: 60px;
        transform: none !important;
    }

    .partner-logo-img {
        max-height: 52px;
        max-width: 140px;
    }

    .partner-name {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        font-size: 0.78rem;
        color: #171e6d;
        margin-top: 4px;
        padding: 0;
    }

    .partner-item:hover .partner-mark,
    .partner-item:focus-within .partner-mark {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .partners-roster {
        grid-template-columns: 1fr;
    }

    .partner-item {
        min-height: 155px;
    }

    .partner-link-wrapper {
        padding: 1.5rem 1rem 1.35rem;
        gap: 10px;
    }

    .partner-name {
        font-size: 0.76rem;
    }
}

.partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.partner-card {
    min-height: 145px;
    padding: 1.5rem 1rem;
}

.partner-card:nth-child(10) {
    grid-column: auto;
}

.partners-closing {
    align-items: flex-start;
    margin-top: 2.25rem;
}
}

@media (max-width: 479.98px) {
    .partners-roster {
        grid-template-columns: 1fr 1fr;
    }

    .partner-item {
        min-height: 168px;
        gap: 1rem;
        padding: 1.6rem 0.9rem 1.4rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-height: 138px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .partner-card,
    .partner-card::before,
    .partner-item,
    .brand-lockup,
    .partner-logo-img {
        transition: none;
    }
}

/* --- STRATEGIC ALLIANCES (investment prospectus) --- */
.alliances-section {
    position: relative;
    padding: 70px 0;
    /* background: radial-gradient(ellipse 80% 60% 60% at 100% 0%, rgba(201, 184, 150, 0.08), transparent 52%), linear-gradient(180deg, #0c1024 0%, #12183a 55%, #0e132c 100%); */
    color: #f4f1ea;
    background: #f8f7f5;
}

/* .alliances-section::before {
    content: '';
    position: absolute;
    inset: 1.25rem 1.25rem auto 1.25rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 184, 150, 0.45), transparent);
    pointer-events: none;
} */

.alliances-frame {
    max-width: 1440px;
    margin: 0 auto;
}

.alliances-masthead {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.7fr);
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: end;
    margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.alliances-kicker {
    margin: 0 0 1.15rem;
    color: #c9b896;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.alliances-masthead-copy h2 {
    max-width: 14ch;
    margin: 0;
    color: #f7f4ee;
    font-size: clamp(2.15rem, 4.4vw, 3.85rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.alliances-lede {
    max-width: 46ch;
    margin: 1.4rem 0 0;
    color: rgba(244, 241, 234, 0.68);
    font-size: 1.02rem;
    line-height: 1.75;
}

.alliances-tombstone {
    justify-self: end;
    width: min(100%, 320px);
    padding: 1.65rem 1.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(201, 184, 150, 0.35);
    background: rgba(255, 255, 255, 0.02);
}

.alliances-tombstone-rule {
    display: block;
    width: 42px;
    height: 1px;
    margin: 0 auto;
    background: #c9b896;
}

.alliances-tombstone-firm {
    margin: 1.1rem 0 0.35rem;
    color: #c9b896;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.alliances-tombstone-title {
    margin: 0 0 0.85rem;
    color: #f7f4ee;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.alliances-tombstone-meta {
    margin: 0 0 1.1rem;
    color: rgba(244, 241, 234, 0.5);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.alliances-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.alliance-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* min-height: 290px; */
    padding: 1.75rem 1.5rem 1.55rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8e8e6;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); */
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.alliance-card:hover,
.alliance-card:focus-within {
    /* border-color: #c9b896; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: translateY(-6px);
}

.alliance-card-logo {
    display: flex;
    align-items: center;
    min-height: 56px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(23, 30, 109, 0.1);
    justify-content: center;
}

.alliance-card-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    height: 44px;
    object-fit: contain;
    object-position: left center;
}

.alliance-card-logo .alliance-logo-wide {
    max-width: 160px;
    height: 40px;
}

.alliance-card h3 {
    margin: 0 0 0.7rem;
    color: #12162c;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    align-self: center;
}

.alliance-card p {
    margin: 0 0 1.25rem;
    color: #5b6073;
    font-size: 15px;
    line-height: 1.65;
    flex-grow: 1;
}

.alliance-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 14px;
    font-weight: 700;
    color: #12162c;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    margin-top: auto;
}

.alliance-card-link:hover {
    color: #171e6d;
    gap: 0.55rem;
}

.alliances-closing {
    max-width: 46ch;
    margin: 2.25rem 0 0;
    color: rgba(244, 241, 234, 0.5);
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .alliances-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .alliances-masthead {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .alliances-masthead-copy h2 {
        max-width: 18ch;
    }

    .alliances-tombstone {
        justify-self: start;
    }

    .alliances-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .alliances-section {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .alliances-cards {
        grid-template-columns: 1fr;
    }

    .alliance-card {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alliance-card {
        transition: none;
    }
}

/* --- NEWS & INSIGHTS --- */
.insights-section {
    background: #ffffff;
}

.insights-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.85fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.insight-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.insight-card-featured {
    grid-row: 1 / span 2;
    min-height: 590px;
    background: #10143f;
}

.insight-featured-image,
.insight-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.insight-featured-image {
    position: absolute;
    inset: 0;
}

.insight-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 11, 39, 0.06) 20%, rgba(8, 11, 39, 0.94) 100%);
}

.insight-featured-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
}

.insight-featured-content h3 {
    max-width: 660px;
    margin: 0.85rem 0 1rem;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.insight-featured-content p {
    max-width: 620px;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.7;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #777d8c;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.insight-meta span+span::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 0.65rem 2px 0;
    background: currentColor;
    border-radius: 50%;
}

.insight-meta-light {
    color: rgba(255, 255, 255, 0.7);
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #171e6d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.insight-link i {
    transition: transform 0.3s ease;
}

.insight-link-light {
    color: #fff;
}

.insight-card:hover .insight-link i {
    transform: translate(3px, -2px);
}

.insight-card:hover .insight-featured-image,
.insight-card:hover .insight-image-wrap img {
    transform: scale(1.045);
}

.insight-card-compact {
    display: grid;
    grid-template-columns: minmax(145px, 0.82fr) minmax(0, 1.18fr);
    min-height: 283px;
    background: #f8f7f5;
    border: 1px solid #e5e5e7;
    box-shadow: 0 8px 26px rgba(23, 30, 109, 0.035);
}

.insight-image-wrap {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.insight-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 0.65rem;
    color: #171e6d;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 5px;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.insight-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
}

.insight-card-body h3 {
    margin: 0.9rem 0 0.75rem;
    color: #171e6d;
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.22;
}

.insight-card-body p {
    margin: 0 0 1.35rem;
    color: #686b74;
    font-size: 0.86rem;
    line-height: 1.65;
}

.insight-card-body .insight-link {
    margin-top: auto;
}

.insights-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e3e7;
}

.insights-footer p {
    margin: 0;
    color: #6e7280;
    font-size: 0.9rem;
}

.insights-footer p span {
    color: #171e6d;
    font-weight: 700;
}

.insights-view-all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #171e6d;
    font-size: 0.82rem;
    font-weight: 700;
}

/* --- WORK WITH US --- */
.careers-section {
    overflow: hidden;
    background: #f4f3ef;
}

.careers-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: stretch;
    padding: clamp(3rem, 6vw, 6rem);
    overflow: hidden;
    color: #fff;
    background: #171e6d;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(23, 30, 109, 0.2);
}

.careers-shell::before {
    content: 'SEL';
    position: absolute;
    bottom: -0.24em;
    left: -0.04em;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(12rem, 25vw, 24rem);
    font-weight: 800;
    letter-spacing: -0.12em;
    line-height: 0.72;
    pointer-events: none;
}

.careers-content,
.career-opportunity-card {
    position: relative;
    z-index: 1;
}

.careers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    color: #cbd1ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.careers-content h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.careers-lead {
    max-width: 680px;
    margin: 1.75rem 0 2.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

.careers-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.career-value {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.career-value>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    color: #171e6d;
    background: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
}

.career-value strong,
.career-value small {
    display: block;
}

.career-value strong {
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.career-value small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
    line-height: 1.55;
}

.career-opportunity-card {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: clamp(2rem, 3vw, 3rem);
    color: #1a1d28;
    background: #f9f8f5;
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(5, 8, 35, 0.2);
}

.career-card-topline {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #626671;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.career-status-dot {
    width: 7px;
    height: 7px;
    background: #3fa76f;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(63, 167, 111, 0.12);
}

.career-card-number {
    margin-left: auto;
    color: #a3a5ad;
}

.career-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 3.25rem 0 1.75rem;
    color: #fff;
    background: #171e6d;
    border-radius: 50%;
    font-size: 1.25rem;
}

.career-opportunity-card h3 {
    margin: 0 0 1rem;
    color: #171e6d;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.career-opportunity-card>p {
    margin: 0 0 1.5rem;
    color: #686b73;
    font-size: 0.88rem;
    line-height: 1.7;
}

.career-paths {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.career-paths span {
    padding: 0.5rem 0.7rem;
    color: #4e5260;
    background: #ececf1;
    border-radius: 5px;
    font-size: 0.68rem;
    font-weight: 600;
}

.career-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding: 1.1rem 1.25rem;
    color: #fff;
    background: #171e6d;
    border: 1px solid #171e6d;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.career-cta:hover {
    color: #171e6d;
    background: transparent;
    transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
    .insights-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    }

    .insight-card-compact {
        grid-template-columns: 1fr;
    }

    .insight-image-wrap {
        min-height: 130px;
    }

    .insight-card-body {
        padding: 1.35rem;
    }

    .insight-card-body p {
        display: none;
    }

    .careers-shell {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
        gap: 2.5rem;
    }

    .careers-values {
        grid-template-columns: 1fr;
    }

    .career-value {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .career-value>span {
        margin-bottom: 0;
    }
}

@media (max-width: 991.98px) {
    .insights-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .insight-card-featured {
        grid-row: auto;
        min-height: 520px;
    }

    .insight-card-compact {
        grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
        min-height: 255px;
    }

    .insight-card-body {
        padding: 2rem;
    }

    .insight-card-body p {
        display: block;
    }

    .careers-shell {
        grid-template-columns: 1fr;
    }

    .careers-values {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .career-value {
        display: block;
    }

    .career-value>span {
        margin-bottom: 1rem;
    }

    .career-opportunity-card {
        min-height: 470px;
    }
}

@media (max-width: 767.98px) {
    .insight-card-featured {
        min-height: 500px;
    }

    .insight-featured-content h3 {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .insight-card-compact {
        grid-template-columns: 1fr;
    }

    .insight-image-wrap {
        min-height: 220px;
    }

    .insights-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .careers-shell {
        padding: 2.25rem 1.25rem 1.25rem;
        border-radius: 14px;
    }

    .careers-content h2 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .careers-values {
        grid-template-columns: 1fr;
    }

    .career-value {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .career-value>span {
        margin-bottom: 0;
    }

    .career-opportunity-card {
        min-height: 0;
        padding: 2rem 1.5rem;
    }

    .career-card-icon {
        margin: 2.25rem 0 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .insight-featured-image,
    .insight-image-wrap img,
    .insight-link i,
    .career-cta {
        transition: none;
    }
}

/* --- NEWS & INSIGHTS: SCREENSHOT REPLICA --- */
.insights-section {
    padding: 20px 0 !important;
    background: #fff;
}

.insights-section>.container {
    width: min(calc(100% - 72px), 1440px);
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.055fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 15px;
    height: 434px;
}

.insight-card {
    border-radius: 12px;
}

.insight-card-featured {
    grid-row: 1 / span 2;
    min-height: 0;
    border: 1px solid #dce1ee;
}

.insight-featured-overlay {
    background:
        linear-gradient(90deg, rgba(7, 17, 61, 0.9) 0%, rgba(7, 17, 61, 0.38) 47%, rgba(7, 17, 61, 0.06) 74%),
        linear-gradient(0deg, rgba(7, 17, 61, 0.92) 0%, rgba(7, 17, 61, 0.08) 72%);
}

.insight-feature-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 7px 12px;
    color: #fff;
    background: #1457da;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(20, 87, 218, 0.24);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.insight-featured-content {
    padding: 25px 20px;
}

.insight-read-time {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insight-read-time i {
    font-size: 0.72rem;
}

.insight-featured-content h3 {
    max-width: 490px;
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 2.45vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.insight-featured-content p {
    max-width: 510px;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    line-height: 1.65;
}

.insight-feature-action {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.insight-arrow {
    position: absolute;
    right: 21px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: #0641b6;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(6, 65, 182, 0.2);
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.insight-arrow-light {
    position: static;
    width: 24px;
    height: 24px;
    color: #123474;
    background: #fff;
    font-size: 0.7rem;
}

.insight-card:hover .insight-arrow {
    background: #171e6d;
    transform: translateX(3px);
}

.insight-card:hover .insight-arrow-light {
    background: #fff;
}

.insight-card-compact {
    grid-template-columns: 39% minmax(0, 61%);
    min-height: 0;
    background: #fff;
    border: 1px solid #dce1ee;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(23, 30, 109, 0.04);
}

.insight-card-compact::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 50%;
    background: #4775f5;
    border-radius: 0 12px 6px 6px;
}

.insight-image-wrap {
    min-height: 0;
}

.insight-category {
    top: 14px;
    left: 14px;
    padding: 7px 13px;
    color: #1652c7;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(17, 33, 77, 0.12);
    font-size: 0.6rem;
}

.insight-card-body {
    position: relative;
    display: block;
    padding: 28px 30px;
}

.insight-meta {
    gap: 0.5rem;
    color: #68728b;
    font-size: 0.57rem;
    letter-spacing: 0.12em;
}

.insight-meta span+span::before {
    margin-right: 0.5rem;
}

.insight-card-body h3 {
    max-width: 300px;
    margin: 15px 0 12px;
    color: #101c46;
    font-size: clamp(1rem, 1.42vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.24;
}

.insight-card-body p {
    display: block;
    max-width: 285px;
    margin: 0;
    color: #68728a;
    font-size: 0.75rem;
    line-height: 1.65;
}

.insights-footer {
    min-height: 52px;
    margin-top: 20px;
    padding: 10px 16px;
    background: #f7f9ff;
    border: 1px solid #dfe5f2;
    border-radius: 5px;
}

.insights-footer-copy {
    display: flex;
    align-items: center;
    gap: 15px;
}

.insights-bell {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    background: #0b45bd;
    border-radius: 50%;
    font-size: 0.75rem;
}

.insights-footer p {
    color: #6c7489;
    font-size: 0.76rem;
}

.insights-footer p span {
    margin-right: 8px;
    color: #0c3e9f;
}

.insights-view-all {
    gap: 12px;
    color: #0c3e9f;
    font-size: 0.72rem;
}

@media (max-width: 991.98px) {
    .insights-section {
        padding: 32px 0 !important;
    }

    .insights-section>.container {
        width: min(calc(100% - 40px), 760px);
    }

    .insights-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .insight-card-featured {
        grid-row: auto;
        min-height: 500px;
    }

    .insight-card-compact {
        grid-template-columns: 39% minmax(0, 61%);
        min-height: 235px;
    }
}

@media (max-width: 575.98px) {
    .insights-section>.container {
        width: calc(100% - 28px);
    }

    .insight-card-featured {
        min-height: 480px;
    }

    .insight-featured-content {
        padding: 24px 18px;
    }

    .insight-featured-content h3 {
        font-size: 2rem;
    }

    .insight-card-compact {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .insight-image-wrap {
        min-height: 220px;
    }

    .insight-card-body {
        min-height: 245px;
        padding: 24px 22px;
    }

    .insight-card-body h3 {
        max-width: calc(100% - 45px);
        font-size: 1.35rem;
    }

    .insights-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }

    .insights-footer-copy {
        align-items: flex-start;
    }

    .insights-footer p span {
        display: block;
        margin: 0 0 3px;
    }

    .insights-view-all {
        margin-left: 43px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .insight-arrow {
        transition: none;
    }
}

/* --- WORK WITH US: SCREENSHOT REPLICA --- */
.work-section-v2 {
    position: relative;
    min-height: 920px;
    padding: 56px 0 34px !important;
    overflow: hidden;
    color: #101943;
    background:
        radial-gradient(circle at 18% 20%, rgba(242, 231, 212, 0.32), transparent 25rem),
        #fbfaf7;
}

.work-section-v2::before {
    content: '';
    position: absolute;
    right: -11%;
    bottom: -12%;
    width: 62%;
    height: 118%;
    background: linear-gradient(145deg, #1c284d 0%, #11173f 55%, #171e6d 100%);
    clip-path: polygon(48% 0, 100% 0, 100% 100%, 16% 100%, 0 77%, 0 30%);
}

.work-section-v2::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -80px;
    width: 270px;
    height: 270px;
    background: rgba(52, 119, 56, 0.17);
    border-radius: 42% 58% 52% 48%;
    filter: blur(22px);
    transform: rotate(-20deg);
}

.work-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 96px), 1380px);
    margin: 0 auto;
}

.work-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(620px, 1.06fr);
    gap: clamp(50px, 6vw, 92px);
    align-items: start;
}

.work-intro {
    padding-top: 58px;
}

.work-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #168865;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.work-eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f3f8f4;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(20, 78, 62, 0.08);
    font-size: 1.1rem;
}

.work-intro>h2 {
    max-width: 640px;
    margin: 38px 0 27px;
    color: #101956;
    font-family: var(--font-primary);
    font-size: clamp(4rem, 5.2vw, 5.55rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.work-intro>h2 span {
    color: #42aa82;
}

.work-lead {
    max-width: 620px;
    margin: 0;
    color: #697187;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.85;
}

.work-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 44px;
}

.work-value {
    position: relative;
    padding: 0 28px;
}

.work-value:first-child {
    padding-left: 0;
}

.work-value:last-child {
    padding-right: 0;
}

.work-value+.work-value {
    border-left: 1px solid #d9dcd9;
}

.work-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    color: #139170;
    background: rgba(22, 136, 101, 0.07);
    border-radius: 50%;
    font-size: 1.85rem;
}

.work-value h3 {
    margin: 0 0 11px;
    color: #101943;
    font-size: 1.05rem;
    font-weight: 700;
}

.work-value p {
    margin: 0;
    color: #667086;
    font-size: 0.82rem;
    line-height: 1.65;
}

.work-belief {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 620px;
    margin-top: 46px;
    padding: 20px 24px;
    overflow: hidden;
    background: rgba(242, 246, 241, 0.82);
    border-radius: 14px;
}

.work-belief::after {
    content: '';
    position: absolute;
    right: 24px;
    width: 82px;
    height: 48px;
    opacity: 0.16;
    background-image: radial-gradient(#168865 1.5px, transparent 1.5px);
    background-size: 12px 12px;
}

.work-belief-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    background: #121947;
    border-radius: 50%;
    font-size: 1.45rem;
}

.work-belief p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #101943;
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.55;
}

.work-showcase {
    position: relative;
    min-height: 830px;
}

.work-showcase::after {
    content: '';
    position: absolute;
    right: -28px;
    bottom: 48px;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    background-image: radial-gradient(#8ea3ff 1.5px, transparent 1.5px);
    background-size: 13px 13px;
}

.work-photo-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 95%;
    height: 365px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.work-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.jobs-panel {
    position: absolute;
    top: 255px;
    left: 0;
    z-index: 2;
    width: 88%;
    padding: 28px 30px 25px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(221, 224, 227, 0.9);
    border-radius: 20px;
    box-shadow: 0 26px 55px rgba(7, 13, 49, 0.18);
    backdrop-filter: blur(12px);
}

.jobs-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.jobs-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #101943;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jobs-panel-title>span {
    width: 10px;
    height: 10px;
    background: #2ba176;
    border: 4px solid #c9eadf;
    box-sizing: content-box;
    border-radius: 50%;
}

.jobs-panel-header>a {
    color: #101943;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
}

.jobs-panel-header>a i {
    margin-left: 7px;
}

.job-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    border-bottom: 1px solid #e4e5e6;
}

.job-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #168865;
    background: #f1f6f1;
    border-radius: 10px;
    font-size: 1.35rem;
}

.job-info h3 {
    margin: 0 0 8px;
    color: #13172e;
    font-size: 1rem;
    font-weight: 700;
}

.job-info p {
    margin: 0;
    color: #6a7083;
    font-size: 0.79rem;
}

.job-info p span {
    margin: 0 8px;
    color: #a7abb6;
}

.job-chevron {
    color: #101943;
    font-size: 1rem;
}

.job-cv-callout {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
    padding: 17px 20px;
    color: #fff;
    background: linear-gradient(115deg, #27335f, #10163f);
    border-radius: 9px;
}

.job-cv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1b245d;
    border-radius: 50%;
    font-size: 1.2rem;
}

.job-cv-callout strong,
.job-cv-callout small {
    display: block;
}

.job-cv-callout strong {
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.job-cv-callout small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
}

.job-cv-callout>a {
    padding: 12px 19px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.job-cv-callout>a:hover {
    color: #171e6d;
    background: #fff;
}

.work-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 88%;
    padding: 28px 18px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 0 22px 45px rgba(7, 13, 49, 0.18);
}

.work-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.work-stat+.work-stat {
    border-left: 1px solid #e1e2e4;
}

.work-stat i {
    margin-bottom: 10px;
    color: #168865;
    font-size: 1.4rem;
}

.work-stat strong {
    margin-bottom: 6px;
    color: #101943;
    font-size: 1.45rem;
    font-weight: 800;
}

.work-stat span {
    color: #6a7083;
    font-size: 0.67rem;
}

@media (max-width: 1199.98px) {
    .work-section-v2 {
        min-height: 0;
    }

    .work-container {
        width: min(calc(100% - 64px), 1100px);
    }

    .work-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .work-intro {
        max-width: 850px;
        padding-top: 0;
    }

    .work-intro>h2 {
        max-width: 800px;
    }

    .work-showcase {
        width: min(100%, 800px);
        min-height: 850px;
        margin: 0 auto;
    }

    .work-photo-wrap {
        width: 92%;
    }

    .jobs-panel,
    .work-stats {
        width: 88%;
    }
}

@media (max-width: 767.98px) {
    .work-section-v2 {
        padding: 44px 0 30px !important;
    }

    .work-section-v2::before {
        right: -45%;
        bottom: -8%;
        width: 115%;
        height: 59%;
    }

    .work-container {
        width: calc(100% - 32px);
    }

    .work-intro>h2 {
        margin-top: 30px;
        font-size: clamp(3.2rem, 15vw, 4.7rem);
    }

    .work-lead {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .work-values {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .work-value,
    .work-value:first-child,
    .work-value:last-child {
        display: grid;
        grid-template-columns: 58px 1fr;
        column-gap: 16px;
        padding: 18px 0 0;
        border-top: 1px solid #d9dcd9;
        border-left: 0;
    }

    .work-value-icon {
        grid-row: 1 / span 2;
        width: 58px;
        height: 58px;
        margin: 0;
        font-size: 1.35rem;
    }

    .work-value h3 {
        margin: 2px 0 5px;
    }

    .work-belief {
        margin-top: 32px;
        padding: 18px;
    }

    .work-belief p br {
        display: none;
    }

    .work-showcase {
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-height: 0;
    }

    .work-photo-wrap,
    .jobs-panel,
    .work-stats {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .work-photo-wrap {
        height: 280px;
        border-radius: 16px;
    }

    .jobs-panel {
        padding: 22px 18px 18px;
        border-radius: 16px;
    }

    .jobs-panel-header {
        align-items: flex-start;
    }

    .job-row {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 88px;
    }

    .job-icon {
        width: 48px;
        height: 48px;
    }

    .job-info h3 {
        font-size: 0.88rem;
    }

    .job-info p {
        font-size: 0.67rem;
    }

    .job-cv-callout {
        grid-template-columns: 44px 1fr;
        padding: 15px;
    }

    .job-cv-icon {
        width: 44px;
        height: 44px;
    }

    .job-cv-callout>a {
        grid-column: 1 / -1;
        text-align: center;
    }

    .work-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 0;
        padding: 24px 14px;
        border-radius: 16px;
    }

    .work-stat:nth-child(3) {
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .job-cv-callout>a {
        transition: none;
    }
}

/* --- NEWS & INSIGHTS: THREE-COLUMN SCREENSHOT REPLICA --- */
.insights-section {
    padding: 70px 0 70px !important;
    background: #f8f7f5;
}

.insights-section>.container {
    width: min(calc(100% - 68px), 1440px);
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.insights-column-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.insight-column-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(17, 31, 75, 0.055);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.insight-column-card:hover {
    box-shadow: 0 18px 38px rgba(17, 31, 75, 0.11);
    transform: translateY(-5px);
}

.insight-column-image {
    position: relative;
    height: 205px;
    overflow: hidden;
}

.insight-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.insight-column-card:hover .insight-column-image img {
    transform: scale(1.045);
}

.insight-column-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    color: #1254ce;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(19, 39, 84, 0.12);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.insight-column-card:first-child .insight-column-badge {
    color: #fff;
    background: #0759df;
}

.insight-column-body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 265px;
    padding: 20px 21px 17px;
    gap: 5px;
}

/* .insight-column-body::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 108px;
    background: #3d72ff;
    border-radius: 0 4px 4px 0;
} */

.insight-column-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 14px;
    color: #606b86;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    /* /* text-transform: uppercase; */
}

.insight-column-meta i {
    color: #1760e4;
    font-size: 0.73rem;
}

.insight-column-meta b {
    color: #a3a9b8;
    font-size: 0.7rem;
}

.insight-column-body h3 {
    margin: 13px 0 9px;
    color: #101c49;
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 1.75vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.13;
}

.insight-column-body p {
    margin: 0 0 13px;
    color: #66718a;
    font-size: 16px;
    line-height: 1.65;
}

.insight-column-action {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    color: #0751d1;
    font-size: 0.72rem;
    font-weight: 800;
}

.insight-column-action i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid #1760e4;
    border-radius: 50%;
    font-size: 0.7rem;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.insight-column-card:hover .insight-column-action i {
    color: #fff;
    background: #1760e4;
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .insights-section {
        padding: 32px 0 !important;
    }

    .insights-section>.container {
        width: min(calc(100% - 40px), 760px);
    }

    .insights-column-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-column-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }
}

@media (max-width: 575.98px) {
    .insights-section>.container {
        width: calc(100% - 28px);
    }

    .insights-column-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .insight-column-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .insight-column-image {
        height: 220px;
    }

    .insight-column-body {
        min-height: 235px;
        padding: 22px 20px 18px;
    }

    .insight-column-body h3 {
        font-size: 1.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .insight-column-card,
    .insight-column-image img,
    .insight-column-action i {
        transition: none;
    }
}






/* ========================================================== */
/* CAREERS SECTION STYLING                                    */
/* ========================================================== */
.careers-section {
    background-color: #ffffff;
    /* Clean canvas background to contrast with warm news section */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.careers-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #171e6d;
    /* Deep TNA Navy Blue */
    letter-spacing: -0.015em;
}

.careers-body-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555555;
}

/* Culture Pillars (Left Side) */
.culture-pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #F8F7F5;
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    color: #171e6d;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pillar-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.pillar-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

/* Job Cards (Right Side) */
.job-panel-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.35s ease;
}

.job-panel-card:hover {
    transform: translateY(-3px);
    border-color: #171e6d;
    box-shadow: 0 12px 30px rgba(23, 30, 109, 0.04);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-department {
    color: #171e6d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-location {
    color: #8c8c8a;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
}

.job-summary {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #555555;
    margin: 0;
}

.job-card-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f0ee;
    text-align: right;
}

.job-apply-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #171e6d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.job-panel-card:hover .job-apply-link {
    color: #0f1450;
    gap: 10px;
}

/* General Spontaneous CV Callout Card */
.general-talent-card {
    background-color: #F8F7F5;
    border: 1px dashed #cbd0ff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 1.5rem;
}

.talent-card-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.talent-icon {
    font-size: 1.85rem;
    color: #171e6d;
    line-height: 1;
}

.talent-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.35rem;
}

.talent-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}

.btn-talent-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #171e6d;
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-talent-connect:hover {
    background-color: #0f1450;
    transform: translateY(-1px);
}

/* --- MOBILE & TABLET RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .general-talent-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .btn-talent-connect {
        width: 100%;
    }
}

/* ========================================================== */
/* INVESTMENT CTA & CONTACT                                   */
/* ========================================================== */
.investment-cta-section {
    --cta-primary: #171e6d;
    --cta-deep: #171a2f;
    --cta-accent: #b99658;
    --cta-accent-soft: #ead9b7;
    --cta-surface: #f5f2ec;
    --cta-copy: #62677e;
    padding: 12px 12px 70px 12px;
    background: #f8f7f5;
}

.investment-cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
    width: min(100%, 1440px);
    min-height: 680px;
    margin: 0 auto;
    overflow: hidden;
    background: #e7e3dc;
    border-radius: 14px;
    /* box-shadow: 0px 2px 11px rgba(35, 37, 50, 0.14); */
    border: 1px solid #e8e8e6;
}

.investment-cta-story {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    background: #242838;
}

.investment-cta-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 23, 36, 0.94) 0%, rgba(28, 34, 69, 0.76) 54%, rgba(23, 30, 109, 0.38) 100%),
        linear-gradient(0deg, rgba(18, 21, 34, 0.82), rgba(23, 30, 109, 0.08)),
        url('https://images.pexels.com/photos/466685/pexels-photo-466685.jpeg?auto=compress&cs=tinysrgb&w=1600') center bottom / cover no-repeat;
}

/* .investment-cta-story::after {
    content: '';
    position: absolute;
    right: -8%;
    bottom: 6%;
    left: -8%;
    height: 42%;
    opacity: 0.11;
    background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 25px, var(--cta-accent) 27px 28px, transparent 30px 48px);
    transform: rotate(-4deg);
} */

.investment-cta-story-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(3rem, 5vw, 5.5rem);
}

.investment-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.investment-cta-eyebrow i {
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
}

.investment-cta-story h2 {
    margin: 1.4rem 0 1rem;
    color: #fff;
    font-size: clamp(2.7rem, 4.3vw, 4.35rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

@media (max-width: 767px) {
    .investment-cta-story h2 {
        margin: 1rem 0 0.75rem;
        font-size: 2.4rem !important;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }
}

.investment-cta-story h2 span {
    color: #fff;
}

.investment-cta-lead {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.75;
}

.investment-cta-divider {
    display: block;
    width: 48px;
    height: 1px;
    margin: 1.5rem 0 2.6rem;
    /* background: #d0ad6a; */
}

.investment-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 -18px;
}

.investment-benefit {
    padding: 0 18px;
}

.investment-benefit+.investment-benefit {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.investment-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    color: #171e6d;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    font-size: 1.45rem;
    background: #fff;
}

.investment-benefit h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.investment-benefit p {
    margin: 0;
    color: rgb(255 255 255 / 89%);
    font-size: 14px;
    line-height: 1.55;
}

.investment-contact-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3rem;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.investment-contact-option {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
}

.investment-contact-option+.investment-contact-option {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.investment-contact-option>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #171e6d;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    font-size: 1.15rem;
    background: #fff
}

.investment-contact-option small,
.investment-contact-option strong {
    display: block;
}

.investment-contact-option small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.investment-contact-option strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.investment-form-panel {
    align-self: center;
    /* margin: 18px; */
    padding: clamp(2rem, 3.5vw, 3.5rem);
    background: #ffffff;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 22px 55px rgba(31, 34, 48, 0.16);
    height: 100%;
}

.investment-form-header {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #9a7437;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.investment-form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #9a7437;
    background: #faf5ea;
    border: 1px solid #e5d6bb;
    border-radius: 50%;
    font-size: 1rem;
}

.investment-form-panel>h2 {
    margin: 0.7rem 0 0.45rem;
    color: var(--cta-primary);
    font-size: clamp(1.8rem, 2.7vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.investment-form-panel>p {
    max-width: 550px;
    margin: 0 0 1.65rem;
    color: var(--cta-copy);
    font-size: 16px;
    line-height: 1.6;
}

.investment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.investment-field {
    position: relative;
    display: block;
    margin: 0;
}

.investment-field>i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 1;
    color: #71809b;
    font-size: 0.9rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.investment-field input,
.investment-field select,
.investment-field textarea {
    width: 100%;
    color: #172348;
    background: #fff;
    border: 1px solid #dce1e9;
    border-radius: 7px;
    outline: 0;
    font-size: 13px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.investment-field input,
.investment-field select {
    height: 48px;
    padding: 0 16px 0 46px;
}

.investment-field textarea {
    min-height: 108px;
    padding: 16px 16px 16px 46px;
    resize: vertical;
}

.investment-field input::placeholder,
.investment-field textarea::placeholder {
    color: #7c869b;
    opacity: 1;
}

.investment-field input:focus,
.investment-field select:focus,
.investment-field textarea:focus {
    border-color: #171e6d;
    box-shadow: 0 0 0 3px rgba(23, 30, 109, 0.1);
}

.investment-field-full {
    grid-column: 1 / -1;
}

.custom-select-wrapper {
    z-index: 2;
}

.custom-select-wrapper > i {
    top: 24px;
    transform: translateY(-50%);
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 0 16px 0 46px;
    color: #172348;
    background: #fff;
    border: 1px solid #dce1e9;
    border-radius: 7px;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-select-trigger:hover,
.custom-select-wrapper.is-open .custom-select-trigger {
    border-color: #171e6d;
}

.custom-select-wrapper.is-open .custom-select-trigger {
    box-shadow: 0 0 0 3px rgba(23, 30, 109, 0.1);
}

.custom-select-label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 12px;
}

.custom-select-label.placeholder-text {
    color: #7c869b;
}

.select-chevron-icon {
    flex: 0 0 auto;
    color: #71809b;
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.custom-select-wrapper.is-open .select-chevron-icon {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    padding: 6px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce1e9;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(23, 30, 109, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.custom-select-wrapper.is-open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 7px;
    color: #172348;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-option:hover,
.custom-option.selected {
    background: #f4f5fb;
}

.custom-option.selected {
    color: #171e6d;
}

.option-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #171e6d;
    background: #eef0fb;
    border-radius: 50%;
    font-size: 0.85rem;
}

.option-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.investment-message-field>i {
    top: 17px;
    transform: none;
}

.investment-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 1.25rem 0;
    color: #697389;
    font-size: 12px;
    line-height: 1.5;
}

.investment-consent input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin-top: 1px;
    accent-color: #171e6d;
}

.investment-consent a {
    color: var(--cta-primary);
    text-decoration: none;
}

.investment-submit-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 73%;
    min-height: 48px;
    padding: 0 18px;
    color: #fff;
    background: var(--cta-primary);
    border: 1px solid var(--cta-primary);
    border-radius: 7px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.investment-submit-button i {
    color: #e9d4ab;
    font-size: 1rem;
}

.investment-submit-button:hover,
.investment-submit-button:focus-visible {
    background: var(--cta-deep);
    transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
    .investment-cta-shell {
        grid-template-columns: 1fr;
    }

    .investment-cta-story-inner {
        padding: 4.5rem;
    }

    .investment-form-panel {
        width: min(calc(100% - 36px), 760px);
        margin: 30px auto;
    }
}

@media (max-width: 767.98px) {
    .investment-cta-section {
        padding: 8px;
    }

    .investment-cta-shell {
        border-radius: 10px;
    }

    .investment-cta-story-inner {
        padding: 3rem 1.5rem;
    }

    .investment-cta-story h2 {
        font-size: clamp(2.55rem, 12vw, 3.7rem);
    }

    .investment-benefits {
        grid-template-columns: 1fr;
        gap: 22px;
        margin: 0;
    }

    .investment-benefit {
        display: grid;
        grid-template-columns: 52px 1fr;
        column-gap: 15px;
        padding: 18px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0 !important;
    }

    .investment-benefit-icon {
        grid-row: 1 / span 2;
        width: 52px;
        height: 52px;
        margin: 0;
        font-size: 1.2rem;
    }

    .investment-benefit h3 {
        margin-top: 4px;
    }

    .investment-contact-strip {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .investment-contact-option+.investment-contact-option {
        padding: 15px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
    }

    .investment-form-panel {
        width: 100%;
        /* margin: 8px; */
        padding: 2rem 1.25rem;
        border-radius: 0;
    }

    .investment-form-grid {
        grid-template-columns: 1fr;
    }

    .investment-field-full {
        grid-column: auto;
    }

    .investment-submit-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .investment-field input,
    .investment-field select,
    .investment-field textarea,
    .investment-submit-button {
        transition: none;
    }
}

/* ========================================================== */
/* FREQUENTLY ASKED QUESTIONS                                 */
/* ========================================================== */
.faq-section {
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(4rem, 8vw, 8.5rem);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.faq-intro .section-heading {
    max-width: 570px;
}

.faq-intro>p {
    max-width: 510px;
    margin: 1.5rem 0 2rem;
    color: #666b78;
    font-size: 1.05rem;
    line-height: 1.75;
}

.faq-help-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #686c78;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
}

.faq-help-link span {
    color: #171e6d;
    font-weight: 700;
}

.faq-help-link i {
    color: #171e6d;
    transition: transform 0.25s ease;
}

.faq-help-link:hover i,
.faq-help-link:focus-visible i {
    transform: translate(2px, -2px);
}

.faq-list {
    border-top: 1px solid #d8d9df;
}

.faq-item {
    border-bottom: 1px solid #d8d9df;
    transition: background-color 0.3s ease;
}

.faq-item[open] {
    background: #fff;
}

.faq-item summary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 1rem;
    align-items: center;
    min-height: 88px;
    padding: 1.15rem 1.25rem;
    color: #171e6d;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-number {
    color: #8a8e9c;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.faq-question {
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.faq-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #171e6d;
    background: #eef0f8;
    border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.3s ease;
}

.faq-toggle::after {
    transform: rotate(90deg);
}

.faq-item[open] .faq-toggle {
    color: #fff;
    background: #171e6d;
}

.faq-item[open] .faq-toggle::after {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 5.75rem 1.7rem 4.8rem;
}

.faq-answer p {
    max-width: 690px;
    margin: 0;
    color: #666b78;
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width: 991.98px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-intro {
        position: static;
    }

    .faq-intro>p {
        max-width: 680px;
    }
}

@media (max-width: 575.98px) {
    .faq-layout {
        gap: 2.25rem;
    }

    .faq-item summary {
        grid-template-columns: 28px minmax(0, 1fr) 34px;
        gap: 0.75rem;
        min-height: 80px;
        padding: 1rem 0.75rem;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding: 0 3.4rem 1.4rem 3.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-help-link i,
    .faq-toggle::before,
    .faq-toggle::after {
        transition: none;
    }
}


/* --- REPLICA FOOTER GLOBAL STYLES --- */
.replica-footer {
    background-color: #030717;
    /* Matches the deep, dark navy background from the screenshot */
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 70px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
    .replica-footer {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

.replica-footer .container {
    max-width: 1440px;
}

/* --- LOGO & PROFILE COLUMN --- */
.footer-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Converts the dark logo asset dynamically to all-white */
}

.footer-desc {
    color: #cbd5e1;
    /* Soft slate/grey matching the text contrast in your screenshot */
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.footer-social-wrap {
    display: flex;
    gap: 12px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-circle:hover {
    color: #00abe9;
    border-color: #216eff;
    background-color: rgba(33, 110, 255, 0.1);
    transform: translateY(-2px);
}

/* --- COLUMN DIVIDERS & STRUCTURAL HEADERS --- */
.footer-header {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    margin: 0;
}

/* Electric blue underline style matching your reference */
/* .footer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #216eff; 
} */

/* Responsive vertical divider line borders */
@media (min-width: 992px) {
    .replica-footer .footer-col {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        padding-right: 2.25rem;
        padding-left: 2.25rem;
    }

    .replica-footer .footer-col:first-child {
        padding-left: 0;
    }

    .replica-footer .footer-col:last-child {
        border-right: none;
        padding-right: 0;
    }
}

/* --- LINKS & NAVIGATION --- */
.footer-links-list li {
    margin-bottom: 0.9rem;
}

.footer-links-list a {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links-list a:hover {
    color: #00abe9;
    transform: translateX(2px);
}

.link-chevron {
    color: #00ABF0;
    /* Electric blue bullet chevrons */
    font-weight: 800;
    font-size: 0.85rem;
}

.sector-icon {
    color: #00ABF0;
    /* Electric blue icons */
    font-size: 1.05rem;
}

/* --- CONTACT INFO PANEL (COLUMN 4) --- */
.footer-contact-wrap {
    display: flex;
    flex-direction: column;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-icon {
    color: #00ABF0;
    /* Electric blue icon theme */
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-text {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

a.contact-text:hover {
    color: #00abe9;
}

.footer-divider-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 35px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .footer-divider-bottom {
        margin-top: 5px;
        padding-bottom: 10px;
    }
}

/* --- TABLET & MOBILE FALLBACKS --- */
@media (max-width: 991.98px) {
    .replica-footer .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 25px;
        margin-bottom: 15px;
    }

    .replica-footer .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.pt-70 {
    padding-top: 70px;
}

@media (max-width: 767px) {
    .py-70 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 767px) {
    .pt-70 {
        padding-top: 50px;
    }

    .pb-70 {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .mb-5 {
        margin-bottom: 1rem !important;
    }
}


/* --- PREMIUM LOGO AUTO-SLIDER SYSTEM --- */
.partners-marquee-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    display: flex;
    align-items: center;
    background: #ffffff;
    /* Matches the clean white container background */
    isolation: isolate;
}

/* 
   Visual Fade Masks: Fades logos softly into view as they enter from the sides 
*/
.partners-marquee-viewport::before,
.partners-marquee-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 15vw, 200px);
    /* Responsive fade-out width */
    z-index: 5;
    pointer-events: none;
}

.partners-marquee-viewport::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-marquee-viewport::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Sliding animation container track */
.partners-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: partnersAutoScroll 38s linear infinite;
    /* Highly optimized transform scrolling */
    will-change: transform;
}

/* Pause scroll when a user hovers to interact */
.partners-marquee-viewport:hover .partners-marquee-track {
    animation-play-state: paused;
}

/* Individual Brand Logo Card Wrapper */
.partner-slider-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 110px;
    padding: 20px 25px;
    background: #F8F7F5;
    /* Matches the brand's warm off-white shade */
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

/* Card Interactive State */
.partner-slider-card:hover {
    background-color: #ffffff;
    border-color: rgba(23, 30, 109, 0.24);
    /* Subtle brand navy color accent */
    box-shadow: 0 10px 25px rgba(23, 30, 109, 0.05);
    transform: translateY(-4px) scale(1.02);
}

/* Logo Image Sizing Rules */
.partner-slider-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    /* Keeps all corporate logos visually cohesive */
    transition: filter 0.35s ease, transform 0.35s ease;
}

.partner-slider-img-wide {
    height: 40px;
    /* Balance proportions for wider horizontal marks */
}

/* Highlight logo brand assets on focus/hover */
.partner-slider-card:hover .partner-slider-img {
    filter: grayscale(0%) opacity(1);
}

/* CSS Sliding Keyframes */
@keyframes partnersAutoScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
        /* Perfectly loops when duplicated */
    }
}

/* --- MOBILE & TABLET OPTIMIZATIONS --- */
@media (max-width: 991.98px) {
    .partners-marquee-viewport {
        padding: 20px 0;
    }

    .partner-slider-card {
        width: 170px;
        height: 95px;
        padding: 15px 20px;
    }

    .partner-slider-img {
        height: 38px;
    }

    .partner-slider-img-wide {
        height: 32px;
    }

    .partners-marquee-track {
        gap: 16px;
        animation-duration: 28s;
        /* Slightly faster linear loop speed on smaller screens */
    }
}

/* ========================================================== */
/* STRATEGIC INTENT DESIGN SYSTEM                             */
/* ========================================================== */
.strategic-intent-section {
    background-color: #ffffff;
    padding-top: 70px;
    padding-bottom: 70px;
    font-family: var(--font-primary);
}

.intent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intent-badge i {
    font-size: 0.95rem;
}

.intent-aside-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.intent-aside-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
}

/* --- VERTICAL ACCENT NAVIGATION --- */
.intent-nav-indicators {
    border-left: 2px solid #e8e8e6;
    padding-left: 0;
}

.intent-nav-item {
    position: relative;
    transition: color 0.25s ease;
}

.intent-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: #8c8c8a;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.intent-nav-link:hover {
    color: #171e6d;
}

.intent-nav-dot {
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: transparent;
    display: inline-block;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* Selected state indicators */
.intent-nav-item.active-intent .intent-nav-link {
    color: #171e6d;
    font-weight: 700;
}

.intent-nav-item.active-intent .intent-nav-dot {
    background-color: #171e6d;
    box-shadow: 0 0 0 4px rgba(23, 30, 109, 0.15);
}

/* --- DECK CARDS --- */
.intent-showcase-card {
    background-color: #F8F7F5;
    border: 1px solid #e8e8e6;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease;
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.intent-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-color: #d1d1cd;
}

.intent-media-frame {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    padding: 25px;
}

.intent-media-source {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.intent-showcase-card:hover .intent-media-source {
    transform: scale(1.02);
}

/* Floating overlay glass badge */
.intent-image-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #171e6d;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intent-content-shell {
    padding: 25px 25px 35px 25px;
}

.intent-icon-capsule {
    width: 44px;
    height: 44px;
    border: 1px solid #e8e8e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #171e6d;
    background: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.intent-showcase-card:hover .intent-icon-capsule {
    background-color: #171e6d;
    border-color: #171e6d;
    color: #ffffff;
}

.intent-card-headline {
    font-size: 1.45rem;
    font-weight: 700;
    color: #171e6d;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.intent-card-paragraph {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

/* Responsive constraints */
@media (max-width: 991.98px) {
    .intent-media-frame {
        height: 260px;
    }

    .intent-content-shell {
        padding: 25px;
    }

    .intent-image-badge {
        bottom: 35px;
        left: 35px;
    }
}


/* --- ABOUT COMPANY DESIGN SYSTEM --- */
.about-company-section {
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-heading {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.03em;
}

.about-subheading {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555555;
    max-width: 720px;
}

/* Custom Yellow/Orange Button */
.btn-learn-more {
    display: inline-block;
    background-color: #ffb834;
    color: #111111 !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-learn-more:hover {
    background-color: #e5a122;
    transform: translateY(-1px);
}

/* Image Collage Layout */
.about-image-collage {
    position: relative;
    width: 100%;
    max-width: 540px;
    padding-right: 90px;
    /* Space allowance for the overlapping image protrusion */
    margin: 0 auto;
}

.main-image-wrapper {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.img-blueprint {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlapping Worker Card */
.overlap-image-wrapper {
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 52%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 10px solid #ffffff;
    /* Seamless overlay mask */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.img-workers {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-collage:hover .overlap-image-wrapper {
    transform: translateY(-4px);
}

/* Stacked Accordion Cards */
.about-tabs-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 18px;
    padding: 24px 30px;
    cursor: pointer;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Active State Styles */
.about-card.active-card {
    background-color: #F8F7F5;
    /* Matches clean off-white brand style */
    border-color: transparent;
    cursor: default;
}

.about-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

/* Accordion Transition Details */
.about-card .card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.4s ease;
}

.about-card.active-card .card-content {
    max-height: 250px;
    margin-top: 14px;
}

.card-description {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

.more-link {
    font-weight: 700;
    color: #111111;
    cursor: pointer;
    margin-left: 4px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .about-image-collage {
        margin-bottom: 50px;
    }
}

@media (max-width: 575.98px) {
    .about-image-collage {
        padding-right: 50px;
    }

    .overlap-image-wrapper {
        border-width: 6px;
        bottom: -15px;
    }

    .about-card {
        padding: 20px 24px;
    }

    .about-card .card-title {
        font-size: 1.5rem;
    }
}


/* --- PREMIUM ABOUT SECTION BRANDING --- */
.premium-about-section {
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Micro-eyebrow styling */
.about-eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #171e6d;
    /* Muted corporate blue */
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-heading {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.about-subheading {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    max-width: 760px;
}

/* Animated Action Button */
.btn-premium-action {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #ffb834;
    color: #111111 !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 12px 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.25s ease;
}

.btn-premium-action .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.btn-premium-action:hover {
    background-color: #e5a122;
    transform: translateY(-2px);
}

.btn-premium-action:hover .btn-arrow {
    transform: translateX(4px);
}

/* Premium Collage Structure */
.premium-image-collage {
    position: relative;
    width: 100%;
    max-width: 675px;
    padding-right: 90px;
    margin: 0 auto;
}

.main-frame-wrapper {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.collage-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-image-collage:hover .collage-main-img {
    transform: scale(1.02);
}

.overlap-frame-wrapper {
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 52%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 10px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(23, 30, 109, 0.08);
    transition: transform 0.4s ease;
}

.collage-overlap-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-image-collage:hover .overlap-frame-wrapper {
    transform: translateY(-4px) rotate(1deg);
}

/* Translucent floating badge over collage */
.collage-floating-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(23, 30, 109, 0.08);
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    padding: 14px 20px;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.badge-accent-line {
    width: 4px;
    height: 38px;
    background-color: #171e6d;
    border-radius: 2px;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: #171e6d;
    line-height: 1.1;
}

.badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.premium-image-collage:hover .collage-floating-badge {
    transform: translateY(-2px);
}

/* Refined Drawers Stack */
.premium-drawers-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.premium-drawer {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 20px;
    padding: 24px 30px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle Left Indicator Line on Drawer active state */
/* .premium-drawer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    background-color: #171e6d;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.premium-drawer.active-drawer::before {
    opacity: 1;
}

.premium-drawer.active-drawer {
    background-color: #F8F7F5;
    /* Matches clean corporate style */
    border-color: transparent;
    cursor: default;
    box-shadow: 0 10px 30px rgba(23, 30, 109, 0.03);
}

/* Drawer Header Content alignment */
.drawer-header {
    display: flex;
    align-items: center;
    gap: 18px;
    user-select: none;
}

.drawer-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #F8F7F5;
    border: 1px solid #e8e8e6;
    color: #171e6d;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.premium-drawer.active-drawer .drawer-icon-box {
    background-color: #171e6d;
    border-color: #171e6d;
    color: #ffffff;
}

.drawer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    letter-spacing: -0.025em;
    flex-grow: 1;
}

.drawer-caret {
    font-size: 1.2rem;
    color: #8c8c8a;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.premium-drawer.active-drawer .drawer-caret {
    transform: rotate(180deg);
    color: #171e6d;
}

/* Drawer Expanding Mechanics */
.drawer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.4s ease;
}

.premium-drawer.active-drawer .drawer-content {
    max-height: 250px;
    margin-top: 16px;
    padding-left: 60px;
    /* Aligns description to baseline cleanly past icons */
}

.drawer-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

.read-more-link {
    font-weight: 700;
    color: #171e6d;
    cursor: pointer;
    margin-left: 4px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .premium-image-collage {
        margin-bottom: 50px;
    }
}

@media (max-width: 575.98px) {
    .premium-image-collage {
        padding-right: 50px;
    }

    .overlap-frame-wrapper {
        border-width: 6px;
        bottom: -15px;
    }

    .collage-floating-badge {
        padding: 8px 14px;
        top: 20px;
        left: -10px;
    }

    .badge-accent-line {
        height: 30px;
    }

    .badge-num {
        font-size: 1.2rem;
    }

    .premium-drawer {
        padding: 18px 20px;
    }

    .premium-drawer.active-drawer .drawer-content {
        padding-left: 0;
        /* Fallback on mobile screens to retain container width */
    }

    .drawer-title {
        font-size: 1.25rem;
    }

    .drawer-icon-box {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}


/* --- PREMIUM ABOUT SECTION BRANDING --- */
.premium-about-section {
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Micro-eyebrow styling */
.about-eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #171e6d;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-heading {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.about-subheading {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    max-width: 760px;
}

/* Animated Action Button */
.btn-premium-action {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #ffb834;
    color: #111111 !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 12px 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.25s ease;
}

.btn-premium-action .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.btn-premium-action:hover {
    background-color: #e5a122;
    transform: translateY(-2px);
}

.btn-premium-action:hover .btn-arrow {
    transform: translateX(4px);
}

/* Premium Collage Structure */
.premium-image-collage {
    position: relative;
    width: 100%;
    max-width: 675px;
    padding-right: 90px;
    margin: 0 auto;
}

.main-frame-wrapper {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.collage-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-image-collage:hover .collage-main-img {
    transform: scale(1.02);
}

.overlap-frame-wrapper {
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 52%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 10px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(23, 30, 109, 0.08);
    transition: transform 0.4s ease;
}

.collage-overlap-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-image-collage:hover .overlap-frame-wrapper {
    transform: translateY(-4px) rotate(1deg);
}

/* Translucent floating badge over collage */
.collage-floating-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(23, 30, 109, 0.08);
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    padding: 14px 20px;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.badge-accent-line {
    width: 4px;
    height: 38px;
    background-color: #171e6d;
    border-radius: 2px;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: #171e6d;
    line-height: 1.1;
}

.badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.premium-image-collage:hover .collage-floating-badge {
    transform: translateY(-2px);
}

/* Refined Drawers Stack */
.premium-drawers-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.premium-drawer {
    background-color: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 20px;
    padding: 24px 30px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Accent highlight bar */
/* .premium-drawer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    background-color: #171e6d;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.premium-drawer.active-drawer::before {
    opacity: 1;
}

.premium-drawer.active-drawer {
    background-color: #F8F7F5;
    border: 1px solid #e8e8e6;
    cursor: default;
    box-shadow: 0 10px 30px rgba(23, 30, 109, 0.03);
}

/* Header contents alignment */
.drawer-header {
    display: flex;
    align-items: center;
    gap: 18px;
    user-select: none;
}

.drawer-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #F8F7F5;
    border: 1px solid #e8e8e6;
    color: #171e6d;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.premium-drawer.active-drawer .drawer-icon-box {
    background-color: #171e6d;
    border-color: #171e6d;
    color: #ffffff;
}

.drawer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #171e6d;
    margin: 0;
    letter-spacing: -0.025em;
    flex-grow: 1;
}

.drawer-caret {
    font-size: 1.2rem;
    color: #8c8c8a;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.premium-drawer.active-drawer .drawer-caret {
    transform: rotate(180deg);
    color: #171e6d;
}

/* Collapsible Section height rules */
.drawer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.45s ease;
}

.premium-drawer.active-drawer .drawer-content {
    max-height: 500px;
    /* High enough default threshold for longer text */
    margin-top: 16px;
    padding-left: 60px;
}

.drawer-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .premium-image-collage {
        margin-bottom: 50px;
    }
}

@media (max-width: 575.98px) {
    .premium-image-collage {
        padding-right: 50px;
    }

    .overlap-frame-wrapper {
        border-width: 6px;
        bottom: -15px;
    }

    .collage-floating-badge {
        padding: 8px 14px;
        top: 20px;
        left: -10px;
    }

    .badge-accent-line {
        height: 30px;
    }

    .badge-num {
        font-size: 1.2rem;
    }

    .premium-drawer {
        padding: 18px 20px;
    }

    .premium-drawer.active-drawer .drawer-content {
        padding-left: 0;
    }

    .drawer-title {
        font-size: 1.25rem;
    }

    .drawer-icon-box {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* --- UPDATED DRAWER COLLAPSIBLE RULES --- */

.drawer-content {
    max-height: 0;
    overflow: hidden;
    /* Added padding-left and unified timing functions to ensure everything transitions at the same pace */
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        margin-top 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        padding-left 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-drawer.active-drawer .drawer-content {
    /* Removed static 'max-height: 500px' so JavaScript can apply precise scrollHeight */
    margin-top: 16px;
    padding-left: 60px;
}

/* Mobile responsive resets */
@media (max-width: 575.98px) {
    .premium-drawer.active-drawer .drawer-content {
        padding-left: 0;
    }
}

/* ========================================================== */
/* --- NEWS & INSIGHTS: INTERACTIVE SLIDER REDESIGN ---       */
/* ========================================================== */

.slider-insights-section {
    background-color: #f8f7f5;
    border-top: 1px solid #eef0f3;
    position: relative;
    overflow-x: hidden;
}

.slider-insights-section>.container {
    width: min(calc(100% - 68px), 1440px);
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

/* Slider Header & Navigation Toolbar */
.slider-insights-header {
    margin-bottom: 24px;
}

.slider-insights-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid #eef0f3;
    margin-top: 20px;
}

.slider-insights-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #8c94a6;
    letter-spacing: 0.04em;
}

.slider-insights-counter .counter-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: #171e6d;
    line-height: 1;
}

.slider-insights-counter .counter-divider {
    color: #cbd5e1;
    font-weight: 400;
}

.slider-insights-progress {
    flex-grow: 1;
    max-width: 260px;
    height: 3px;
    background: #edf1f7;
    border-radius: 4px;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: #171e6d;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-insights-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e7f0;
    background: #ffffff;
    color: #171e6d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 2px 6px rgba(17, 31, 75, 0.03);
    outline: none;
}

.slider-nav-btn:hover {
    background: #171e6d;
    color: #ffffff;
    border-color: #171e6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(23, 30, 109, 0.2);
}

.slider-nav-btn:active {
    transform: translateY(0);
}

.slider-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-insights-wrapper {
    position: relative;
}

.slider-nav-side {
    position: absolute;
    top: 50%;
    z-index: 6;
    transform: translateY(-50%);
    box-shadow: 0 8px 20px rgba(17, 31, 75, 0.08);
}

.slider-nav-side.prev-btn {
    left: -56px;
}

.slider-nav-side.next-btn {
    right: -56px;
}

.slider-nav-side:hover {
    transform: translateY(-50%);
}

.slider-nav-side:active {
    transform: translateY(-50%);
}

/* Slider Viewport & Track */
.slider-insights-viewport {
    overflow: hidden;
    padding: 10px 4px 20px;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.slider-insights-viewport.grabbing {
    cursor: grabbing;
}

.slider-insights-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Slide Item */
.slider-insight-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 0;
    transition: opacity 0.3s ease;
}

/* Slide Card */
.slider-insight-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e8ee;
    border-radius: 14px;
    overflow: hidden;
    /* box-shadow: 0 6px 20px rgba(17, 31, 75, 0.04); */
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.slider-insight-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 16px 36px rgba(17, 31, 75, 0.1); */
    border-color: #c7d2fe;
}

.slider-insight-media {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.slider-insight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-insight-card:hover .slider-insight-media img {
    transform: scale(1.05);
}

.slider-insight-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(13, 21, 39, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.slider-insight-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slider-insight-kicker {
    font-size: 0.74rem;
    font-weight: 700;
    color: #171e6d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: block;
}

.slider-insight-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    margin: 0 0 10px;
    letter-spacing: -0.015em;
}

.slider-insight-title a {
    color: #171e6d;
    text-decoration: none;
    transition: color 0.25s ease;
}

.slider-insight-card:hover .slider-insight-title a {
    color: #171e6d;
}

.slider-insight-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-insight-foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f3f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.25s ease;
}

.slider-insight-link:hover {
    color: #171e6d;
}

.slider-link-arrow {
    /* width: 34px;
    height: 34px; */
    border-radius: 50%;
    background: transparent;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.slider-insight-card:hover .slider-link-arrow,
.slider-insight-link:hover .slider-link-arrow {
    color: #171e6d;
    transform: translate(2px, -2px);
}

/* Dots Pagination */
.slider-insights-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.slider-dot {
    width: 24px;
    height: 5px;
    border-radius: 4px;
    border: none;
    background: #dbe0eb;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
    outline: none;
}

.slider-dot.active {
    width: 44px;
    background: #171e6d;
}

.slider-dot:hover:not(.active) {
    background: #9aa5b8;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 991.98px) {
    .slider-insights-section>.container {
        width: min(calc(100% - 32px), 1440px);
    }

    .slider-nav-side.prev-btn {
        left: 6px;
    }

    .slider-nav-side.next-btn {
        right: 6px;
    }

    .slider-insight-slide {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .slider-insights-track {
        gap: 16px;
    }

    .slider-insight-media {
        height: 200px;
    }

    .slider-insight-content {
        padding: 20px;
    }

    .slider-insight-title {
        font-size: 1.12rem;
    }
}

@media (max-width: 767.98px) {
    .slider-insight-slide {
        flex: 0 0 100%;
    }

    .slider-insights-progress {
        display: none;
    }

    .slider-insight-media {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .slider-insights-section>.container {
        width: calc(100% - 32px);
    }
}

/* ========================================================== */
/* --- PROJECTS SECTION (#fff & #F8F7F5 LIGHT HARMONY) ---   */
/* ========================================================== */

.projects-section {
    background-color: #fff;
    position: relative;
    border-top: 1px solid #e8e8e6;
    border-bottom: 1px solid #e8e8e6;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.projects-section>.container {
    width: min(calc(100% - 68px), 1440px);
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

/* .projects-section .section-tag {
    background: rgba(23, 30, 109, 0.06);
    color: #171e6d;
    border: 1px solid rgba(23, 30, 109, 0.12);
} */

.projects-section .section-heading {
    color: #111111;
}

.projects-section .section-description {
    color: #555555 !important;
}

/* Projects Cards Grid */
.projects-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.interactive-project-card {
    position: relative;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    background: #061224;
    box-shadow: 0 8px 24px rgba(17, 31, 75, 0.06);
    cursor: pointer;
    isolation: isolate;
    border: 1px solid #e8e8e6;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
}

.interactive-project-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 24px 48px -10px rgba(17, 31, 75, 0.16);
    border-color: #cbd5e1;
}

.interactive-project-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.interactive-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-project-card:hover .interactive-project-img {
    transform: scale(1.06);
}

.interactive-project-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 14, 29, 0.05) 0%, rgba(6, 14, 29, 0.38) 45%, rgba(6, 14, 29, 0.92) 100%);
    transition: background 0.5s ease;
    pointer-events: none;
}

.interactive-project-card:hover .interactive-project-scrim {
    background: linear-gradient(180deg, rgba(6, 14, 29, 0.1) 0%, rgba(6, 14, 29, 0.65) 32%, rgba(6, 14, 29, 0.98) 100%);
}

.interactive-arrow-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.interactive-project-card:hover .interactive-arrow-btn,
.interactive-arrow-btn:hover {
    background: #ffffff;
    color: #171e6d;
    border-color: #fff;
    /* transform: translate(2px, -2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); */
}

.interactive-project-drawer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.interactive-project-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.interactive-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d4a373;
}

.interactive-status-tag .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    display: inline-block;
}

.interactive-status-tag.status-dev .status-dot {
    background: #f59e0b;
    box-shadow: 0 0 6px #f59e0b;
}

.interactive-project-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fluid Smooth CSS Grid Expansion */
.interactive-project-reveal {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-project-card:hover .interactive-project-reveal {
    grid-template-rows: 1fr;
}

.interactive-reveal-inner {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        padding-top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-project-card:hover .interactive-reveal-inner {
    opacity: 1;
    transform: translateY(0);
    padding-top: 14px;
}

.interactive-project-desc {
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 14px;
}

.interactive-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    align-items: center;
}

.interactive-meta-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
}

.interactive-meta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.interactive-meta-item:first-child {
    padding-right: 12px;
}

.interactive-meta-item:last-child {
    padding-left: 12px;
}

.interactive-meta-icon {
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-meta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.interactive-meta-text small {
    display: block;
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    line-height: 1;
}

.interactive-meta-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- PROJECTS RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1199.98px) {
    .projects-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .interactive-project-card {
        height: 400px;
    }

    .interactive-project-drawer {
        padding: 18px;
    }

    .interactive-project-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .projects-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .projects-cards-grid {
        grid-template-columns: 1fr;
    }

    .interactive-project-card {
        height: 380px;
    }
}

@media (max-width: 575.98px) {
    .projects-section>.container {
        width: calc(100% - 32px);
    }
}

/* ========================================================== */
/* --- FREQUENTLY ASKED QUESTIONS: IMAGE + ACCORDION SPLIT -- */
/* ========================================================== */

.faq-split-section {
    background-color: #fff;
    border-top: 1px solid #eef0f3;
    position: relative;
}

.faq-split-section>.container {
    width: min(calc(100% - 68px), 1440px);
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

/* Left Image Showcase */
.faq-image-showcase {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.faq-image-frame {
    border-radius: 20px;
    overflow: hidden;
    height: 680px;
    position: relative;
    box-shadow: 0 16px 40px rgba(17, 31, 75, 0.08);
    border: 1px solid #e2e8f0;
}

.faq-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-image-frame:hover img {
    transform: scale(1.04);
}

.faq-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 21, 39, 0.05) 0%, rgba(13, 21, 39, 0.65) 100%);
    pointer-events: none;
}

/* Floating Glassmorphic Badge */
.faq-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(13, 21, 39, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.faq-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #171e6d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.faq-badge-info {
    display: flex;
    flex-direction: column;
}

.faq-badge-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.faq-badge-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* Right FAQ Cards Stack */
.faq-single-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-card-item {
    background: #ffffff;
    border: 1px solid #e8e8e6;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(17, 31, 75, 0.03);
    transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-card-item:hover {
    border-color: #cbd5e1;
    /* box-shadow: 0 10px 26px rgba(17, 31, 75, 0.07);
    transform: translateY(-2px); */
}

.faq-card-item.active {
    border-color: #171e6d;
    box-shadow: 0 12px 30px rgba(23, 30, 109, 0.09);
    background: #ffffff;
}

.faq-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f8f7f5;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-card-index {
    font-size: 1.02rem;
    font-weight: 800;
    color: #171e6d;
    background: #eef2f9;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.faq-card-item.active .faq-card-index {
    background: #171e6d;
    color: #ffffff;
}

.faq-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex-grow: 1;
    transition: color 0.2s ease;
}

.faq-card-item.active .faq-card-title,
.faq-card-header:hover .faq-card-title {
    color: #171e6d;
}

.faq-card-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef2f9;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background 0.25s ease,
        color 0.25s ease;
}

.faq-card-item.active .faq-card-arrow {
    transform: rotate(180deg);
    background: #171e6d;
    color: #ffffff;
}

.faq-card-collapse {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    background: #f8f7f5;
}

.faq-card-body {
    padding: 0 24px 22px 82px;
}

.faq-card-body p {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

/* --- FAQ SPLIT RESPONSIVE BREAKPOINTS --- */
@media (max-width: 991.98px) {
    .faq-image-frame {
        height: 300px;
        border-radius: 16px;
    }

    .faq-image-showcase {
        margin-bottom: 24px;
    }
}

@media (max-width: 767.98px) {
    .faq-card-item {
        border-radius: 12px;
    }

    .faq-card-header {
        display: flex;
        align-items: flex-start;
        padding: 16px 14px 12px;
        gap: 12px;
    }

    .faq-card-index {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: 8px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .faq-card-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.35;
        flex: 1;
        margin: 0;
    }

    .faq-card-arrow {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.78rem;
        border-radius: 50%;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .faq-card-body {
        padding: 0 14px 16px 14px;
    }

    .faq-card-body p {
        font-size: 14.5px;
        line-height: 1.6;
        color: #4b5563;
    }

    .faq-image-frame {
        height: 240px;
        border-radius: 14px;
    }

    .faq-floating-badge {
        padding: 12px 14px;
        bottom: 14px;
        left: 14px;
        right: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 575.98px) {
    .faq-split-section>.container {
        width: calc(100% - 24px);
    }

    .faq-single-stack {
        gap: 12px;
    }

    .faq-card-header {
        padding: 14px 12px 10px;
        gap: 10px;
    }

    .faq-card-index {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .faq-card-title {
        font-size: 14.5px;
        line-height: 1.35;
    }

    .faq-card-arrow {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.75rem;
    }

    .faq-card-body {
        padding: 0 12px 14px 12px;
    }

    .faq-card-body p {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* ========================================================== */
/* --- GLOBAL PARTNERS: LIGHT VECTOR MAP (SCREENSHOT STYLE) - */
/* ========================================================== */

.global-partners-section {
    background-color: #f8fafc;
    color: #0f172a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.global-partners-section>.container {
    width: min(calc(100% - 68px), 1440px);
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.global-partners-section .section-tag {
    background: #eef2f9;
    color: #171e6d;
    border: 1px solid #dce4f2;
}

.global-partners-section .section-heading {
    color: #0f172a;
}

.global-partners-section .section-description {
    color: #555555 !important;
}

/* Map Main Card */
.global-map-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(17, 31, 75, 0.05);
}

/* Map Card Toolbar */
.map-card-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid #e8ecf2;
    background: #fbfcfe;
}

.map-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #171e6d;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
    animation: livePulseBlue 2s infinite;
}

@keyframes livePulseBlue {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
    }

    70% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.map-toolbar-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Map Filter Tabs */
.map-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.map-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #dce1e8;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
}

.map-filter-btn:hover {
    background: #f8fafc;
    color: #171e6d;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.map-filter-btn.active {
    background: #171e6d;
    color: #ffffff;
    border-color: #171e6d;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(23, 30, 109, 0.2);
}

.filter-count {
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
}

.map-filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* World Map Stage (Matches Screenshot Light Vector Theme) */
.world-map-stage {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    background: #edf0f5;
    overflow: hidden;
}

.world-map-viewport {
    position: relative;
    width: 100%;
    max-width: 980px;
    aspect-ratio: 784.077 / 458.627;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-vector-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.05));
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes flightPathDashLight {
    to {
        stroke-dashoffset: -200;
    }
}

/* Pin Points: Exact Blue Circles with Crisp White Borders as in Screenshot */
.map-pin-point {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 12;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}

.pin-blue-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #2563eb;
    border: 2.5px solid #ffffff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.28), 0 0 0 2px rgba(37, 99, 235, 0.25);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.map-pin-point:hover .pin-blue-dot,
.map-pin-point.active-pin .pin-blue-dot,
.map-pin-point:focus .pin-blue-dot {
    transform: scale(1.35);
    background-color: #1d4ed8;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(37, 99, 235, 0.3);
}

/* Tooltip on Pins */
.pin-hover-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 270px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 30;
}

.pin-hover-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

.map-pin-point:hover .pin-hover-tooltip,
.map-pin-point.show-tooltip .pin-hover-tooltip,
.map-pin-point:focus .pin-hover-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.tooltip-country-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tooltip-country-row strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    flex-grow: 1;
}

.tooltip-country-row .flag-icon {
    font-size: 1rem;
}

.tooltip-country-row .count-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    background: #2563eb;
    color: #ffffff;
}

.tooltip-summary {
    font-size: 0.76rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Map Footer Stats */
.map-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 28px;
    background: #fbfcfe;
    border-top: 1px solid #e8ecf2;
}

.map-stat-col {
    text-align: center;
}

.map-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #171e6d;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.map-stat-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3px;
}

.map-stat-divider {
    width: 1px;
    height: 32px;
    background: #e2e8f0;
}

/* Partners Directory Grid (3-columns) */
.global-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-directory-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 16px rgba(17, 31, 75, 0.03);
}

.partner-directory-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 31, 75, 0.08);
}

.partner-directory-card.highlight-card {
    border-color: #171e6d;
    background: #fbfdff;
    box-shadow: 0 8px 24px rgba(23, 30, 109, 0.08);
}

.partner-directory-card.filtered-out {
    display: none !important;
}

.directory-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #eef2f9;
    border: 1px solid #dce4f2;
    font-size: 0.74rem;
    font-weight: 700;
    color: #171e6d;
}

.nepal-badge {
    background: #fef3c7;
    border-color: #fde68a;
    color: #92400e;
}

.canada-badge {
    background: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
}

.flag-emoji {
    font-size: 0.95rem;
    line-height: 1;
}

.partner-sector-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: right;
}

.directory-partner-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 6px 0 14px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.directory-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.84rem;
    color: #4b5563;
    line-height: 1.5;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-item i {
    color: #2563eb;
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.directory-card-footer {
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.directory-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.directory-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.directory-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

.directory-status-tag i {
    color: #2563eb;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1199.98px) {
    .global-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .global-partners-section>.container {
        width: min(calc(100% - 48px), 1440px);
    }

    .world-map-stage {
        min-height: 360px;
        padding: 16px;
    }
}

@media (max-width: 767.98px) {
    .global-partners-grid {
        grid-template-columns: 1fr;
    }

    .map-card-toolbar {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .map-filter-group {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }

    .map-card-footer {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }

    .map-stat-divider {
        width: 60%;
        height: 1px;
    }

    .world-map-stage {
        min-height: 280px;
    }

    .pin-hover-tooltip {
        display: none;
        /* Keep clean on mobile screens */
    }
}

@media (max-width: 575.98px) {
    .global-partners-section>.container {
        width: calc(100% - 32px);
    }
}

/* --- PARTNER CARD REPLICA STYLES --- */

.partner-card-inner {
    background: #ffffff;
    border-radius: 40px;
    /* Highly rounded as per screenshot */
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 0 20px;
    /* Bottom padding handled by bottom-wrap */
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 480px;
    /* Fixed height for consistency */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.partner-card-logo {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.partner-card-logo img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
}

.partner-card-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a2b56;
    /* Specific dark navy from screenshot */
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    padding: 0 15px;
}

/* Specific Divider with Green Badge */
.partner-card-divider {
    display: flex;
    align-items: center;
    width: 160px;
    gap: 0;
    margin-bottom: auto;
    /* Pushes the wave to the bottom */
}

.partner-divider-line {
    flex: 1;
    height: 1.5px;
    background-color: #e0e0e0;
}

.partner-divider-badge {
    width: 35px;
    height: 6px;
    background-color: #85b92e;
    /* The specific lime/leaf green */
    border-radius: 2px;
    margin: 0 5px;
}

/* Bottom Wave & Button Area */
.partner-card-bottom-wrap {
    width: 100%;
    height: 140px;
    /* Height of the blue area */
    position: relative;
    margin-top: 20px;
}

.partner-card-wave-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.partner-card-wave-fill svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Subtle diagonal lines inside the wave */
.wave-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 10px);
    pointer-events: none;
}

/* Floating White Button */
.partner-card-arrow {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    color: #004a99;
    font-size: 20px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.partner-card-inner:hover .partner-card-arrow {
    transform: translateX(-50%) scale(1.1);
    background-color: #f8f9fa;
}