/* ── Page offset ── */
        body {
            padding-top: var(--nav-h);
        }

        /* ══════════════════════════════════════════
           HERO
        ══════════════════════════════════════════ */
        .hero {
            padding: 64px 0 0;
            min-height: 780px;
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 360px 1fr;
            gap: 32px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            align-items: start;
        }

        /* Left: Candidate */
        .hero-left {
            padding-top: 8px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--c-light-aqua);
            color: #004F58;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .hero-badge-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-badge-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--c-pale-blue);
            color: #004786;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .hero-h1 , .hero-h1 > * {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(36px, 4vw, 52px);
            line-height: 1.05;
            color: var(--c-navy);
            margin-bottom: 20px;
        }

        .hero-h1 em {
            font-style: italic;
        }

        .hero-body {
            font-size: 16px;
            line-height: 1.65;
            color: var(--c-text);
            margin-bottom: 32px;
        }

        /* Search bar */
        .search-card {
            background: var(--c-white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            padding: 10px;
            border: 1px solid rgba(192, 199, 214, 0.15);
            position: sticky;
        }

        .hero-pills-card{
            background: var(--c-white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            padding: 10px;
            border: 1px solid rgba(192, 199, 214, 0.15);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: sticky;
        }

        .search-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 4px 16px;
            border-bottom: 1px solid rgba(192, 199, 214, 0.2);
            min-height: 46px;
            margin-bottom: 4px;
        }

        .search-row:nth-of-type(2n) {
            margin-bottom: 0;
            border-bottom: 0;
        }

        .search-row svg {
            color: var(--c-blue);
            flex-shrink: 0;
        }

        .search-row input {
            flex: 1;
            border: none;
            background: transparent;
            outline: none;
            font-size: 14px;
            color: var(--c-text-light);
        }

        .search-submit {
            display: flex;
            width: 85%;
            margin: 8px 32px 0 32px;
            background: var(--c-blue);
            color: var(--c-white);
            border-radius: var(--radius-xl);
            padding: 13px 24px;
            font-size: 14px;
            font-weight: 700;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: opacity .2s;
        }

        .search-submit:hover {
            opacity: .9;
        }

        /* Center: Image */
        .hero-center {
            position: relative;
            padding: 16px 16px 64px;
        }

        .hero-img-wrap {
            position: relative;
            z-index: 50;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            aspect-ratio: 3/4;
        }

        .hero-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-left .hero-img-wrap {
            display: none;
        !important;
        }

        .hero-floating-card {
            z-index: 100;
            position: relative;
            bottom: 40px;
            left: 65%;
            width: fit-content;
            transform: translateX(-50%);
            background: var(--c-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            max-width: 280px;
        }

        .hero-fc-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--c-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-fc-title {
            font-size: 12px;
            font-weight: 700;
            color: var(--c-navy);
            line-height: 1.3;
        }

        .hero-fc-sub {
            font-size: 10px;
            color: var(--c-text);
        }

        /* BG accents */
        .hero-acc1 {
            position: absolute;
            top: -38px;
            right: -40px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: radial-gradient(#6cebff61 40%, #00ffec00, var(--c-bg));
            pointer-events: none;
        }

        .hero-acc2 {
            position: absolute;
            bottom: 60px;
            left: -32px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: radial-gradient(#6cebff61 40%, #00ffec00, var(--c-bg));
            pointer-events: none;
        }

        /* Right: Employer */
        .hero-right {
            padding-top: 8px;
        }

        .hero-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-evenly;
        }

        .hero-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--c-bg-alt);
            border-radius: var(--radius-pill);
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 700;
            color: var(--c-navy);
            border: 1px solid rgba(192, 199, 214, 0.15);
        }

        .hero-pill svg {
            color: var(--c-blue);
        }

        /* ══════════════════════════════════════════
           BENEFITS
        ══════════════════════════════════════════ */
        .benefits {
            background: var(--c-bg-alt);
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
            padding: 100px 32px;
            /*margin-top: 80px;*/
        }

        .benefits-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 72px;
        }

        .benefits-h2 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(32px, 3.5vw, 48px);
            line-height: 1.05;
            color: var(--c-navy);
            margin-bottom: 20px;
        }

        .benefits-sub {
            font-size: 17px;
            line-height: 1.65;
            color: var(--c-text);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1216px;
            margin: 0 auto;
        }

        .benefit-card {
            background: var(--c-white);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            box-shadow: var(--shadow-xs);
        }

        .benefit-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-lg);
            background: hsla(208, 100%, 34%, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .benefit-card:nth-of-type(2n) .benefit-icon {
            background: hsla(187, 100%, 23%, 0.15);
        }


        .benefit-card:nth-of-type(2n+1) .benefit-icon {
            background: hsla(212, 57%, 38%, 0.15);
        }

        .benefit-icon svg {
            width: 24px;
            height: 24px;
            color: var(--c-blue);
        }

        .benefit-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 20px;
            color: var(--c-navy);
            margin-bottom: 12px;
        }

        .benefit-body {
            font-size: 15px;
            line-height: 1.65;
            color: var(--c-text);
        }

        /* ══════════════════════════════════════════
           APPROACH
        ══════════════════════════════════════════ */
        .approach {
            background: var(--c-bg);
            padding: var(--pad-section) 32px;
        }

        .approach-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1216px;
            margin: 0 auto;
            align-items: center;
        }

        .approach-img-wrap {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 8px solid var(--c-white);
            transform: rotate(-3deg);
            aspect-ratio: 1;
        }

        .approach-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .approach-img-wrap-mobile {
            display: none;
        }

        .approach-h2 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(28px, 3vw, 46px);
            line-height: 1.08;
            color: var(--c-navy);
            margin-bottom: 40px;
        }

        .approach-h2 em {
            font-style: italic;
            color: var(--c-blue);
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 36px;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step-num {
            font-family: var(--font-display);
            font-weight: 1000;
            font-size: 36px;
            color: hsla(208, 100%, 34%, 0.2);
            min-width: 52px;
            line-height: 1;
            flex-shrink: 0;
        }

        .step-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 17px;
            color: var(--c-navy);
            margin-bottom: 6px;
        }

        .step-body {
            font-size: 14px;
            line-height: 1.65;
            color: var(--c-text);
        }

        /* ══════════════════════════════════════════
           FEATURED JOBS
        ══════════════════════════════════════════ */
        .jobs {
            background: var(--c-navy);
            border-radius: 0 0 var(--radius-xl) var(--radius-xl);
            padding: var(--pad-section) 32px;
            overflow: hidden;
            position: relative;
        }

        .jobs::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 50%, rgba(0, 92, 172, 0.3) 0%, transparent 60%);
            pointer-events: none;
        }

        .jobs-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            max-width: 1216px;
            margin: 0 auto 48px;
        }

        .jobs-h2 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(28px, 3vw, 36px);
            color: var(--c-white);
            line-height: 1.1;
        }

        .jobs-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 6px;
        }

        .jobs-more {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: var(--c-white);
            transition: opacity .2s;
        }

        .jobs-more:hover {
            opacity: .75;
        }

        .bento {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 16px;
            max-width: 1216px;
            margin: 0 auto;
        }

        .bento-card {
            display: block;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-xl);
            backdrop-filter: blur(12px);
            padding: 36px;
            transition: background .2s;
            color: inherit;
            text-decoration: none;
            cursor: pointer;
        }

        .bento-1 {
            background: #001C37;
        }

        .bento-card:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .bento-1 {
            grid-column: 1;
            grid-row: 1 / 3;
        }

        .bento-2 {
            grid-column: 2;
            grid-row: 1;
        }

        .bento-3 {
            grid-column: 2;
            grid-row: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            padding: 0;
            background: none;
            border: none;
            backdrop-filter: none;
        }

        .bento-3-inner {
            display: block;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-xl);
            backdrop-filter: blur(12px);
            padding: 36px;
            text-align: center;
            transition: background .2s;
            color: inherit;
            text-decoration: none;
            cursor: pointer;
        }

        .bento-3-inner:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .bento-job-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .bento-job-icon svg {
            color: var(--c-white);
        }

        .bento-badge {
            display: inline-block;
            background: var(--c-teal-dark);
            color: var(--c-white);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .bento-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 24px;
            color: var(--c-white);
            margin-bottom: 8px;
        }

        .bento-meta {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 32px;
        }

        .bento-title-sm {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 19px;
            color: var(--c-white);
            margin-bottom: 6px;
        }

        .bento-meta-sm {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
        }

        .bento-arrow {
            color: rgba(255, 255, 255, 0.5);
        }

        .bento-2-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .bento-icon-sm {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            /*background: rgba(255, 255, 255, 0.12);*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }

        .bento-icon-sm svg {
            color: var(--c-teal);
        }

        .bento-loc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 4px;
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-center {
                display: none;
            }

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

            .approach-inner {
                grid-template-columns: 1fr;
            }

            .approach-img-wrap {
                transform: none;
                max-height: 360px;
            }

            .bento {
                grid-template-columns: 1fr;
            }

            .bento-1 {
                grid-column: 1;
                grid-row: auto;
            }

            .bento-2 {
                grid-column: 1;
                grid-row: auto;
            }

            .bento-3 {
                grid-column: 1;
                grid-row: auto;
            }
        }

        @media (min-width: 600px) {
            .bg-circle {
                display: none;
            }
            .nav-hamburger{
                display: none;
            }
        }

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

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-left p {
                display: none;
            }

            .hero-left .hero-img-wrap {
                display: block;
                position: sticky;
                margin-bottom: -30px;
                z-index: -10;
            }

            .hero-right .hero-body, .hero-right .hero-pills {
                display: none;
            }

            .hero-center {
                display: none;
            }

            .hero-left .hero-h1 {
                text-align: center;
            }

            .hero-right {
                background-color: var(--c-bg-alt);
                border-radius: var(--radius-xl);
                padding: 34px 21px;
            }

            .btn-dark {
                padding: 11px 21px;
                font-size: 14px;
            }

            .bg-circle {
                position: absolute;
                bottom: -8px;
                left: 32px;
                overflow: hidden;
                border-radius: 0 0 0 65px;
            }

            .hero-h1 {
                font-size: 22px;
            }

            .benefits {
                background: 0;
            }

            .bento-3 {
                grid-template-columns: 1fr;
            }

            .nav-actions .second-btn {
                display: none;
            }

            .benefits {
                padding-bottom: 0px;
            }

            .benefits .benefits-sub {
                display: none;
            }

            .benefits-grid {
                gap: 0;
            !important;
            }

            .benefits-grid .benefit-card {
                justify-items: center;
                text-align: center;
            }

            .benefits-h2 {
                font-size: 24px;
            }

            .benefit-card {
                padding: 14px;
                margin: 10px 0px;
            }

            .benefit-body {
                font-size: 14px;
                padding: 0px 14px;
            }

            .benefit-title {
                font-size: 19px;
            }

            .approach {
                background-color: var(--c-bg-alt);
            }

            .approach-img-wrap {
                display: none;
            }

            .approach-inner {
                gap: 0;
            }

            .approach-h2 {
                text-align: center;
            }

            .approach-img-wrap-mobile {
                display: block;
                border-radius: var(--radius-xl);
                overflow: hidden;
                box-shadow: var(--shadow-lg);
                margin-bottom: 40px;
            }

            .hero-left .hero-badge {
                text-align: center;
                background-color: hsla(208, 100%, 34%, 0.05);;
                color: var(--c-blue);
            }

            .hero-right .hero-badge-light {
                text-align: center;
                color: var(--c-teal-dark);
                background-color: transparent;
            }

            .search-card {
                border-radius: 25px;
                padding: 14px;
            }

            .search-row {
                margin: 14px 0px;
                background: hsla(212, 57%, 38%, 0.15);
                border-radius: 50px;
                border-bottom: 0;
            }

            .search-submit {
                margin: 15px 0px;
                width: 100%;
            }
            .jobs-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .jobs-header a{
                margin: 10px 0;
            }
        }

        /* ══════════════════════════════════════════
           CONTACT POPUP
        ══════════════════════════════════════════ */
        .contact-popup {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 300px;
            background: linear-gradient(var(--c-blue) 0%, var(--c-blue-mid) 100%);
            color: var(--c-white);
            border-radius: var(--radius-xl);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transform: translateY(16px);
            transition: opacity .3s ease, transform .3s ease;
        }

        .contact-popup.visible {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        .contact-popup-close {
            position: absolute;
            top: 25px;
            right: 30px;
            background: none;
            border: none;
            color: rgba(255, 255, 255, .45);
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            padding: 0;
            transition: color .15s;
        }

        .contact-popup-close:hover {
            color: var(--c-white);
        }

        .contact-section {
            padding: 24px;
        }

        .contact-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 22px;
            color: var(--c-white);
            margin-bottom: 12px;
        }

        .contact-info {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, .75);
            margin-bottom: 8px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding-top: 16px;
            margin-top: 8px;
        }

        .contact-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .contact-item-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .contact-item-img {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
        }

        .contact-item-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .contact-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 2px;
        }

        .contact-value {
            font-size: 14px;
            font-weight: 600;
        }

        .contact-value a {
            color: var(--c-white);
            text-decoration: none;
        }

        .contact-value a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .contact-popup {
                right: 12px;
                bottom: 12px;
                width: calc(100% - 24px);
            }
        }
