@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* --ff-primary: 'Inter', sans-serif; */
    --clr-primary: #000000;
    --clr-secondary: #99A1AF;
}

body {
    margin: 0%;
    padding: 0%;
    overflow-x: hidden !important;
}

/* Global font for entire project */
html,
body,
input,
button,
textarea,
select,
a {
    font-family: var(--ff-primary);
}


/* Bootstrap shadow utilities (v5.3 defaults) */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.navbar-brand-link {
    font-family: var(--ff-primary);
    text-decoration: none;
    color: var(--clr-primary);
    font-weight: 500;
}

.primary-nav {
    margin: 0%;
    padding: 0%;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1em;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-family: var(--ff-primary);
    font-size: 14px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn {
    background: #286FED;
    border: none;
    padding: 0.7em 1em;
    border-radius: 12px;
    color: white;
    font-family: var(--ff-primary);
    font-size: 14px;
}

.nav-item {
    height: fit-content;
}

.brand-logo {
    width: auto;
    height: 28px;
}

.navbar {
    border-radius: 12px;
    margin: 1em 2em;
    padding: 1em 2em;
    position: fixed;
    z-index: 9999;
    left: 0%;
    right: 0%;
    top: 0px;
    background: white;
}

.hero-heading {
    font-family: var(--ff-primary);
    font-size: var(--tb-fs-36);
    line-height: 1.13;
    font-weight: 700;
    color: var(--clr-primary);
    max-width: 490px;
    color: #286FED;
}

.hero-heading span {
    font-size: var(--tb-fs-36);
    line-height: 1.13;
    color: #181818;
}

.hero-description {
    font-family: var(--ff-primary);
    font-size: clamp(var(--tb-fs-16), 1.2vw, var(--tb-fs-18));
    color: var(--clr-secondary);
    margin-top: 1em;
    margin-bottom: 2em;
    line-height: 1.55;
    max-width: 570px;
}

.hero-section {
    padding: 6em 4em;
    padding-top: 9em;
    background: radial-gradient(circle, #E9F0FF 0%, #FFFFFF 100%);
    background: radial-gradient(74.52% 74.52% at 50% 25.48%, #E9F0FF 0%, #FFF 100%);
}

.hero-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta-btn {
    padding: var(--tb-btn-pad-y) var(--tb-btn-pad-x);
    border-radius: 32px;
    color: white;
    font-family: var(--ff-primary);
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: black;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cta-btn span {
    display: flex;
    align-items: center;
}

.hero-section-cta-wrapper {
    display: flex;
    gap: 1em;
}

.hero-section-cta-wrapper .cta-btn {
    min-height: 2.25rem;
    border-radius: 999px;
    font-size: var(--tb-fs-16);
    font-weight: 500;
    line-height: 1;
    padding: var(--tb-btn-pad-y) var(--tb-btn-pad-x);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    box-shadow: none !important;
}

.primary-cta-btn {
    background: #286FED;
    color: white;
}

.secondary-cta-btn {
    background: #fff;
    border-color: #d6ddeb;
    color: #232e43;
}

.hero-section-cta-wrapper .primary-cta-btn {
    background: var(--tb-blue);
    border-color: var(--tb-blue);
    color: #fff;
    box-shadow: 0 6px 18px rgba(47, 107, 228, 0.3) !important;
}

.hero-section-cta-wrapper .secondary-cta-btn {
    background: #fff;
    border-color: #d6ddeb;
    color: #232e43;
    box-shadow: none !important;
}

.primary-cta-btn:hover {
    background: #3a76ea;
    border-color: #3a76ea;
    color: #fff;
}

.secondary-cta-btn:hover {
    background: #f8faff;
    border-color: #d6ddeb;
    color: #232e43;
}

.hero-section-img {
    width: 100%;
    height: auto;
}

body {
    position: relative;
}

.features-section-1 .section-heading {
    margin: 0%;
    padding: 0%;
    font-family: var(--ff-primary);
    text-align: center;
    font-size: 38px;
}

.features-section-1 .primary-section-heading {
    color: #0C1B56;
}

.section-description {
    font-size: 14px;
    color: var(--clr-secondary);
    font-family: var(--ff-primary);
    line-height: 1.5;
    margin: 2em auto;
    text-align: center;
}

.features-section-1 .content {
    max-width: 900px;
    margin: 3em auto;
    text-align: center;
    margin-bottom: 1.3em;
}

.features-section-1 {
    margin-bottom: 40px;
}

.secondary-section-heading {
    color: #286FED;
}

.features-section-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}


.features-section-1 .img-wrapper img {
    width: 100%;
    height: autos;
}

.features-section-1 .img-wrapper {
    max-width: 1024px;
    margin: auto;
}

.features-section-1 .img-wrapper.hover-card-animation {
    position: relative;
    perspective: 1200px;
    --card-rotate-x: 0deg;
    --card-rotate-y: 0deg;
    --card-translate-z: 0px;
    --card-scale: 1;
}

.features-section-1 .img-wrapper.hover-card-animation .features-section-img {
    display: block;
    margin: auto;
    width: auto;
    height: 400px;
    border-radius: 18px;
    transform-style: preserve-3d;
    transform: rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y)) translateZ(var(--card-translate-z)) scale(var(--card-scale));
    transition: transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 380ms cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 380ms ease;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0);
    box-shadow: 0 0px 0px rgba(15, 23, 42, 0.14);
    will-change: transform, box-shadow, filter;
}

.features-section-1 .img-wrapper.hover-card-animation::after {
    content: "";
    position: absolute;
    inset: 4% 8% 0;
    z-index: -1;
    border-radius: 22px;
    background: radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.25), rgba(37, 99, 235, 0));
    opacity: 0;
    transform: translateY(14px) scale(0.95);
    transition: transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 380ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .features-section-1 .img-wrapper.hover-card-animation:hover .features-section-img {
        box-shadow: 0 0 0 rgba(15, 23, 42, 0.24);
        filter: saturate(1.04);
    }

    /* .features-section-1 .img-wrapper.hover-card-animation:hover::after {
        opacity: 1;
        transform: translateY(22px) scale(1);
    } */

    .features-section-1 .img-wrapper.hover-card-animation.is-tilting {
        --card-translate-z: 18px;
        --card-scale: 1.02;
    }
}

@media (prefers-reduced-motion: reduce) {

    .features-section-1 .img-wrapper.hover-card-animation .features-section-img,
    .features-section-1 .img-wrapper.hover-card-animation::after {
        transition: none;
        transform: none;
    }
}

.functional-modules-section {
    padding: 4em;
    background: #F8FAFC;
}

.functional-modules-header {
    text-align: center;
    margin-bottom: 1.5em;
}

.functional-modules-title {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 38px;
    color: #0C1B56;
}

.functional-modules-description {
    margin: 8px 0 0;
    font-family: var(--ff-primary);
    font-size: 14px;
    color: #94A3B8;
}

.functional-modules-image-wrapper {
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.functional-modules-image {
    display: block;
    width: 100%;
    height: auto;
}

.functional-modules-shell {
    display: grid;
    grid-template-columns: 425px 1fr;
    gap: 18px;
    /* background: #EEF2F8; */
    /* border: 1px solid #E2E8F0; */
    border-radius: 20px;
    padding: 14px;
    max-width: 1061px;
    margin: auto;
}

.functional-modules-sidebar {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.functional-modules-sidebar svg {
    height: 35px;
}

.module-toggle {
    border: 1px solid #D7DFEA;
    border-radius: 12px;
    padding: 4px 18px;
    /* background: #F3F6FA; */
    background: #FFFFFF;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--ff-primary);
    transition: border-color 0.24s ease, background-color 0.24s ease,
        transform 0.24s ease, box-shadow 0.24s ease;
    min-height: 60px;
    height: auto;
    overflow: hidden;
}

.functional-modules-sidebar-button-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
    transition: gap 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.24s ease;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper svg {
    display: block;
}

.module-toggle>.icon-wrapper:first-child {
    margin-right: 2px;
}

.module-toggle>.icon-wrapper:last-child {
    margin-left: auto;
}

.module-toggle-title {
    color: #334155;
    font-weight: 600;
    line-height: 1.2;
    font-size: 14px;
    transition: color 0.22s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-toggle-subtitle {
    font-size: 13px;
    color: #64748B;
    line-height: 1.3;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transform: translateY(-6px);
    transform-origin: top;
    transition: max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        margin-top 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.22s ease;
}

.module-toggle.is-active {
    background: #FFFFFF;
    border-color: #efefef;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.module-toggle.is-active .functional-modules-sidebar-button-content-wrapper {
    gap: 4px;
}

.module-toggle.is-active .module-toggle-title {
    color: #0F172A;
    transform: translateY(-1px);
}

.module-toggle.is-active .module-toggle-subtitle {
    color: #286FED;
    max-height: 4.5em;
    opacity: 1;
    margin-top: 2px;
    transform: translateY(0);
}

.module-toggle .button-icon-acitve {
    display: none;
}

.module-toggle.is-active .button-icon-acitve {
    display: block;
}

.module-toggle.is-active .button-icon-inactive {
    display: none;
}

.module-toggle .icon-wrapper {
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.module-toggle .functional-modules-sidebar-button-content-wrapper {
    transition: gap 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.24s ease;
}

.module-toggle .icon {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-toggle.is-active .icon {
    transform: rotate(90deg);
}

@media (hover: hover) and (pointer: fine) {

    .module-toggle:hover,
    .module-toggle:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
        border-color: #cdd9e8;
    }

    .module-toggle:hover .icon-wrapper,
    .module-toggle:focus-visible .icon-wrapper {
        transform: translateY(-1px) scale(1.03);
    }

    .module-toggle:hover .functional-modules-sidebar-button-content-wrapper,
    .module-toggle:focus-visible .functional-modules-sidebar-button-content-wrapper {
        transform: translateX(1px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .module-toggle,
    .module-toggle .icon-wrapper,
    .module-toggle .functional-modules-sidebar-button-content-wrapper,
    .module-toggle .module-toggle-title,
    .module-toggle .module-toggle-subtitle,
    .module-toggle .icon {
        transition: none !important;
        transform: none !important;
    }
}

/* module-toggle icon wrapper (default + active) */
.module-toggle .icon-wrapper {
    background: #CBD5E1;
    border-radius: 10px;
    padding: 8px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.module-toggle .icon-wrapper svg {
    width: 24px;
    height: 24px;
    display: block;
}

.module-toggle .icon-wrapper svg path,
.module-toggle .icon-wrapper svg circle,
.module-toggle .icon-wrapper svg line,
.module-toggle .icon-wrapper svg polyline,
.module-toggle .icon-wrapper svg polygon {
    stroke: #64748B;
    fill: none;
}


.module-toggle.is-active .icon-wrapper svg path,
.module-toggle.is-active .icon-wrapper svg circle,
.module-toggle.is-active .icon-wrapper svg line,
.module-toggle.is-active .icon-wrapper svg polyline,
.module-toggle.is-active .icon-wrapper svg polygon {
    stroke: #ffffff !important;
    fill: #ffffff !important;
}

.functional-modules-content {
    /* background: #E8EEF6; */
    border-radius: 14px;
    /* border: 1px solid #D9E2EE; */
    padding: 18px;
}

.functional-modules-mobile-pagination {
    display: none;
}

.functional-modules-pagination-dot {
    border: 0;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    background: #CBD5E1;
    transition: transform 0.24s ease, background-color 0.24s ease, opacity 0.24s ease;
}

.functional-modules-pagination-dot.is-active {
    background: #286FED;
    transform: scale(1.15);
}

.functional-modules-content-title {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 22px;
    color: #253247;
}

.functional-module-points {
    list-style: none;
    padding: 0;
    margin: 16px 0 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.functional-module-points li {
    background: #FFFFFF;
    border: 1px solid #DCE5F0;
    border-radius: 12px;
    padding: 12px;
    font-family: var(--ff-primary);
    color: #57657B;
    font-size: 12px;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.functional-module-points li::before {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    background: url("../images/icons/feature-check-icon.png") no-repeat center / contain;
}


.section-header .section-header-title {
    font-family: var(--ff-primary);
    font-size: 38px;
    color: var(--clr-primary);
    text-align: center;
    margin-bottom: 16px;

    color: #0C1B56;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 1em;
}

.how-its-work {
    padding: 2em 4em;
}

.process-card .process-card-number h6 {
    font-size: 16px;
    font-family: var(--ff-primary);
    font-weight: 400;
    background: #286FED;
    width: fit-content;
    height: fit-content;
    padding: 1em;
    clip-path: circle();
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;

}

.process-card-name h6 {
    font-family: var(--ff-primary);
    font-size: 16px;
    text-align: center;
    margin: 16px auto;
}


.process-card ul {
    width: fit-content;
    margin: 22px auto 0px auto;
    padding-left: 0;
    display: grid;
    gap: 0px;

}

.process-card ul li {
    font-family: var(--ff-primary);
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #475569;
}

.process-card ul li .process-list-icon {
    width: 30px;
    height: 30px;
    border-radius: 9999px;
    background: #DBEAFE;
    flex-shrink: 0;
    padding: 5px;
    transform: scale(0.7);
}

.process-card {
    padding: 3em 1em;
    padding-top: 2em;
    border-radius: 12px;
}

.process-icons-grid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-top: 2em;
}

.process-icons-grid::before {
    content: "";
    display: block;
    height: 2px;
    background: #E2E8F0;
    width: auto;
    position: absolute;
    top: 50%;
    left: 1em;
    right: 1em;
    z-index: 0;
}

.process-icon-wrapper {
    position: relative;
    z-index: 1;
}

.how-its-work .section-header {
    position: relative;
    padding-bottom: 10px;
}

.how-its-work .section-header .section-header-title {
    margin-bottom: 0;
}

.how-its-work .section-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #286FED;
    border-radius: 12px;

}

.how-its-work {
    background: #FAFBFC;
}

/* Engagement Model styles */
.engagement-model-section {
    padding: 1em 2em;
    margin-top: 0.5em;
    background: #FFFFFF;
}

.engagement-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 2em auto 0;
}

.engagement-card {
    background: #FFFFFF;
    border: 1px solid #E6EEF9;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0);
    transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, box-shadow;
}

.engagement-card--recommended {
    border-color: #D6E8FF;
}

.engagement-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    pointer-events: none;
    background: transparent;
    opacity: 0;
    transition: opacity 280ms ease;
}

.engagement-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -45%;
    width: 36%;
    height: 320%;
    transform: rotate(20deg);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    pointer-events: none;
}

.card-badge {
    display: inline-block;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #F1F5F9;
    color: #475569;
    width: fit-content;
}

.card-badge--accent {
    background: #FFF4EB;
    color: #D97706;
}

.card-title {
    margin: 0;
    font-size: 22px;
    color: #10243A;
    font-weight: 700;
}

.card-subtitle {
    margin: 0;
    color: #94A3B8;
    font-size: 14px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 12px;
}

.card-features li {
    padding-left: 6px;
    color: #475569;
    font-size: 14px;
    transition: transform 260ms ease;
}

.card-cta {
    margin-top: auto;
}

.engagement-card .card-cta .cta {
    transition: transform 260ms ease;
}

.cta {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--ff-primary);
    font-weight: 600;
}

.cta--primary {
    background: #286FED;
    color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cta--ghost {
    background: #F1F8FF;
    color: #286FED;
}

@media (max-width: 900px) {
    .engagement-cards {
        grid-template-columns: 1fr;
    }


}

/* CTA Section */
.cta-section {
    padding: 3.5em 2em;
    background: linear-gradient(180deg, #F1F7FF 0%, #FFFFFF 100%);
    text-align: center;
    background: radial-gradient(74.52% 74.52% at 50% 25.48%, #E9F0FF 0%, #FFF 100%);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta--ghost {
    background: #FFFFFF;
    color: #1E293B;
    border: 1px solid rgba(15, 36, 65, 0.06);
    padding: 12px 22px;
    border-radius: 999px;
}

.cta--primary {
    background: #286FED;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 400;
    font-size: 14px;
    border-radius: 16777200px;
    background: #286FED;
    box-shadow: 0 4px 16px 0 rgba(40, 111, 237, 0.30);
}

/* Footer removed */

/* Leadership Team Section */
.leadership-section {
    padding: 1em 4em;
    background: #FFFFFF;
}

.leadership-header {
    text-align: center;
    margin-bottom: 3em;
}

.leadership-title {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 38px;
    color: #1e1b4b;
    font-weight: 700;
}

.leadership-tabs {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-bottom: 3em;
    border-bottom: 1px solid #E2E8F0;
}

.leadership-tab-btn {
    padding: 1em 2em;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--ff-primary);
    font-size: 16px;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.leadership-tab-btn:hover {
    color: #286FED;
}

.leadership-tab-btn.is-active {
    color: #286FED;
    border-bottom-color: #286FED;
}

.leadership-content {
    max-width: 1200px;
    margin: 0 auto;
}

.leadership-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.leadership-tab-content.is-active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.team-member-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    border-color: #286FED;
    box-shadow: 0 8px 24px rgba(40, 111, 237, 0.12) !important;
}

.team-member-card.is-highlighted {
    border: 3px solid #286FED;
}

.team-member-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.team-member-name {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.4;
}

.team-member-description {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

.team-member-social {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #286FED;
    transition: all 0.2s ease;
}

.team-member-social:hover {
    color: #1e40af;
    transform: translateY(-2px);
}

.team-member-social svg {
    width: 24px;
    height: 24px;
}

.leadership-tab-buttom {
    font-family: var(--ff-primary);
    font-size: 16px;
    padding: 12px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 32px;
    display: block;
    width: fit-content;
}

@media (hover: hover) and (pointer: fine) {
    .engagement-card:hover {
        transform: perspective(1200px) rotateX(3deg) rotateY(-4deg) translateY(-8px);
        box-shadow: 0 24px 40px rgba(15, 23, 42, 0.15);
    }

    .engagement-card:hover::before {
        opacity: 1;
    }

    .engagement-card:hover::after {
        opacity: 1;
        animation: engagement-card-shimmer 850ms ease forwards;
    }

    .engagement-card:hover .card-features li {
        transform: translateX(4px);
    }

    .engagement-card:hover .card-cta .cta {
        transform: translateY(-2px);
    }

    .engagement-card--recommended:hover {
        box-shadow: 0 26px 44px rgba(15, 23, 42, 0.16);
    }
}

@keyframes engagement-card-shimmer {
    from {
        left: -45%;
    }

    to {
        left: 120%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .engagement-card,
    .engagement-card::before,
    .engagement-card::after,
    .card-features li,
    .engagement-card .card-cta .cta,
    .leadership-card,
    .leadership-card img,
    .leadership-card .social-media-icon {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

.leadership-tab-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 2em;
}

.leadership-tab-buttom-active {
    color: #286FED;
}

.leadership-card {
    display: flex;
    gap: 2em;
    align-items: center;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0px 4px 13.7px 0px rgba(49, 82, 227, 0.2);
}

.leadership-card img {
    height: auto;
    /* max-width: 300px; */
    width: auto;
    height: 100%;
}

.leadership-card-caption h4 {
    font-family: var(--ff-primary);
    font-size: 16px;
    margin: 0% 0 6px 0;
    font-weight: 600;

}

.leadership-card-caption p {
    font-family: var(--ff-primary);
    font-size: 14px;
    color: #64748B;
    margin: 0%;
    line-height: 1.5;
}

.leadership-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
}


.leadership-card::before {
    content: "";
    position: absolute;
    height: 76px;
    width: 76px;
    top: -54px;
    right: -40px;
    background-color: #1A2E4F;
    transform: rotate(135deg);
}


.leadership-card .social-media-icon {
    position: absolute;
    top: 22px;
    right: 22px;
}

.legacy-footer {
    background: #0B192F;
    padding: 4em;
}

.footer-menu-list {
    margin: 0%;
    padding: 0%;
    list-style: none;
}

.footer-links {
    text-decoration: none;
    color: white;
}

.footer-brand p {
    color: #99A1AF;
    font-size: 14px;
}

.footer-menu-title {
    color: white;
    font-weight: 500;
    font-size: 14px;
    margin: 0% 0 12px 0;

}

.footer-link {
    color: #99A1AF;
    font-size: 14px;
    text-decoration: none;
    display: block;
    width: fit-content;
    padding: 6px 0;
    line-height: 1.5;
}

.footer-brand img {
    width: auto;
    height: 48px;
}

.footer-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2em;
    margin-top: 3em;
}

.footer-copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    border-top: 1px solid #1A2E4F;
    margin-top: 2em;
}

.footer-copyright-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1em;
}

.footer-copyright-menu-list a {
    font-size: 14px;
}

.footer-copyright-wrapper p {
    color: #99A1AF;
    font-size: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 8px;
    color: #99A1AF;
    font-size: 14px;
}

.footer-contact-item img {
    margin-top: 6px;
}

.social-media-link {
    text-decoration: none;
    display: block;
    width: fit-content;
}

.social-media-icons {
    display: flex;
    align-items: center;
    gap: 1em;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    box-shadow: 0 4px 4px 0 rgba(232, 242, 254, 0.45);

}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.secondary-function-modules-section .section-header {
    text-align: center;
    margin-bottom: 1.5em;
}

.secondary-function-modules-section .section-header-description {
    color: #64748B;
    font-size: 14px;
}

.functional-modules-content-header {
    display: flex;
    align-items: center;
    gap: 1em;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 6px;

    border-radius: 16777200px;
    box-shadow: 0 4px 16px 0 rgba(40, 111, 237, 0.30);
}

.engagement-model-cta {
    display: block;
    border-radius: 9px;
    background: #F0F8FF;
    font-weight: normal;
    text-align: center;
    font-size: 14px;
    color: #286FED;
}

.engagement-model-cta-active {
    background: #F0F8FF;
    color: #286FED;
}

.engagement-card:hover .engagement-model-cta,
.engagement-card:focus-within .engagement-model-cta {
    background-color: #286FED;
    color: #FFFFFF;
}

.engagement-cards li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.engagement-card {
    position: relative;
}

.recommended-badge {
    position: absolute;
    top: 0px;
    right: 38%;
    /* left: auto; */
    border-radius: 0 0 12px 12px;
}

.engagement-card--recommended {
    padding-top: 2em;
}

.engagement-card--recommended {
    padding-top: 4.5em;
}

.engagement-model-section .section-description {
    margin: 0%;
    padding: 0%;
    margin-bottom: 30px;
}

.engagement-model-section .section-header .section-header-title {
    margin: 6px auto 12px auto;
    padding: 0%;
    margin-bottom: 0;
}

.engagement-model-section .secondary-section-description {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

/* .cta-title {
    font-size: 36px;
    margin: 0 0 18px 0;
    color: #002672;
    font-weight: 500;
} */

.cta--ghost {
    background: #FFFFFF;
    color: #1E293B;
    border: 1px solid rgba(15, 36, 65, 0.06);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 400;
    font-size: 14px;
}



@media (max-width: 600px) {
    .legacy-navbar nav {
        display: none;
    }

    .navbar {
        border-radius: 12px;
        margin: 1em 1em;
        padding: 1em 1em;
        position: fixed;
        z-index: 9999;
        left: 0%;
        right: 0%;
        top: 0px;
        background: white;
    }



    .hero-section .content-wrapper {
        display: block;
        display: flex;
        flex-direction: column;
    }

    .primary-service-grid {
        grid-template-columns: 1fr;
    }

    .leadership-tab-button-wrapper {
        flex-direction: column;
    }

    .leadership-card {
        display: flex;
        gap: 2em;
        align-items: center;
        padding: 2em;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
    }

    .footer-menu-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-brand img {
        width: auto;
        height: 28px;
    }

    .footer-copyright-wrapper {
        flex-direction: column;
    }

    .hero-heading {
        font-family: var(--ff-primary);
        font-size: 24px;
        font-weight: 700;
        color: var(--clr-primary);
        max-width: 490px;
        color: #286FED;
        text-align: center;
    }

    .hero-section {
        padding: 6em 2em 1em 2em;
    }

    .hero-heading span {
        font-size: 24px;
    }

    .cta-btn {
        padding: 1em 22px;
    }

    .hero-section .content {
        margin-bottom: 3em;
    }

    .section-header .section-header-title {
        font-size: 24px;
    }

    .section-header .section-header-title br {
        display: none;
    }

    .secondary-feature-section {
        padding: 2em 1em;
    }

    .note {
        line-height: 1.5;
    }

    .primary-service-section {
        padding: 2em 1em;
    }

    .leadership-section {
        padding: 2em 1em;
        background: #FFFFFF;
    }

    .cta-title {
        font-size: 18px;
    }

    .hero-section {
        padding: 6em 1em 1em 1em;
    }

    .features-section-1 {
        padding: 1em;
    }

    .features-section-1 .section-heading {
        font-size: 24px;
    }

    .how-its-work {
        padding: 1em;
    }

    .process-icon-wrapper svg {
        height: 30px;
        width: auto;
    }

    .process-icons-grid {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-content: center;
        margin-top: 2em;
        max-width: 248px;
        margin: 1em auto;
    }

    .functional-modules-shell {
        display: grid;
        grid-template-columns: 1fr;
    }

    .functional-modules-section {
        padding: 1em;
    }

    .functional-modules-title {
        font-size: 24px;
    }

    .functional-module-points {
        list-style: none;
        padding: 0;
        margin: 16px 0 18px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .functional-modules-content {
        /* background: #E8EEF6; */
        border-radius: 14px;
        /* border: 1px solid #D9E2EE; */
        padding: 0px;
    }

    .engagement-model-section {
        padding: 1em 1em;
        margin-top: 0.5em;
        background: #FFFFFF;
    }

    .legacy-footer {
        background: #0B192F;
        padding: 2em 1em;
    }

    .tb-truegenie-page .process-icons-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        max-width: auto !important;
        gap: 1em !important;
    }

}

@media (max-width: 767.98px) {

    .hero-section,
    .features-section-1,
    .how-its-work,
    .functional-modules-section,
    .engagement-model-section,
    .secondary-feature-section,
    .primary-service-section,
    .leadership-section,
    .cta-section {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-section-cta-wrapper,
    .features-section-cta-wrapper,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .hero-section-cta-wrapper .cta-btn,
    .features-section-cta-wrapper .cta-btn,
    .cta-buttons .cta {
        width: 100%;
        justify-content: center;
        width: fit-content;
        margin: auto;
    }

}

@media (max-width: 991.98px) {

    .tb-truegenie-page .hero-section,
    .tb-truegenie-page .features-section-1,
    .tb-truegenie-page .how-its-work,
    .tb-truegenie-page .functional-modules-section,
    .tb-truegenie-page .engagement-model-section,
    .tb-truegenie-page .leadership-section,
    .tb-truegenie-page .cta-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .tb-truegenie-page .hero-section {
        padding-top: 6.6rem;
    }

    .tb-truegenie-page .hero-section-img {
        width: min(100%, 33rem);
        margin-inline: auto;
        display: block;
    }

    .tb-truegenie-page .hero-heading {
        font-size: var(--tb-fs-36);
        line-height: 1.13;
        text-align: left;
        max-width: none;
    }

    .tb-truegenie-page .hero-heading span {
        display: block;
        font-size: var(--tb-fs-36);
        line-height: 1.13;
        margin-bottom: 0.2rem;
    }

    .tb-truegenie-page .hero-description {
        margin: 0.8rem 0 1.25rem;
        max-width: 29rem;
        text-align: left;
        font-size: clamp(var(--tb-fs-16), 1.2vw, var(--tb-fs-18));
        line-height: 1.55;
    }

    .tb-truegenie-page .cta-btn,
    .tb-truegenie-page .cta {
        min-height: 2.7rem;
        padding: 0.7rem 1rem;
        font-size: var(--tb-fs-16);
        margin: inherit;
    }

    .features-section-cta-wrapper {
        justify-content: center !important;
    }

    .tb-truegenie-page .features-section-1 .content-wrapper {
        display: grid;
        gap: 1rem;
    }

    .tb-truegenie-page .features-section-1 .content {
        margin: 0 auto;
        max-width: 44rem;
    }

    .tb-truegenie-page .features-section-1 .section-heading,
    .tb-truegenie-page .section-header .section-header-title,
    .tb-truegenie-page .functional-modules-title,
    .tb-truegenie-page .cta-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.15;
    }

    .tb-truegenie-page .section-description,
    .tb-truegenie-page .functional-modules-description,
    .tb-truegenie-page .card-subtitle,
    .tb-truegenie-page .leadership-card-caption p,
    .tb-truegenie-page .card-features li {
        font-size: var(--tb-fs-16);
        line-height: 1.5;
    }

    .tb-truegenie-page .features-section-1 .img-wrapper {
        order: -1;
        width: 100%;
    }

    .tb-truegenie-page .features-section-1 .img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    .tb-truegenie-page .how-its-work {
        margin-top: 0;
    }

    .tb-truegenie-page .process-icons-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.45rem;
        margin: 1rem auto 0;
        max-width: 26rem;
        justify-items: center;
    }

    .tb-truegenie-page .process-icons-grid::before {
        display: none;
    }

    .tb-truegenie-page .process-icon {
        width: 68px;
        height: 68px;
    }

    .tb-truegenie-page .process-card {
        padding: 1.35rem 0.95rem;
    }

    .tb-truegenie-page .functional-modules-sidebar {
        gap: 0.55rem;
    }

    .tb-truegenie-page .module-toggle {
        padding: 0.65rem 0.75rem;
        padding: 8px;
        gap: 8px;
    }

    .tb-truegenie-page .module-toggle svg {
        height: 30px;

    }

    .tb-truegenie-page .module-toggle .icon-wrapper {
        width: 42px;
        height: 42px;
        padding: 7px;
    }

    .tb-truegenie-page .module-toggle-title {
        font-size: var(--tb-fs-16);
    }

    .tb-truegenie-page .module-toggle-subtitle {
        font-size: 14px;
    }

    .tb-truegenie-page .functional-modules-content {
        padding: 0.5rem 0;
    }

    .tb-truegenie-page .functional-modules-content-header img {
        width: 30px;
        height: 30px;
    }

    .tb-truegenie-page .functional-modules-content-title {
        font-size: clamp(1.25rem, 4.4vw, 1.5rem);
    }

    .tb-truegenie-page .functional-module-points {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 0.8rem 0 1rem;
    }

    .tb-truegenie-page .functional-module-points li {
        padding: 0.65rem 0.72rem;
        font-size: 14px;
    }

    .tb-truegenie-page .leadership-tab-button-wrapper {
        gap: 0.6rem;
        margin-top: 1.2rem;
        margin-bottom: 1rem;
    }

    .tb-truegenie-page .leadership-card {
        gap: 1rem;
        padding: 1.15rem;
        margin-bottom: 0.85rem;
    }

    .tb-truegenie-page .leadership-card img {
        /* width: min(100%, 220px);
        max-width: 220px; */
    }

    .tb-truegenie-page .engagement-cards {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 1.2rem;
    }

    .tb-truegenie-page .engagement-card {
        padding: 1.1rem;
        gap: 0.85rem;
    }

    .tb-truegenie-page .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {

    .tb-truegenie-page .hero-section,
    .tb-truegenie-page .features-section-1,
    .tb-truegenie-page .how-its-work,
    .tb-truegenie-page .functional-modules-section,
    .tb-truegenie-page .engagement-model-section,
    .tb-truegenie-page .leadership-section,
    .tb-truegenie-page .cta-section {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .tb-truegenie-page .features-section-1,
    .tb-truegenie-page .section-header .section-header-title {
        padding-top: 0;
    }

    .tb-truegenie-page .features-section-1 .section-heading {
        padding-bottom: 0 !important;
    }


    .tb-truegenie-page .hero-section,
    .tb-services-page .hero-section {
        padding-top: 6.9rem !important;
    }

    .tb-truegenie-page .hero-heading,
    .tb-truegenie-page .features-section-1 .section-heading,
    .tb-truegenie-page .section-header .section-header-title,
    .tb-truegenie-page .functional-modules-title,
    .tb-truegenie-page .cta-title {
        font-size: 24px;
    }

    .tb-truegenie-page .hero-description,
    .tb-truegenie-page .section-description,
    .tb-truegenie-page .functional-modules-description,
    .tb-truegenie-page .module-toggle-subtitle,
    .tb-truegenie-page .functional-module-points li,
    .tb-truegenie-page .process-card ul li,
    .tb-truegenie-page .card-subtitle,
    .tb-truegenie-page .card-features li,
    .tb-truegenie-page .leadership-card-caption p {
        line-height: normal
    }

    .tb-truegenie-page .functional-modules-content-header img {
        display: none;
    }

    .tb-truegenie-page .hero-heading span {
        font-size: 24px;
    }

    .tb-truegenie-page .hero-section-cta-wrapper,
    .tb-truegenie-page .features-section-cta-wrapper,
    .tb-truegenie-page .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .tb-truegenie-page .cta-btn,
    .tb-truegenie-page .cta {
        width: auto;
        justify-content: center;
        text-align: center;
    }

    .tb-truegenie-page .process-icons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* max-width: 13rem; */
        gap: 0.55rem;
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {

    .tb-truegenie-page .functional-modules-shell {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .tb-truegenie-page .functional-modules-sidebar {
        order: 1;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.55rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0.05rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 2rem 0 0.05rem;
        touch-action: pan-x;
    }

    .tb-truegenie-page .functional-modules-sidebar::-webkit-scrollbar {
        display: none;
    }

    .tb-truegenie-page .module-toggle {
        flex: 0 0 calc(80% - 2.75rem);
        scroll-snap-align: start;
        justify-content: center;
        text-align: center;
        gap: 0;
        min-height: 0;
        padding: 0.56rem 0.92rem;
        border-radius: 999px;
        border: 1px solid transparent;
        background: #f6f9ff;
        box-shadow: none !important;
        color: #5d6e86;
    }

    .tb-truegenie-page .leadership-tab-buttom,
    .tb-truegenie-page .module-toggle:not(.is-active) {
        border: 1px solid transparent;
        background: #5c78e60e;
        color: #5d6e86;
        box-shadow: none !important;
    }

    .tb-truegenie-page .module-toggle .button-icon-acitve,
    .tb-truegenie-page .module-toggle .button-icon-inactive,
    .tb-truegenie-page .module-toggle .icon,
    .tb-truegenie-page .module-toggle .module-toggle-subtitle {
        display: none;
    }

    .tb-truegenie-page .module-toggle .functional-modules-sidebar-button-content-wrapper,
    .tb-truegenie-page .module-toggle.is-active .functional-modules-sidebar-button-content-wrapper {
        align-items: center;
        gap: 0;
        transform: none;
    }

    .tb-truegenie-page .module-toggle-title,
    .tb-truegenie-page .module-toggle.is-active .module-toggle-title {
        transform: none;
        text-align: center;
        font-size: var(--tb-fs-16) !important;
        line-height: 1;
        font-weight: 500 !important;
        white-space: nowrap;
    }

    .tb-truegenie-page .module-toggle:not(.is-active) .module-toggle-title {
        color: #5d6e86 !important;
    }

    .tb-truegenie-page .leadership-tab-buttom:hover,
    .tb-truegenie-page .module-toggle:not(.is-active):hover {
        background: #edf3ff;
        color: #1d4f98;
    }

    .tb-truegenie-page .module-toggle:not(.is-active):hover .module-toggle-title {
        color: #1d4f98 !important;
    }

    .tb-truegenie-page .leadership-tab-buttom.leadership-tab-buttom-active,
    .tb-truegenie-page .module-toggle.is-active {
        background: #2f6be4;
        border-color: #2f6be4;
        color: #fff;
        box-shadow: none !important;
    }

    .tb-truegenie-page .module-toggle.is-active .module-toggle-title {
        color: #fff !important;
    }

    .tb-truegenie-page .functional-modules-mobile-pagination {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: -0.2rem;
    }

    .tb-truegenie-page .functional-modules-mobile-pagination[hidden] {
        display: none !important;
    }

    .tb-truegenie-page .functional-modules-content {
        order: 3;
        padding-top: 0.3rem;
    }
}



.leadership-card .social-media-icon {
    position: absolute;
    top: 12px;
    right: 12px;
}

.leadership-card .social-media-icon svg {
    color: white;
}

.leadership-card .social-media-link img {
    height: 32px;
    width: auto;
}

.leadership-card {
    transition: transform 240ms ease, box-shadow 240ms ease;
    will-change: transform, box-shadow;
}

.leadership-card img {
    transition: transform 280ms ease;
    will-change: transform;
}

.leadership-card .social-media-icon {
    transition: transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {

    .leadership-card:hover,
    .leadership-card:focus-within {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
    }

    .leadership-card:hover img,
    .leadership-card:focus-within img {
        transform: translateY(-2px) scale(1.01);
    }

    .leadership-card:hover .social-media-icon,
    .leadership-card:focus-within .social-media-icon {
        transform: translateY(-1px);
    }
}

.leadership-card::before {
    content: "";
    position: absolute;
    height: auto;
    width: auto;
    top: 0;
    right: -0;
    /* background-color: #1A2E4F; */
    transform: rotate(90deg);
    border-radius: 12px;
}

.leadership-section {
    padding: 1em 4em;
    background: #FFFFFF;
    padding-top: 72px;
}

.leadership-section .img-wrapper {
    height: 130px;
    clip-path: circle();
    width: 130px;
    display: block;
    background: #c6c6c6;
}

/* TruGenie typography consistency with home page (desktop + mobile) */
.tb-truegenie-page .hero-heading,
.tb-truegenie-page .hero-heading span {
    font-size: var(--tb-fs-36);
    line-height: 1.13;
    font-weight: 700;
    color: var(--tb-blue-dark);
}

.tb-truegenie-page .features-section-1 .section-heading,
.tb-truegenie-page .section-header .section-header-title,
.tb-truegenie-page .functional-modules-title,
.tb-truegenie-page .leadership-title,
.tb-truegenie-page .cta-title {
    font-size: 28px;
    padding-bottom: 20px;
    line-height: 1.13;
    font-weight: 600;
    color: var(--tb-heading-color);
}

.tb-truegenie-page .functional-modules-content-title,
.tb-truegenie-page .process-card-name h6,
.tb-truegenie-page .card-title {
    font-size: var(--tb-heading-size-md);
    line-height: 1.25;
    font-weight: 600;
    color: var(--tb-heading-color);
}

.tb-truegenie-page .module-toggle-title {
    font-size: var(--tb-fs-16);
    line-height: normal;
    font-weight: 550;
    color: var(--tb-heading-color);
}

.tb-truegenie-page .hero-description,
.tb-truegenie-page .section-description,
.tb-truegenie-page .functional-modules-description,
.tb-truegenie-page .module-toggle-subtitle,
.tb-truegenie-page .functional-module-points li,
.tb-truegenie-page .process-card ul li,
.tb-truegenie-page .card-subtitle,
.tb-truegenie-page .card-features li,
.tb-truegenie-page .leadership-card-caption p {
    font-size: clamp(var(--tb-fs-16), 1.2vw, var(--tb-fs-18));
    line-height: 1.55;
    font-weight: 300;
    color: #667486;
}

.tb-truegenie-page .leadership-card-caption h4 {
    font-size: var(--tb-fs-16);
    line-height: 1.35;
    font-weight: 600;
    color: var(--tb-heading-color);
}

.tb-truegenie-page .how-its-work .process-icon-wrapper {
    transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.tb-truegenie-page .how-its-work .process-icon-wrapper svg path,
.tb-truegenie-page .how-its-work .process-icon-wrapper svg rect,
.tb-truegenie-page .how-its-work .process-icon-wrapper svg line,
.tb-truegenie-page .how-its-work .process-icon-wrapper svg polyline,
.tb-truegenie-page .how-its-work .process-icon-wrapper svg circle {
    stroke: #64748b;
    transition: stroke 0.22s ease;
}

.tb-truegenie-page .how-its-work .process-icon-wrapper:hover,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-linked-hover,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-active-step {
    background: var(--tb-blue);
    border-color: var(--tb-blue);
    box-shadow: 0 10px 22px rgba(10, 34, 84, 0.16);
}

.tb-truegenie-page .how-its-work .process-icon-wrapper:hover svg path,
.tb-truegenie-page .how-its-work .process-icon-wrapper:hover svg rect,
.tb-truegenie-page .how-its-work .process-icon-wrapper:hover svg line,
.tb-truegenie-page .how-its-work .process-icon-wrapper:hover svg polyline,
.tb-truegenie-page .how-its-work .process-icon-wrapper:hover svg circle,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-linked-hover svg path,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-linked-hover svg rect,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-linked-hover svg line,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-linked-hover svg polyline,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-linked-hover svg circle,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-active-step svg path,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-active-step svg rect,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-active-step svg line,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-active-step svg polyline,
.tb-truegenie-page .how-its-work .process-icon-wrapper.is-active-step svg circle {
    stroke: #ffffff !important;
}

.tb-truegenie-page .how-its-work .process-card {
    border: 1px solid rgba(226, 232, 240, 0.5);
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.tb-truegenie-page .how-its-work .process-card:hover,
.tb-truegenie-page .how-its-work .process-card.is-linked-hover,
.tb-truegenie-page .how-its-work .process-card.is-active-step {
    transform: translateY(-3px);
    border-color: #c9d9ef;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(10, 34, 84, 0.12) !important;
}

@media (min-width: 992px) {

    .tb-truegenie-page .how-its-work .process-wrapper,
    .tb-truegenie-page .how-its-work .process-icons-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
        padding-bottom: 12px;
    }

    .tb-truegenie-page .how-its-work .process-icons-grid {
        display: grid;
        align-items: center;
    }

    .tb-truegenie-page .how-its-work .process-icon-wrapper {
        justify-self: center;
    }

    .tb-truegenie-page .how-its-work .process-icons-grid::before {
        left: 12.5%;
        right: 12.5%;
    }
}

@media (max-width: 575.98px) {

    .tb-truegenie-page .hero-heading,
    .tb-truegenie-page .hero-heading span,
    .tb-truegenie-page .features-section-1 .section-heading,
    .tb-truegenie-page .section-header .section-header-title,
    .tb-truegenie-page .functional-modules-title,
    .tb-truegenie-page .leadership-title,
    .tb-truegenie-page .cta-title {
        font-size: 24px;
        line-height: 1.15;
        padding-bottom: 0;
    }

    .tb-truegenie-page .functional-modules-content-title,
    .tb-truegenie-page .process-card-name h6,
    .tb-truegenie-page .card-title {
        font-size: var(--tb-fs-24);
    }
}

.leadership-card-caption p {
    font-size: 14px !important;
}

.section-description {
    font-size: 14px !important;

}

.card-features li {
    font-size: 14px !important;
}

.card-subtitle {
    font-size: 14px !important;
}

.functional-module-points li {
    font-size: 12px !important;
}

.module-toggle-subtitle {
    font-size: 14px !important;
}

.module-toggle-title {
    font-size: 14px !important;
}

.process-card li {
    font-size: 14px !important;
}

.process-card-name h6 {
    font-size: 16px !important;
    margin-bottom: 0% !important;
}

.process-card ul {
    margin-top: 12px;
}



.leadership-tab-buttom {
    font-size: 14px !important;
    font-weight: 300 !important;
}

.secondary-feature-card-item-name {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.tb-truegenie-page .leadership-tab-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.44rem;
    margin-top: 0.9rem;
    margin-bottom: 0.8rem;
}

.tb-truegenie-page .leadership-tab-buttom {
    border: 1px solid transparent;
    border-radius: 999px;
    background: #f6f9ff;
    color: #5d6e86;
    font-size: var(--tb-fs-16) !important;
    line-height: 1;
    font-weight: 500 !important;
    padding: 0.56rem 0.92rem;
    white-space: nowrap;
    box-shadow: none !important;
}

.tb-truegenie-page .leadership-tab-buttom:hover {
    background: #edf3ff;
    color: #1d4f98;
}

.tb-truegenie-page .leadership-tab-buttom.leadership-tab-buttom-active {
    background: #2f6be4;
    border-color: #2f6be4;
    color: #fff;
}

@media (max-width: 767.98px) {

    .tb-truegenie-page .functional-modules-shell {
        display: flex;
        flex-direction: column;
    }

    .tb-truegenie-page .functional-modules-content {
        order: 3;
    }

    .tb-truegenie-page .functional-modules-sidebar {
        order: 1;
    }

    .tb-truegenie-page .functional-modules-mobile-pagination {
        order: 2;
    }

    .tb-truegenie-page .how-its-work .process-icons-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.45rem;
        max-width: 100%;
        margin-top: 1rem;
    }

    .tb-truegenie-page .how-its-work .process-icon-wrapper {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 14px;
        cursor: pointer;
    }

    .tb-truegenie-page .how-its-work .process-icon-wrapper svg {
        width: 26px;
        height: 26px;
    }

    .tb-truegenie-page .how-its-work .process-wrapper.is-mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1rem;
        scroll-padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.85rem;
        padding: 0.35rem 1rem 1.2rem;
        padding-top: 20px;
    }

    .features-section-1 .img-wrapper.hover-card-animation .features-section-img {
        height: 240px;
    }

    .tb-truegenie-page .how-its-work .process-wrapper.is-mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .tb-truegenie-page .how-its-work .process-wrapper.is-mobile-slider .process-card {
        flex: 0 0 calc(100% - 2rem);
        width: calc(100% - 2rem);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .tb-truegenie-page .leadership-section {
        padding-top: 1.4rem;
        padding-bottom: 1.4rem;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    .tb-truegenie-page .leadership-tab-button-wrapper {
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.44rem;
        margin-top: 0.9rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0;
        width: 100%;
        min-width: 0;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        scrollbar-width: none;
    }

    .tb-truegenie-page .leadership-tab-button-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tb-truegenie-page .leadership-tab-buttom {
        border: 1px solid transparent;
        background: #f6f9ff;
        color: #5d6e86;
        white-space: nowrap;
        flex: 0 0 auto;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 999px;
        padding: 0.56rem 0.92rem;
        font-size: var(--tb-fs-16) !important;
        line-height: 1;
        font-weight: 500 !important;
        box-shadow: none !important;
    }

    .tb-truegenie-page .leadership-tab-buttom:hover {
        background: #edf3ff;
        color: #1d4f98;
    }

    .tb-truegenie-page .leadership-tab-buttom.leadership-tab-buttom-active {
        background: #2f6be4;
        border-color: #2f6be4;
        color: #fff;
    }

    .tb-truegenie-page .leadership-card {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.75rem;
        padding: 0.95rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
    }

    .tb-truegenie-page .leadership-card::before {
        display: none;
    }

    .tb-truegenie-page .leadership-card .img-wrapper {
        width: 100%;
    }

    .tb-truegenie-page .leadership-card img {
        /* width: 20%; */
        max-width: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    .tb-truegenie-page .leadership-card-caption h4 {
        font-size: 15px;
        line-height: 1.32;
        margin-bottom: 0.35rem;
        /* padding-right: 1.7rem; */
    }

    .tb-truegenie-page .leadership-card-caption p {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .tb-truegenie-page .leadership-card .social-media-icon {
        top: 0.75rem;
        right: 0.75rem;
    }

    .tb-truegenie-page .leadership-card .social-media-link img {
        height: 24px;
        width: 100%;
    }

    .tb-truegenie-page .section-description {
        font-size: 12px;
    }

    .tb-truegenie-page .engagement-cards {
        display: flex;
        flex-direction: column;
    }

    .tb-truegenie-page .engagement-card--recommended {
        order: -1;
    }

    .recommended-badge {
        left: auto;
        right: 0;
    }

    .tb-truegenie-page .process-wrapper {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .tb-truegenie-page .hero-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .tb-truegenie-page .hero-section .img-wrapper {
        order: -1;
        margin-inline: auto;
        width: 100%;
    }

    .tb-truegenie-page .hero-section-cta-wrapper,
    .tb-truegenie-page .features-section-cta-wrapper,
    .tb-truegenie-page .cta-buttons {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .tb-truegenie-page .functional-modules-shell {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0;
    }
}