/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #0f172a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ============================================
   HEADER (All Pages)
   ============================================ */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    padding: 0 32px;
}


.logo {
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    /* later change to 24 */
}

.nav-link,
.dropdown-toggle {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    color: #334155;
    padding: 16px 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.dropdown-toggle.active,
.dropdown.active .dropdown-toggle {
    background: #043A530D;
    border-bottom: 1.5px solid #131313;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 280px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    display: block;
    padding: 8px 8px;
    margin-bottom: 8px;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}


/* Dropdown Color Variations */

.dropdown-item.enterprise {
    color: #5DADE2;
}

.dropdown-item.msp {
    color: #6A0DAD;
}

.dropdown-item.candidates {
    color: #00AE52;
}

.dropdown-item.rpo {
    color: #16699F;
}

.dropdown-item.enterprise:hover,
.dropdown-item.enterprise.active {
    background: #5DADE233;
}

.dropdown-item.msp:hover,
.dropdown-item.msp.active {
    background: #6A0DAD26;
}

.dropdown-item.candidates:hover,
.dropdown-item.candidates.active {
    background: #00AE5226;
}

.dropdown-item.rpo:hover,
.dropdown-item.rpo.active {
    background: #5DADE224;
}


/* Request Demo Button */
.request-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #043a53;
    border-radius: 32px;
    box-shadow: 0px 2px 12px rgba(4, 58, 83, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.request-demo-btn .btn-text {
    font-size: 14px;
    font-weight: 500;
    color: #043a53;
}

.request-demo-btn .btn-icon {
    width: 32px;
    height: 32px;
    background: #e6f0f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-demo-btn:hover {
    background: #f8fbfd;
    box-shadow: 0px 4px 16px rgba(4, 58, 83, 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    background: none;
    border: none;
    color: #334155;
}

/* ============================================
   HOMEPAGE - HERO SECTION
   ============================================ */
.hero {
    text-align: center;
    position: relative;
    padding: 80px 0 40px;
    background: radial-gradient(80% 50% at 50% -20%,
            rgba(94, 176, 239, 0.5) 0%,
            rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
}

.hero-content {
    margin-bottom: 40px;
}

.hero h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -2.61px;
    color: #12141D;
    margin-bottom: 24px;
}

.hero h1 span {
    font-weight: 600;
    color: #043A53;
}

.hero p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    max-width: 780px;
    margin: 0 auto 32px;
    color: #12141DCC;
    font-size: 20px;
    line-height: 1.6;
}

/* Hero CTA Button */
.cta-demo-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.14px;
    color: #ffffff;
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    border: none;
    border-top: 1px solid #ffffff;
    border-radius: 200px;
    backdrop-filter: blur(13.5px);
    -webkit-backdrop-filter: blur(13.5px);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-demo-text {
    white-space: nowrap;
}

.cta-demo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #FEFEFE;
    border-radius: 999px;
    flex-shrink: 0;
}

.cta-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(4, 58, 83, 0.25);
}

/* Hero Media Section */
.hero-media {
    margin-top: 40px;
    padding: 0 24px;
}

.hero-media-card {
    position: relative;
    width: 100%;
    max-width: 1184px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;

}

.hero-media-video {
    width: 100%;
    height: auto;
    /* natural height */
    display: block;
    object-fit: contain;
    position: relative;
}

.hero-media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.hero-play-btn:focus {
    outline: 2px solid #043A53;
    outline-offset: 2px;
}

/* Hero Badges */
.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 8px 16px;

    /* Background */
    background: var(--color-white-60, #FFFFFF99);
    border-top: 1px solid var(--color-white-solid, #FFFFFF);
    backdrop-filter: blur(13.5px);
    -webkit-backdrop-filter: blur(13.5px);

    /* Shape */
    border-radius: 999px;

    /* Text */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    /* 100% */
    letter-spacing: -0.14px;
    text-align: center;
    color: #12141D;

    white-space: nowrap;
    z-index: 10;
}


.badge-left {
    top: 20%;
    left: 24px;
}

.badge-right {
    top: 50%;
    right: 24px;
}

.badge-bottom {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

/* Video wrapper */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Thumbnail overlay */
.hero-media-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Play button image */
.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease;
}

.hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Badge icon alignment */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge img {
    width: 28x;
    height: 28px;
    object-fit: contain;
}


/* ============================================
   HOMEPAGE - PLATFORM SECTION
   ============================================ */
.platform-section {
    padding: 90px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
}

.platform-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.section-label {
    font-size: 18px;
    font-weight: 400;
    color: #121B4A;
    margin-bottom: 8px;
}

.section-title {
    font-size: 38px;
    font-weight: 500;
    color: #043A53;
    line-height: 1.4;
    margin-bottom: 48px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 48px 38px;
    background: #ffffff;
    border-radius: 48px;
    box-shadow: 0px 8.8px 26.4px rgba(69, 69, 80, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 14px 40px rgba(69, 69, 80, 0.18);
}

.platform-card .card-tag {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0px;
    color: #043a53;
}

.platform-card h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0px;
    color: #121b4a;
}

.platform-card p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    color: rgba(18, 27, 74, 0.6);
    text-align: left;
    margin: 0;
}

.platform-card img {
    display: block;
    margin: 32px auto 24px;
    max-width: 220.35px;
    width: 100%;
    height: auto;
    opacity: 1;
}

.platform-card a {
    margin-top: auto;
    align-self: center;
    font-size: 14px;
    font-weight: 500;
    color: #043A53;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.platform-card a:hover {
    color: #0f6c8d;
}

/* ============================================
   HOMEPAGE - PROBLEMS & SOLUTIONS SECTION
   ============================================ */
/* =========================
   SECTION
========================= */

.problems-solutions {
    padding: 90px 20px;
    font-family: 'Helvetica Neue', sans-serif;
    text-align: center;
    background-color: #ffffff;
}

.problems-solutions .title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #121B4A;
}

.problems-solutions .subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #121b4a;
    margin-bottom: 48px;
}

/* =========================
   LABELS
========================= */

.labelp,
.labels {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 26px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 40px;
    /* proper spacing under labels */
}

.problem-label {
    background-color: #F7CFD3;
    color: #D90F21;
}

.solution-label {
    background-color: #CCEFDC;
    color: #00AE52;
}

/* =========================
   GRID
========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 80px auto;
    /* spacing below each section */
}

/* =========================
   CARD
========================= */

.card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* ensures equal height */
    min-height: 260px;
    /* consistent card height */
    transition: all 0.3s ease;
}

/* Borders */
.problem-label~.cards .card {
    border: 1px solid #F7CFD3;
    box-shadow: 0px 8px 24px rgba(69, 69, 80, 0.1);
}

.solution-label~.cards .card {
    border: 1px solid #CCEFDC;
    box-shadow: 0px 8px 24px rgba(69, 69, 80, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.08);
}

/* =========================
   ICON
========================= */

.card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #F7CFD3;
}

.solution-label~.cards .card .icon {
    background-color: #CCEFDC;
}

.card .icon i {
    font-size: 20px;
    color: #E13F4D;
}

.solution-label~.cards .card .icon i {
    color: #00AE52;
}

/* =========================
   TEXT
========================= */

.card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #121B4A;
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(18, 27, 74, 0.7);
    margin: 0;
}

/* =========================
   DIVIDER
========================= */

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    gap: 16px;
}

.divider .line {
    flex: 1;
    height: 1px;
    background: #DDDDDD;
}

.divider img {
    height: 60px;
}



/* ============================================
   HOMEPAGE - HOW IT WORKS SECTION
   ============================================ */
.hiw-section {
    background: #043A53;
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hiw-subtitle {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.6px;
    color: #FEFEFE;
    margin-bottom: 42px;
}

.hiw-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    color: #FEFEFE;
    margin-bottom: 30px;
}

.hiw-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    max-width: 1100px;
    margin: 0 auto 64px;
}

.hiw-steps::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 18%;
    right: 18%;
    border-top: 2px dashed rgba(254, 254, 254, 0.25);
    border-image: repeating-linear-gradient(to right,
            rgba(254, 254, 254, 0.25) 0 6px,
            transparent 6px 16px) 1;
}

.hiw-step {
    max-width: 280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hiw-step-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #FEFEFE;
    margin-bottom: 8px;
}

.hiw-step-desc {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(254, 254, 254, 0.8);
}

.hiw-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FEFEFE;
    color: #043A53;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: 1px solid rgba(4, 58, 83, 0.2);
    box-shadow: 0px 2px 10px rgba(0, 67, 183, 0),
        0px 4px 10px rgba(254, 254, 254, 0.4);
    margin: 0 auto 20px;
}

.hiw-cta {
    display: inline-block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #FEFEFE;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.hiw-cta:hover {
    color: #29A4FF;
}

/* ============================================
   HOMEPAGE - IMPACT SECTION
   ============================================ */
.impact-section {
    padding: 90px 0;
    background: #ffffff;
}

.impact-eyebrow {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #121b4a;
    text-align: center;
    margin-bottom: 38px;
}

.impact-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043a53;
    text-align: center;
    margin-bottom: 20px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
}

.impact-item {
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.impact-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.impact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #043a53;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.impact-value {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    color: #043a53;
}

.impact-text {
    text-align: left;
}

.impact-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #043a53;
    margin-bottom: 6px;
}

.impact-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #4a5568;
    max-width: 260px;
}

.impact-divider {
    width: 1px;
    height: 100%;
    background: rgba(4, 58, 83, 0.25);
    align-self: center;
}

/* ============================================
   HOMEPAGE - TRUSTED BY SECTION
   ============================================ */
.trusted-by-section {
    padding: 90px 0;
    background: #F8F8F8;

}

.trusted-by-inner {
    text-align: center;
}

.trusted-by-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 24px;
}

.inner-trusted-by-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 44px;
}

.trusted-by-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-by-logos img {
    max-height: 48px;
    object-fit: contain;
    opacity: 0.9;
}

/* ============================================
   HOMEPAGE - FAQ SECTION
   ============================================ */
.faq-section {
    width: 100vw;
    padding: 90px 0;
    background: #ffffff;
    box-sizing: border-box;
}

.faq-section .faq-content {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

.faq-eyebrow {
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 8px;
}

.faq-title {
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin-bottom: 40px;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.faq-tab {
    text-decoration: none;
    border-radius: 24px;
    border: 1px solid #12141D66;
    background: transparent;
    padding: 8px 24px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    color: #12141D66;
    opacity: 1;
}

.faq-tab.active {
    background: #043A53;
    border: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
}

.faq-list {
    width: 100%;
    padding: 26px 24px;
}

.faq-item {
    border-bottom: 1px solid #DEDEDE;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0 4px;
    display: flex;
    justify-content: space-between;
    align-items: left;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 16px;
    letter-spacing: 0;
    color: #000000;
    cursor: pointer;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #043A53;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding-bottom: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.14px;
    color: #12141DCC;
    max-width: 1026px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   FOOTER 
   ============================================ */
.footer {
    background: #043A53;
    color: #e5f0f6;
    font-family: "Inter", sans-serif;
    margin-top: 80px;
}

.footer-top {
    padding: 56px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    display: flex;
}

.footer-brand .logo img {
    width: 248px;
    max-width: 100%;
    height: auto;
}

.footer-tagline {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #FEFEFE;
    margin-bottom: 8px;
    margin-top: 10px;
    max-width: 480px;
}

.footer-meta {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #9fc6da;
}

.footer-dot {
    color: #FEFEFE;
    margin: 0 4px;
}

.footer-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.footer-demo-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border: 1px solid #ffffff;
    border-radius: 999px;
    backdrop-filter: blur(13.5px);
    -webkit-backdrop-filter: blur(13.5px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-demo-text {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.14px;
    color: #ffffff;
    white-space: nowrap;
}

.footer-demo-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-sales-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #ffffff;
    border: none;
    border-radius: 999px;
    color: #043a53;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.footer-sales-btn .icon {
    display: flex;
    align-items: center;
}

.footer-sales-btn .text {
    white-space: nowrap;
}

.footer-links {
    padding: 56px 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
}

.footer-col h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    color: #29A4FF;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #29a4ff;
}

.footer-subheading {
    display: block;
    margin-bottom: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9fc6da;
}

.inline-heading {
    display: inline-block;
    margin-right: 24px;
    vertical-align: middle;
}

.footer-col .mt {
    margin-top: 32px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links,
.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a {
    font-size: 14px;
    color: #b7d9ea;
    text-decoration: none;
    white-space: nowrap;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 13px;
    color: #b7d9ea;
    white-space: nowrap;
}

.enterprise-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 30px 0;
}

.enterprise-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.enterprise-logos img {
    height: 58px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.2s ease;
}

.enterprise-logos img:hover {
    opacity: 1;
}

.footer-col .connect-linkedin-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 6px;
    border-radius: 14px;
    text-decoration: none;
    width: max-content !important;
    white-space: nowrap !important;
}

.connect-icon-box {
    width: 26px;
    height: 26px;
    background: #ffffff;
    color: #4a72b2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.connect-divider {
    width: 2px;
    height: 24px;
    background-color: #ffffff;
    opacity: 0.6;
    display: inline-block;
}

.connect-text {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
}



/* Powered By Section */
.powered-by {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.powered-by:hover {
    opacity: 0.85;
}

.powered-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #9fc6da;
    letter-spacing: 0.3px;
}

.powered-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); 
    opacity: 0.9;
}


/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
:focus-visible {
    outline: 2px solid #043A53;
    outline-offset: 2px;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #043A53;
    color: white;
    padding: 8px;
    z-index: 9999;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}





/* ============================================
   PLATFORM PAGE - HERO SECTION
   ============================================ */
.hero-section {
    width: 100%;
    padding: 90px 0;
    background: radial-gradient(80% 50% at 50% -20%,
            rgba(94, 176, 239, 0.5) 0%,
            rgba(255, 255, 255, 0) 100%);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.hero-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    width: 90%;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-eyebrow {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #043A53;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #12141D;
    margin: 0 0 24px 0;
}

.hero-title span {
    font-weight: 600;
    color: #043A53;
}

.hero-description {
    font-family: 'Helvetica Neue', sans-serif;
    max-width: 568px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #12141DCC;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-explore {
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #FEFEFE;
    background-color: #043A53;
    border: none;
    padding: 14px 28px;
    border-radius: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.btn-explore:hover {
    background-color: #052E42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 58, 83, 0.15);
}

.btn-explore:hover .icon-container {
    background-color: #FFFFFF;
    transform: translateX(4px);
}

.btn-explore:hover .btn-icon path {
    stroke: #043A53;
}

.icon-container {
    width: 36px;
    height: 36px;
    background-color: #FEFEFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-icon {
    color: #FEFEFE;
    transition: all 0.3s ease;
}

.btn-architecture {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #043A53;
    background-color: transparent;
    border: 2px solid #043A53;
    padding: 14px 28px;
    border-radius: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-architecture:hover {
    background-color: rgba(4, 58, 83, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 58, 83, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* ============================================
   PLATFORM PAGE - WHY THIS EXISTS SECTION
   ============================================ */
.why-exists-section {
    width: 100%;
    background-color: #ffffff;
    padding: 90px 0px;
}

.why-exists-container {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.why-exists-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin-bottom: 20px;
}

.why-exists-description {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    color: #12141D;
    max-width: 760px;
    margin: 0 auto;
}

/* ============================================
   PLATFORM PAGE - ARCHITECTURE SECTION
   ============================================ */
.platform-architecture-section {
    width: 100%;
    padding: 90px 0px;
    background-color: #ffffff;
}

.platform-architecture-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 40px;
    border-radius: 24px;
    background: linear-gradient(180deg, #2E7798 0%, #043A53 100%);
    text-align: center;
}

.platform-architecture-eyebrow {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #FEFEFECC;
    margin-bottom: 8px;
}

.platform-architecture-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    color: #FEFEFE;
    margin-bottom: 36px;
}

.architecture-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.architecture-box {
    background: #10435B;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 160px;
    text-align: center;
}

.architecture-box h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FEFEFE;
    margin-bottom: 4px;
}

.architecture-box p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FEFEFECC;
}

.architecture-box.highlight {
    background: #00FF7533;
    border: 1px solid #00AE52;
}

.architecture-arrow {
    font-size: 20px;
    color: #00AE52;
    font-weight: 600;
}

/* ============================================
   PLATFORM PAGE - HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 90px 0;
    background: #ffffff;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.how-it-works-eyebrow {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 40px;
}

.how-it-works-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin: 0 0 20px;
}

.how-it-works-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
}

.how-it-works-steps::before {
    content: "";
    position: absolute;
    top: 48px;
    left: calc(22% / 2);
    right: calc(22% / 2);
    border-top: 2px dashed #121B4A;
    z-index: 1;
}

.how-step {
    width: 22%;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.how-icon {
    width: 96px;
    height: 96px;
    background: #043a53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.how-icon img {
    width: 42px;
    height: 42px;
}

.how-step h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #121B4A;
    margin-bottom: 12px;
}

.how-step p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #121B4ACC;
}

/* ============================================
   PLATFORM PAGE - WHAT YOU CAN ACHIEVE SECTION
   ============================================ */
.achieve-section {
    background: #ffffff;
    padding: 90px 0;
}

.achieve-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.achieve-eyebrow {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 64px;
}

.achieve-eyebrow-platform {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 24px;
}

.achieve-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin-bottom: 24px;
}

.achieve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.achieve-card {
    background: #ffffff;
    border-radius: 48px;
    padding: 48px 38px;
    text-align: left;
    box-shadow: 0px 8.8px 26.4px 0px #4545501A;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.achieve-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(4, 58, 83, 0.12);
}

.achieve-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg,
            rgba(46, 119, 152, 0.8) 0%,
            rgba(4, 58, 83, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.achieve-icon i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.achieve-card h4 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #121B4A;
    margin-bottom: 10px;
}

.achieve-card p {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #121B4A99;
}

/* ============================================
   PLATFORM PAGE - GOVERNANCE SECTION
   ============================================ */
.governance-section {
    padding: 90px 0;
    background: #ffffff;
}

.governance-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.governance-eyebrow {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 48px;
}

.governance-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin-bottom: 20px;
}

.governance-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 70px;
}

.governance-feature h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    margin: 20px 0 10px;
    color: #043A53;
}

.governance-feature p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    color: #121B4A99;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #043A53;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #043A53;
    font-size: 22px;
}

.governance-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-card {
    background: #10435B;
    border: 1px solid #FFFFFF47;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    text-align: center;
}





.badge-icon {
    width: 36px;
    height: 36px;
    background: #FEFEFE;
    color: #10435B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}



.badge-card strong {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FEFEFE;
}

.badge-card span {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FEFEFECC;
    opacity: 0.85;
}






/* ============================================
   SOLUTIONS PAGE - HERO SECTION
   ============================================ */

/* ============================================
   SOLUTIONS PAGE - HIRING CHALLENGES SECTION
   ============================================ */

/* ============================================
   SOLUTIONS PAGE - UNIFIED PIPELINE SECTION
   ============================================ */
.pipeline-section {
    padding: 90px 0;
    background: #F8F8F8;
}

.pipeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pipeline-header {
    text-align: center;
    margin-bottom: 64px;
}

.pipeline-eyebrow {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 8px;
}

.pipeline-title {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    vertical-align: middle;
    color: #043A53;
    margin-bottom: 24px;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.pipeline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, #2E7798 0%, #043A53 100%);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0px;
    color: #FEFEFE;
    opacity: 1;
    margin-bottom: 32px;
}

.pipeline-block {
    margin-bottom: 32px;
}

.pipeline-block h4 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #043A53;
    margin-bottom: 8px;
}

.pipeline-block p {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0px;
    color: rgba(18, 27, 74, 0.6);
}

.pipeline-metrics {
    background: linear-gradient(180deg, #2E7798 0%, #043A53 100%);
    border-radius: 48px;
    padding: 56px 48px;
    color: #ffffff;
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1.41px;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.metric-text {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    opacity: 1;
}

.metric-divider {
    height: 2px;
    background: #FEFEFE66;
    margin: 40px 0;
}

/* ============================================
   SOLUTIONS PAGE - IMPACT SECTION
   ============================================ */



/* ============================================
   ENTERPRISES PAGE - HERO SECTION
   ============================================ */

/* ============================================
   ENTERPRISES PAGE - BREAKDOWN SECTION
   ============================================ */
.breakdown-section {
    padding: 90px 0;
    background: #F9FAFB;
}

.breakdown-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.breakdown-eyebrow {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    color: #121B4A;
    margin-bottom: 64px;
}

.breakdown-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin-bottom: 24px;
}

.breakdown-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.breakdown-feature h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    margin: 20px 0 10px;
    color: #043A53;
}

.breakdown-feature p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #121B4A99;
}

.breakdown-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg,
            rgba(46, 119, 152, 0.8) 0%,
            rgba(4, 58, 83, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

/* ============================================
   ENTERPRISES PAGE - OPERATING MODEL SECTION
   ============================================ */
.operating-model-section {
    padding: 90px 0;
    text-align: center;
}

.model-eyebrow {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #121b4a;
    margin-bottom: 12px;
}

.model-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043a53;
    margin-bottom: 56px;
}

.model-card {
    display: flex;
    justify-content: center;
    background: #ffffff;
    border-radius: 48px;
    box-shadow: 0px 8.8px 26.4px rgba(69, 69, 80, 0.1);
    overflow: hidden;
    padding: 20px;
}

.inner-model-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0;
}

.model-column {
    display: flex;
    flex-direction: column;
}

.model-column.right {
    background: rgba(4, 58, 83, 0.06);
    border-radius: 0 16px 16px 0;
}

.model-column.right .model-row {
    border-left: 0.5px solid #02101a;
}


.model-header {
    padding: 28px 8px;
    border-bottom: 1.5px solid #0670a00f;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #121B4A;
    text-align: left;
}


.model-column.right .model-header {
    background: #ffffff;
}

.model-row {
    border-bottom: 1px solid #E6E6E6;

}

.model-row:last-child {
    border-bottom: none;
}

.model-col {
    padding: 22px;
    text-align: left;
}

.model-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.model-icon.outline {
    border: 1.25px solid #d9e4ea;
    color: #043a53;
}

.model-icon.filled {
    background: linear-gradient(180deg,
            rgba(46, 119, 152, 0.8),
            rgba(4, 58, 83, 0.8));
    color: #ffffff;
}

.model-col h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #121B4A;
    margin-bottom: 6px;
}

.model-col p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    vertical-align: middle;
    margin: 0;
}

.model-column.left .model-col p {
    color: #121B4A99;
}

.model-column.right .model-col p {
    color: #043A53;
}

.model-footer {
    max-width: 720px;
    margin: 48px auto 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #12141DCC;
}

/* ============================================
   ENTERPRISES PAGE - ACHIEVE SECTION
   ============================================ */

/* ============================================
   ENTERPRISES PAGE - BUSINESS IMPACT SECTION
   ============================================ */
.business-impact-section {
    padding: 90px 0;
    background: #ffffff;
}

.impact-heading {
    text-align: center;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin-bottom: 40px;
}

.impact-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.impact-card {
    background: #ffffff;
    border-radius: 48px;
    padding: 48px 38px;
    box-shadow: 0px 8.8px 26.4px 0px #4545501A;
}

.impact-card h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0px;
    color: #121B4A;
    margin-bottom: 14px;
}

.impact-line {
    display: block;
    width: 100%;
    height: 1px;
    background: #043A53;
    margin-bottom: 34px;
}

.divider-impact-line {
    display: block;
    width: 100%;
    height: 1px;
    margin: 24px 0 24px 0;
    background: #E6E6E6;
    opacity: 1;
}

.impact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-card li {
    display: flex;
    gap: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0px;
    color: #121B4A99;
    margin-bottom: 28px;
}

.impact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.impact-icon.outline {
    border: 0.5px solid #E6E6E6;
    color: #043A53;
    background: #ffffff;
}

.impact-icon.filled {
    background: linear-gradient(135deg, #2E7798, #043a53);
    color: #ffffff;
}

/* ============================================
   ENTERPRISES PAGE - TRUSTED BY SECTION
   ============================================ */

/* ============================================
   ENTERPRISES PAGE - IMPACT SECTION
   ============================================ */



/* ============================================
   MSP PAGE - HERO SECTION
   ============================================ */

/* ============================================
   MSP PAGE - CHALLENGES SECTION
   ============================================ */
.rpo-section {
    padding: 90px 0;
    background: #FFFFFF;
}

.rpo-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.rpo-eyebrow {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.6px;
    color: #121B4A;
    margin-bottom: 34px;
}

.rpo-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    color: #043A53;
    margin-bottom: 20px;
}

.rpo-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.rpo-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rpo-challenge-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #043A53;
    margin-bottom: 20px;
}

.rpo-feature h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    margin: 20px 0 10px;
    color: #043A53;
}

.rpo-feature p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #121B4A99;
}

.rpo-icon {
    width: 64px;
    height: 64px;
    border-radius: 152px;
    background: #043A53;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 32px;
}

/* ============================================
   MSP PAGE - SUPPORT SECTION
   ============================================ */
.msp-support-section {
    padding: 90px 0;
    background: #ffffff;
}

.msp-support-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.msp-support-eyebrow {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    vertical-align: middle;
    color: #121B4A;
    margin-bottom: 24px;
}

.msp-support-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    vertical-align: middle;
    color: #043A53;
    margin-bottom: 24px;
}

.msp-support-card {
    background: var(--color-white-solid, #FFFFFF);
    border-radius: 48px;
    padding: 48px 38px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    box-shadow: 0px 8.8px 26.4px 0px rgba(69, 69, 80, 0.1);
    opacity: 1;
    align-items: center;
}

.msp-support-features {
    text-align: left;
}

.msp-support-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.msp-support-icon {
    width: 44px;
    height: 44px;
    border-radius: 114px;
    background: #043A53;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.msp-support-item h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #121B4A;
    margin-bottom: 6px;
}

.msp-support-item p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    vertical-align: middle;
    color: rgba(18, 27, 74, 0.6);
}

.msp-support-divider {
    height: 1px;
    background: #E6E6E6;
    margin: 22px 0;
}

.msp-support-image {
    border-radius: 24px;
    overflow: hidden;
}

.msp-support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   MSP PAGE - IMPACT SECTION
   ============================================ */

/* ============================================
   MSP PAGE - TRUSTED BY SECTION
   ============================================ */
.trusted-by-text {
    text-align: center;
    margin-bottom: 40px;
}

.trusted-by-desc {
    max-width: 796px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.14px;
    color: #121b4a;
    text-align: center;
    margin: 0 auto 12px;
}


.trusted-by-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043a53;
    text-align: center;
    margin-bottom: 24px;
}

.msp-value-wrapper {
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 38px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: linear-gradient(180deg,
            #2E7798 0%,
            #043A53 100%);
    box-shadow: 0px 8.8px 26.4px 0px rgba(69, 69, 80, 0.1);
    border-radius: 48px;
}

.msp-value-card {
    background: #10435B;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    padding: 20px 12px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.msp-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 6px;
    border-radius: 27px;
    background: #FEFEFE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msp-icon i {
    font-size: 26px;
    color: #043A53;
}

.msp-value-card h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    color: #FEFEFE;
    margin: 0;
}

.msp-value-card p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: rgba(254, 254, 254, 0.8);
    margin: 0;
}

.msp-cta {
    padding: 26px 0;
    text-align: center;
}

.rpo-cta {
    padding: 26px 0;
    text-align: center;
    margin-bottom: 60px;
}

.msp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 32px;
    border: 1px solid #043A53;
    border-radius: 999px;
    color: #0b3c55;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.msp-cta-btn:hover {
    background: #0b3c55;
    color: #ffffff;
}



/* ============================================
   CANDIDATES PAGE - HERO SECTION
   ============================================ */

/* ============================================
   CANDIDATES PAGE - WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.why-choose-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #ffffff;
}

.why-choose-header h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #043A53;
    margin-bottom: 12px;
}

.why-choose-header p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(18, 20, 29, 0.8);
}

.why-choose-header span {
    font-weight: 500;
}

.why-choose-bg {
    background: linear-gradient(180deg, #0b3a4d 0%, #2b6e8c 100%);
    padding: 60px 20px;
}

.why-choose-cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background: #E2EAED;
    border-radius: 20px;
    padding: 26px 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.why-card img {

    margin-bottom: 20px;
}

.why-card h4 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 34px;
    color: rgba(18, 20, 29, 0.8);
    margin-bottom: 12px;
}

.why-card p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: rgba(18, 20, 29, 0.8);
}

/* ============================================
   CANDIDATES PAGE - CANDIDATE JOURNEY SECTION
   ============================================ */
.candidate-journey-section {
    padding: 90px 0;
    background: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.journey-title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #043A53;
    margin-bottom: 48px;
}

.journey-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.journey-header {
    margin-bottom: 26px;
}

.journey-header .journey-col {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    padding: 22px 20px;
    border-radius: 14px;
}

.journey-header .journey-col.stage {
    background: #FFFFFF;
    color: #121d16cc;
    border: 1px solid #10445C;
    padding: 28px 18px;
    border-radius: 22px 0 0 22px;
    opacity: 1;
}

.journey-header .journey-col.traditional {
    background: #ffffff;
    border: 1px solid #10445C;
    color: #12141DCC;
    padding: 28px 18px;
    border-radius: 0;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.journey-header .journey-col.hummingbird {
    background: #FFFFFF;
    color: #12141DCC;
    border: 1px solid #10445C;
    padding: 28px 18px;
    border-radius: 0 22px 22px 0;
    opacity: 1;
}

.journey-header span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
}

.journey-row {
    margin-bottom: 18px;
}

.journey-col.stage {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    background: #F4F3E4;
    border-radius: 22px 0 0 22px;
    padding: 28px 18px;
    font-size: 18px;
    color: #12141DCC;
    display: flex;
    align-items: center;
}

.traditional-card {
    background: #E2EAED;
    border-radius: 0;
    padding: 28px 18px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.traditional-card p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #12141DCC;


}

.traditional-card strong {
    font-weight: 600;
    font-size: 16px;

}

.happy-card {
    background: #CFDDFF;
    border-radius: 0 22px 22px 0;
    padding: 28px 18px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.happy-card p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #12141DCC;
}

.happy-card strong {
    font-weight: 600;
    font-size: 16px;
}

.journey-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================
   CANDIDATES PAGE - TRUSTED BY SECTION (Extended)
   ============================================ */
.candidate-cta {
    padding: 26px 0;
    text-align: center;

}

.candidate-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 32px;
    border: 1px solid #043A53;
    background-color: #043A53;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.candidate-cta-btn:hover {
    color: #0b3c55;
    background-color: #ffffff;
}


/* ============================================
   RPO PAGE - HERO SECTION
   (Uses same hero-section as other pages)
   ============================================ */

/* ============================================
   RPO PAGE - CHALLENGES SECTION
   (Uses same rpo-section as MSP page)
   ============================================ */

/* ============================================
   RPO PAGE - SUPPORT SECTION
   (Uses same msp-support-section as MSP page)
   ============================================ */


.rpo-support-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    vertical-align: middle;
    color: #043A53;
    margin-bottom: 18px;
}

.rpo-support-eyebrow {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    vertical-align: middle;
    color: #121B4A;
    margin-bottom: 24px;
}

/* ============================================
   RPO PAGE - IMPACT SECTION
   (Uses same impact-section as Homepage)
   ============================================ */

/* ============================================
   RPO PAGE - TRUSTED BY SECTION
   (Uses same trusted-by-section extended version as MSP page)
   ============================================ */



/* ============================================
   INSIGHTS PAGE - HERO SECTION
   (Uses same hero-section as other pages)
   ============================================ */

/* ============================================
   INSIGHTS PAGE - INSIGHTS LISTING SECTION
   ============================================ */
.insights-listing {
    padding: 90px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.featured-insight {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    padding: 20px;
    margin-bottom: 72px;
    background-color: #F2F5F6;
}

.featured-image img {
    width: 90%;
    height: 299px;
    object-fit: cover;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: #12141D;
    margin-bottom: 22px;
}

.meta-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    justify-content: space-between;
}

.meta-date-row {
    margin-bottom: 6px;
}

.meta-tag-row {
    margin-bottom: 18px;
}

.meta-date-row .featured-hiring-date {
    display: block;
    text-align: left;
}

.meta-tag-row .insight-tag {
    display: inline-block;
}

.insight-tag {
    display: inline-block;
    border-radius: 5px;
    background-color: #E4E4E4;
    padding: 4px 8px;
    opacity: 1;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #043A53;
}

.featured-insight-date {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    text-align: right;
    color: #12141D;
}

.featured-hiring-date {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    text-align: center;
    color: #12141D;
}

.view-link {
    font-size: 14px;
    font-weight: 400;
    color: #043A53;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
    position: relative;
}

.insight-grid>.insight-card:nth-child(1),
.insight-grid>.insight-card:nth-child(4) {
    position: relative;
}

.insight-grid>.insight-card:nth-child(1)::after,
.insight-grid>.insight-card:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    width: 1px;
    background-color: #C6CFE1;
}

.insight-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
}

.insight-card-content h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 28.5px;
    letter-spacing: -0.5px;
    color: #12141D;
    margin: 10px 0 14px;
}

.insight-horizontal {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #ffffff;
}

.insight-horizontal img {
    width: 90%;
    height: 299px;
    object-fit: cover;
}

.horizontal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-content h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: #12141D;
    margin-bottom: 22px;
}

.news-title {
    font-size: 26px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 28px;
    color: #0f172a;
}

.latest-news {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #4955791A;
    padding: 38px;
    border-radius: 16px;
}

.latest-news img {
    width: 90%;
    height: 318px;
    object-fit: cover;
}

.news-content h3 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 42px;
    letter-spacing: -1.41px;
    color: #1F1F1F;
    margin-bottom: 12px;
}

.news-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
}

.news-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-meta-row .featured-insight-date {
    white-space: nowrap;
}

/* ============================================
   INSIGHTS PAGE - ARTICLE SECTION
   ============================================ */
.insight-article-section {
    padding: 90px 0;
    background: #ffffff;
}

.insight-article-container {
    max-width: 1312px;
    margin: 0 auto;
}

.insight-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    backdrop-filter: blur(13.5px);
    -webkit-backdrop-filter: blur(13.5px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    color: #FEFEFE;
    opacity: 1;
}

.insight-article-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0px;
    color: #000000;
    vertical-align: middle;
    max-width: 900px;
    margin-bottom: 24px;
}

.insight-image-wrapper {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    margin-bottom: 40px;
}

.insight-featured-image {
    width: 100%;
    height: 529px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.insight-article-content {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    max-width: 780px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #454545;
}

.insight-article-content p {
    margin-bottom: 18px;
}

.insight-location {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #6b7c87;
    margin-bottom: 24px;
}

.insight-article-content h4 {
    font-size: 15px;
    font-weight: 400;
    color: #454545;

}

/* ============================================
   INSIGHTS PAGE - PRESS SECTION
   ============================================ */
.press-section {
    padding: 90px 0;
    background: #ffffff;
}

.press-title {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #043A53;
    margin-bottom: 48px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.press-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 340px;
}

.press-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0b5f7d;
    color: #ffffff;
    font-size: 13px;
    padding: 6px 12px;
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    backdrop-filter: blur(13.5px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.press-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0));
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.press-card-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.3;
}

.press-card-desc {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #e6e6e6;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   INSIGHTS PAGE - LATEST INSIGHTS SECTION
   ============================================ */
.latest-insights {
    padding: 90px 0;
    background: #ffffff;
}

.latest-insights-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-align: center;
    color: #043A53;
    margin-bottom: 38px;
}

.latest-insights-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.insight-item {
    display: flex;
    flex-direction: column;
}

.insight-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.insight-content {
    margin-top: 20px;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.latest-insight-date {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: -0.14px;
    text-align: center;
    vertical-align: middle;
    color: #12141D;
    display: inline-block;
}

.insight-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 32.5px;
    letter-spacing: -0.5px;
    vertical-align: middle;
    color: #12141D;
    margin: 0;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0B4A6F;
    text-decoration: none;
}

.insight-link .text {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.insight-link .arrow {
    font-size: 14px;
    line-height: 1;
}

.insight-link:hover {
    color: #043A53;
}

.insight-link:hover .arrow {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}

.insight-divider {
    width: 1px;
    background: #C6CFE1;
    height: 100%;
}




/* ============================================
   ENGAGEMENT MODELS PAGE - HERO SECTION
   (Uses same hero-section as other pages)
   ============================================ */

/* ============================================
   ENGAGEMENT MODELS PAGE - PRICING LOGIC SECTION
   ============================================ */
.pricing-logic-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.pricing-logic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.pricing-logic-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    line-height: 54px;
    letter-spacing: -1.41px;
    text-align: center;
    vertical-align: middle;
    color: #043A53;
    margin: 0;
}

.pricing-logic-subtitle {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0px;
    text-align: center;
    color: #12141DCC;
    max-width: 760px;
    margin: 0 auto 38px;
}

.pricing-logic-subtitle span {
    font-weight: 600;
    color: #12141DCC;
}

.pricing-logic-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-logic-card {
    background: linear-gradient(180deg, #043A53 0%, #225871 100%);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 24px 20px;
    border-radius: 12px;
    opacity: 1;
    min-height: 96px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

/* ============================================
   ENGAGEMENT MODELS PAGE - COMMERCIAL LOGIC SECTION
   ============================================ */
.commercial-logic-section {
    background: #ffffff;
    padding: 90px 0;
}

.commercial-logic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.commercial-logic-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin-bottom: 12px;
}

.commercial-logic-subtitle {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 19.6px;
    letter-spacing: 0px;
    text-align: center;
    color: #121B4ACC;
    margin-bottom: 64px;
}

.commercial-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
}

.commercial-step {
    padding: 0 24px;
}

.commercial-step-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0px;
    text-align: center;
    color: #043A53;
    display: block;
    margin-bottom: 16px;
}

.commercial-icon {
    width: 56px;
    height: 56px;
    background-color: #043A53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.commercial-icon i {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commercial-step-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0px;
    text-align: center;
    color: #121B4A;
    text-decoration-style: solid;
    text-decoration-color: currentColor;
    text-decoration-skip-ink: auto;
    display: block;
    margin-bottom: 20px;
}

.commercial-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 23px;
    opacity: 1;
}

.commercial-tags span {
    background-color: #EEF6FF;
    color: #1E3A8A;
    padding: 8px 12px;
    border-radius: 23px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    vertical-align: middle;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.commercial-divider {
    width: 1px;
    background: #121B4A99;
    height: 100%;
}

/* ============================================
   ENGAGEMENT MODELS PAGE - ENGAGEMENT MODELS SECTION
   ============================================ */
.engagement-models-section {
    padding: 90px 0px;
    background: #ffffff;
}

.engagement-models-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.engagement-models-title {
    font-family: "HelveticaNeue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 54px;
    letter-spacing: -1.41px;
    text-align: center;
    vertical-align: middle;
    color: #043A53;
    margin-bottom: 12px;
}

.engagement-models-subtitle {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0px;
    text-align: center;
    color: #12141DCC;
    margin: 0 auto 48px;
}


.engagement-models-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 48px;
}

.engagement-model-card {
    background: #EDEEF2;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: left;
}

.engagement-model-card h3 {
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 54px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #043A53;
    margin-bottom: 16px;
}

.engagement-model-card ul {
    padding-left: 18px;
    margin: 0;
}

.engagement-model-card li {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #12141DCC;
    margin-bottom: 10px;
}

/*.engagement-models-cta {
    text-align: center;
}

.engagement-models-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    color: #FFFFFF;
    border-top: 1px solid #FFFFFF;
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-radius: 200px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
    cursor: pointer;
    opacity: 1;
    text-decoration: none;
}*/

/*.engagement-models-btn:hover {
    background: #032C3F;
}*/

/* ============================================
   ENGAGEMENT MODELS PAGE - COST INFLUENCE SECTION
   ============================================ */
.cost-influence-section {
    padding: 90px 0px;
    background-color: #073D56;
}

.cost-influence-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cost-influence-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: #ffffff;
    margin-bottom: 48px;
}

.cost-influence-columns {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.cost-influence-list {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    min-width: 260px;
}

.cost-influence-list li {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 44px;
    color: #FFFFFF;
}

/* ============================================
   ENGAGEMENT MODELS PAGE - ROI SECTION
   ============================================ */
.roi-section {
    text-align: center;
    padding: 90px 0px;
    background: #ffffff;
}

.roi-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 54px;
    color: #043A53;
    margin: 0 0 12px;
}

.roi-subtitle {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0px;
    text-align: center;
    color: #12141DCC;
    margin: 0 auto 48px;
}


.roi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.roi-card {
    background: #EDEEF2;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.roi-card img {
    width: 180px;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
}

.roi-card span {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #043A53;
}

.roi-quote {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 54px;
    letter-spacing: 0px;
    text-align: center;
    color: #043A53;
    margin: 0;
}


/* ============================================
   ENGAGEMENT MODELS PAGE - TRUSTED SECTION
   ============================================ */
.trusted-section {
    padding: 50px 0px;
    background: #ffffff;
    text-align: center;
}

.trusted-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #043A53;
    margin: 0 0 48px;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.trusted-card {
    background: #EDEEF2;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.trusted-icon img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

.trusted-content h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #043A53;
    margin: 0 0 8px;
}

.trusted-content p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(18, 20, 29, 0.8);
    margin: 0;
}

/* ============================================
   ENGAGEMENT MODELS PAGE - COMMERCIAL FIT SECTION
   ============================================ */
.commercial-fit-section {
    background: #ffffff;
}

.commercial-fit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.commercial-fit-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 48px;
    padding: 12px 26px;
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    color: #ffffff;
    border-radius: 200px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    backdrop-filter: blur(13.4999px);
    -webkit-backdrop-filter: blur(13.4999px);
    text-decoration: none;
    cursor: pointer;
}

.commercial-fit-contact {
    text-align: left;
}

.commercial-fit-question {
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #000000;
}

.commercial-fit-details {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #000000;
}

.commercial-fit-details a {
    color: #043A53;
    font-weight: 500;
    text-decoration: none;
}

.commercial-fit-details a:hover {
    text-decoration: underline;
}


/* ============================================
   COMPANY PAGE - HERO SECTION
   (Uses same hero-section as other pages)
   ============================================ */

/* ============================================
   COMPANY PAGE - PRINCIPLES SECTION
   ============================================ */
.principles-section {
    background: linear-gradient(180deg, #11455D 0%, #3D4D54 140%);
    padding: 90px 0;
    color: #ffffff;
}

.principles-container {
    text-align: center;
}

.principles-title {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    color: #ffffff;
    margin-bottom: 60px;
}

.principles-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.principle-card {
    background: #f5f6f7;
    border-radius: 28px;
    padding: 30px 26px;
    text-align: left;
}

.principle-heading {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 16px;
    color: #000000;
}

.principle-text {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
}

.principles-footer-text {
    max-width: 820px;
    margin: 0 auto 40px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    color: #ffffff;
}

.principles-btn {
    padding: 16px 32px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: #FEFEFE;
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    border: 1px solid #FFFFFF;
    border-radius: 200px;
    backdrop-filter: blur(13.5px);
    cursor: pointer;
    text-decoration: none;
}

/* ============================================
   COMPANY PAGE - LEADERS SECTION
   ============================================ */
.leaders-section {
    padding: 90px 0;
    background: #ffffff;
}

.leaders-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 54px;
    letter-spacing: -0.0141em;
    color: #12141D;
    text-align: center;
    margin-bottom: 42px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.leader-card {
    border-radius: 12px;
    border-width: 1px;
    border-color: #FFFFFF47;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.leader-card.light-blue {
    background: #F0F2FC;
}

.leader-card.light-gray {
    background: #ECEEF1;
}

.leader-card.light-green {
    background: #F2F5F3;
}

.leader-avatar {
    width: 160px;
    height: 180px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 15px;
    border-radius: 151px;
    background: #ffffff;
    border: 0.71px solid #073D56;
    box-shadow: 0px 1.43px 11.41px rgba(13, 10, 44, 0.12);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0;
    color: #063C56;
    opacity: 1;
    align-self: center;
    flex-shrink: 0;
}

.leader-name {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    margin-top: 12px;
    margin-bottom: 8px;
}

.leader-role {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000000CC;
    margin-bottom: 16px;
    line-height: 1.5;
}

.leader-impact {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #043A53;
    text-align: left;
    margin-bottom: 6px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    margin-top: auto;
}

.leader-quote {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    text-align: left;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   COMPANY PAGE - CAREERS SECTION
   ============================================ */
.careers-section {
    background: #063a53;
    padding: 90px 0;
}

.careers-title {
    color: #ffffff;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 32px;
}

.career-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter {
    padding: 10px 26px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    color: #043a53;
    font-size: 14px;
    cursor: pointer;
}

.filter.active {
    padding: 10px 26px;
    border-radius: 12px;
    gap: 10px;
    background: linear-gradient(180deg, #063C55 0%, #205770 100%);
    color: #ffffff;
    opacity: 1;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.career-card {
    background: #ffffff;
    border: 1px solid #B7B7B7;
    border-radius: 28px;
    padding: 30px 26px;
    opacity: 1;
}

.career-header {
    background: #E8E8E8;
    border-radius: 12px;
    padding: 20px 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #043A53;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.career-subtitle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16.5px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    text-decoration-skip-ink: auto;
    color: #333333;
    margin-bottom: 6px;
}

.career-desc {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    margin-bottom: 16px;
    font-weight: 400;
}

.career-tag {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 400;
    border-radius: 12px;
    margin-bottom: 16px;
}

.career-tag.green {
    background: #87E392;
    color: #00560A;
}

.career-tag.red {
    background: #FFD3CC;
    color: #700000;
}

.career-tag.blue {
    background: #CEF2FF;
    color: #00506D;
}

.career-tag.pink {
    background: #9113FF1A;
    color: #9113FF;
}


.career-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #043A53;
    font-weight: 500;
}

.career-meta i {
    margin-right: 10px;
}

.career-btn-container {
    display: flex;
    justify-content: center;
}

.career-btn {
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    border-radius: 40px;
    color: #ffffff;
    border: none;
    padding: 14px 26px;
    font-size: 14px;
    opacity: 1;
    backdrop-filter: blur(13.5px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

/* ============================================
   COMPANY PAGE - PRESS SECTION
   (Uses same press-section as Insights page)
   ============================================ */




/* ==============================
CONTACT US SECTION
============================== */

.contact-section {
    padding: 90px 0;
    background: radial-gradient(80% 50% at 50% -20%,
            rgba(94, 176, 239, 0.5) 0%,
            rgba(255, 255, 255, 0) 100%);
    font-family: "Inter", sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 54px;
    letter-spacing: -1.41px;
    color: #12141D;
    margin-bottom: 24px;
}

.contact-header p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.14px;
    text-align: center;
    color: #12141DCC;
}

.contact-card {
    max-width: 860px;
    margin: 0 auto;
    background: #FEFEFE;
    border-radius: 24px;
    padding: 40px 48px 48px;
}

.form-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -1.41px;
    color: #12141D;
    margin-bottom: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full {
    grid-column: span 2;
}

.form-field label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #12141D;
    margin-bottom: 6px;
}

.form-field.full label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #12141D;
    margin-bottom: 6px;
    margin-top: 22px;
    display: block;
}

.form-field label span {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #e11d48;
}

.form-field input {
    width: 100%;
    height: 40px;
    padding: 4px 3px 4px 12px;
    border-radius: 6px;
    border: 1px solid #E2E2E2;
    background: #FFFFFF;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    outline: none;
}

.form-field input::placeholder {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #12141D66;
    opacity: 1;
}


.custom-dropdown {
    position: relative;
}

.dropdown-header {
    height: 40px;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #E2E2E2;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dropdown-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #12141D;
}

.dropdown-input::placeholder {
    color: #12141D66;
}


.dropdown-icon {
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.dropdown-icon i {
    font-size: 12px;
    line-height: 1;
    color: #000;
    opacity: 1;
}


.icon-up {
    display: none;
}


.custom-dropdown.open .icon-down {
    display: none;
}

.custom-dropdown.open .icon-up {
    display: block;
}


.dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 160px;
    overflow-y: auto;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
    padding: 4px 0;
    margin: 0;
    display: none;
    z-index: 9999;
    list-style: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}


.dropdown-list li {
    padding: 8px 12px;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background: #F5F7FA;
}


.form-field.full textarea {
    height: 140px;
    padding: 12px 3px 4px 12px;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid #E2E2E2;
    background: #FFFFFF;
    resize: none;
    outline: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #12141D;
}


.form-field.full textarea::placeholder {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #12141D66;
    vertical-align: bottom;
    opacity: 1;
}


.dropdown-header .dropdown-input {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    height: 100%;
    box-shadow: none !important;
}



.send-message-btn:disabled {
    background: #9fb7c4;
    border: 1px solid #9fb7c4;
    cursor: not-allowed;
    opacity: 0.8;
}




.send-message-btn {
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    padding: 16px 32px;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(180deg, #043A53 0%, #245B74 100%);
    border: 1px solid #ffffff;
    border-radius: 200px;
    backdrop-filter: blur(13.4999px);
    cursor: pointer;
}




.demo-section {
    padding: 20px 0;
    background: #f8fbfd;
}

.demo-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: 420px;
}


.demo-left {
    flex: 1;
    text-align: left;
}


.demo-title-main {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.demo-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    max-width: 420px;
}


.demo-form {
    display: flex;
    align-items: stretch;
    max-width: 480px;
}

.demo-form-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
}

.demo-title {
    font-size: 18px;
    font-weight: 400;
    color: #12141D;
    margin: 0;
}


.demo-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.demo-input {
    height: 52px;
    padding: 0 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 15px;
}



.demo-error-msg {
    color: red;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
}

.demo-cta {
    height: 52px;
    padding: 0 26px;
    border: 1px solid #043A53;
    border-radius: 0 8px 8px 0;
    background: #043A53;
    color: white;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
}


.demo-right img {
    width: 100%;
    max-width: 600px;
    height: auto;
}








/* ================================
   CV Upload Section
================================ */
.hero-upload {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-upload input[type="file"] {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #D9E1E7;
    background: #FFFFFF;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #12141D;
}

.hero-upload input[type="file"]::file-selector-button {
    background: #F1F5F8;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 12px;
}

.cta-upload {
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #FEFEFE;
    background-color: #043A53;
    border: none;
    padding: 14px 28px;
    border-radius: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}


.cta-upload:hover {
    background-color: #052E42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 58, 83, 0.15);
}

.cta-upload:hover .cta-upload-icon {
    background-color: #FFFFFF;
    transform: translateX(4px);
}

.cta-upload:hover .cta-upload-icon i {
    color: #043A53;
}

.cta-upload-icon {
    width: 36px;
    height: 36px;
    background-color: #FEFEFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-upload-icon i {
    font-size: 14px;
    color: #043A53;
}



/* ================================
   Governance Badges Layout
================================ */
.compliance-badges {
    width: 100%;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.compliance-card {
    background: #10435B;
    border: 1px solid #FFFFFF47;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 140px;
}




.compliance-icon {
    width: 36px;
    height: 36px;
    background: #FEFEFE;
    color: #10435B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}


.compliance-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.compliance-card strong {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #FEFEFE;
}





.platform-demo-form-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 460px;
    margin-top: 24px;
    gap: 6px;
}


.platform-demo-form-connected {
    display: flex;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


.platform-demo-input-connected {
    flex: 1;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    font-family: 'Helvetica Neue', sans-serif;
    outline: none;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.platform-demo-input-connected::placeholder {
    color: #98a2b3;
}

.platform-demo-input-connected:focus {
    border-color: #043A53;
    box-shadow: 0 0 0 3px rgba(4, 58, 83, 0.08);
}


.platform-demo-button-connected {
    width: 60px;
    height: 52px;
    border: 1px solid #043A53;
    border-left: none;
    border-radius: 0 8px 8px 0;
    background: #043A53;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.platform-demo-button-connected i {
    font-size: 16px;
}

.platform-demo-button-connected:hover {
    background: #065072;
}

.platform-demo-button-connected:active {
    background: #032d3d;
    transform: translateY(1px);
}

.platform-demo-error {
    font-size: 12px;
    color: #d92d20;
    min-height: 14px;
}




.career-ref {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    width: fit-content;
}

.career-ref::before {
    font-weight: 500;
    color: #64748b;
    margin-right: 4px;
}

.ref-number {
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.5px;
}

.copy-icon {
    cursor: pointer;
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.copy-icon:hover {
    color: #0ea5e9;
}