
:root {
    --color-accent: #1E49E2;
    --color-accent-secondary: #63ebda;
    --color-accent-tertiary: #7213EA;
    --color-background: #F5F6FA;
    --color-background-secondary: #00338D;
    --color-text: #333333;
    --color-white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* fallback; overridden by JS */
}

body {
    margin: 0 auto;
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    color: var(--color-text);
    font-size: 18px;
    line-height: 28px;
}

h1 {
    font-family: "Open Sans Condensed", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
}

h2 {
    font-family: "Open Sans Condensed", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: var(--color-text);
    margin: 0px;
}

/* ═══════════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════════════ */

.container {
    max-width: 1046px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0px 22px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background-color: #1a3ec0;
}

.btn--white {
    background-color: var(--color-white);
    color: var(--color-accent);
    border-color: var(--color-white);
    display: inline-flex;
    width: fit-content;
    justify-content: center;
    gap: 20px;
}

.btn--white svg * {
    fill: var(--color-accent);
}

.btn--white:hover {
    background-color: var(--color-background);
    border-color: var(--color-background);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn--outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn--secondary:hover {
    background-color: var(--color-background);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 50%;
}

.btn-icon:hover {
    background-color: var(--color-white);
}

/* ═══════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 80px;
    margin-left: 7rem;
    margin-right: 7rem;
}

.header-logo {
    display: block;
    height: 32px;
    width: auto;
    margin-right: 2.5rem;
    margin-left: .5rem;
}

/* Centered positioned wrapper for nav + job title */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1046px;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.header-nav {
    flex: 1;
    transition: opacity 0.2s, visibility 0.2s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: auto;
}

.header-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    height: 100%;
}

.header-nav ul li {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-nav a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.2s;
    height: 100%;
    border-bottom: solid 4px transparent;
}

.header-nav a:hover {
    border-color: var(--color-accent-secondary);
}

/* Job title shown in header after scrolling past hero h1 */
.header-job-title {
    position: absolute;
    left: 0;
    margin: 0;
    color: var(--color-text);
    font-family: "Open Sans Condensed", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 24px;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}

/* Scrolled state: hide nav, show job title + burger */
.site-header.header--scrolled .header-nav {
    opacity: 0;
    visibility: hidden;
}

.site-header.header--scrolled .header-job-title {
    opacity: 1;
    visibility: visible;
}

/* Burger hidden by default, shown only when scrolled */
.btn-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.site-header.header--scrolled .btn-menu {
    opacity: 1;
    visibility: visible;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.header-actions .btn-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    border: 1px solid var(--color-accent)
}

/* ═══════════════════════════════════════════════
   MOBILE NAV OVERLAY
════════════════════════════════════════════════ */

body.nav-open {
    overflow: hidden;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    justify-content: flex-end;
    animation: navFadeIn 0.3s ease;
}

.mobile-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

@keyframes navFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 320px;
    max-width: 85vw;
    background-color: var(--color-white);
    color: #00338d;
    padding: 24px 112px 40px 24px;
    padding-top: 0;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    border-left: 3px solid #63ebda;
}

.mobile-nav-close {
    position: fixed;
    right: 112px;
    top: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--color-accent);
    color: var(--color-text);
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
    z-index: 201;
}

.mobile-nav-close:hover {
    background-color: var(--color-white);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    margin-top: 96px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.15s;
}

.mobile-nav-item:hover {
    background-color: rgba(30, 73, 226, .08);
    color: var(--color-background-secondary);
}

.mobile-nav-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */

.hero {
    position: relative;
    background-color: var(--color-accent);
    min-height: 360px;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: 360px;
    max-width: 1046px;
    margin: 0 auto;
    height: 100%;
}

.hero-content {
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    max-width: 498px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background-color: var(--color-background-secondary);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 56px;
    color: var(--color-white);
    margin: 0px;
}

.hero-meta {
    list-style: none;
    margin: 0px;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 8px 40px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
}

.hero-meta-item svg {
    flex-shrink: 0;
    color: var(--color-white);    
}

.hero-meta-item > svg {
    position: relative;
    top: 5px;
}

.hero-meta-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    text-decoration: none;
}

.hero-meta-link:hover {
    text-decoration: underline;
}

.hero-content .btn {
    background-color: var(--color-white);
    justify-content: center;
    color: var(--color-accent);
    max-width: 402px;
}

.hero-content .btn:hover {
     background-color: #1a3ec0;
     color: var(--color-white);
}

.hero-content p {
    color: var(--color-white);
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
}

/* Hidden until JS truncation runs, prevents flash of full text */
.intro-teaser {
    visibility: hidden;
}

.intro-teaser.js-ready {
    visibility: visible;
}

.intro-teaser-wrapper {
    position: relative;
    display: block;
}

.intro-teaser.is-truncated {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding-right: 28px;
}

.intro-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-white);
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
    outline: none;
}

.intro-expand-btn:hover {
    background-color: var(--color-accent);
    transform: scale(1.1);
    color:var(--color-white);
}

.intro-expand-btn:focus {
    outline: none;
}

.intro-expand-btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

.intro-expand-btn:active {
    transform: none;
    background-color: var(--color-white);
    color: var(--color-accent);
}

.intro-tooltip {
    position: fixed;
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    transform: translateY(-50%);
    width: 300px;
    max-width: calc(100vw - 24px);
}

.intro-tooltip.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 1025px) {
    .intro-tooltip::before {
        content: '';
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        border: 8px solid transparent;
        border-right-color: var(--color-white);
    }
}

/* Ad text 58 info bubble */
.hero-meta-city-text {
    /* becomes a flex item inside .hero-meta-item;
       its children (links + button) flow as inline content */
}

.ad58-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 6px;
    margin-top: -4px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
    outline: none;
}

.ad58-info-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.ad58-info-btn:focus {
    outline: none;
}

.ad58-info-btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
    border-radius: 50%;
}

.ad58-info-btn:active {
    transform: none;
    opacity: 0.85;
}

.ad58-info-tooltip {
    position: fixed;
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    transform: translateY(-50%);
    width: 300px;
    max-width: calc(100vw - 24px);
}

.ad58-info-tooltip.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 1025px) {
    .ad58-info-tooltip::before {
        content: '';
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        border: 8px solid transparent;
        border-right-color: var(--color-white);
    }
}

/* Right-aligned 2/3-width image */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 66.666%;
    z-index: 1;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

/* Gradient overlay: accent on the left fading to transparent */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, var(--color-accent) 0%, transparent 55%);
}

/* ═══════════════════════════════════════════════
   JOB DETAILS
════════════════════════════════════════════════ */

.job-details {
    position: relative;
    background-color: var(--color-white);
    padding: 80px 0;
    border-top: 1px solid var(--color-background);
}

.job-details-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.job-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.job-column ul {
    padding-left: 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-column li {
    list-style-type: none;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.job-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   CONTACT FORM MODAL
════════════════════════════════════════════════ */

body.contact-modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-modal[hidden] {
    display: none;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.contact-modal-panel {
    position: relative;
    z-index: 1;
    background-color: var(--color-white);
    width: 100%;
    max-width: 520px;
    height: 100%;
    overflow-y: auto;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

@keyframes slideOutRight {
    from { transform: translateX(0); }
    to   { transform: translateX(100%); }
}

.contact-modal-panel.is-closing,
.share-drawer-panel.is-closing {
    animation: slideOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-modal-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 4px;
    margin-bottom: 24px;
    line-height: 1;
    transition: opacity 0.2s;
}

.contact-modal-close:hover {
    opacity: 0.6;
}

.contact-form h3 {
    font-size: 24px;
    font-family: "Open Sans Condensed", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 32px;
    line-height: 1.5;
}

.required-mark {
    color: var(--color-accent);
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.contact-form-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(30, 73, 226, 0.12);
}

.contact-form-field input:invalid:not(:placeholder-shown),
.contact-form-field select:invalid:not(:placeholder-shown),
.contact-form-field textarea:invalid:not(:placeholder-shown) {
    border-color: #d32f2f;
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.contact-form-confirmation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 16px;
    flex: 1;
    padding: 40px 0;
}

.contact-form-confirmation[hidden] {
    display: none;
}

.contact-form-confirmation svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-form-confirmation h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--color-text);
}

.contact-form-confirmation p {
    font-size: 16px;
    color: var(--color-text);
    margin: 0;
    line-height: 1.6;
}

@media screen and (max-width: 560px) {
    .contact-modal-panel {
        max-width: 100%;
        padding: 32px 20px 40px;
    }

    .contact-form-actions {
        flex-direction: column;
    }

    .contact-form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.help-btn {
    border: none;
    cursor: pointer;
    position: fixed;
    right: 80px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(30, 73, 226, 0.35);
    transition: background-color 0.2s;
    z-index: 50;
}

.help-btn:hover {
    background-color: #1a3ec0;
}

/* ── Share drawer ── */
body.share-drawer-open {
    overflow: hidden;
}

.share-drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.share-drawer[hidden] {
    display: none;
}

.share-drawer-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.share-drawer-panel {
    position: relative;
    z-index: 1;
    background-color: var(--color-background-secondary);
    width: 100%;
    max-width: 360px;
    height: 100%;
    overflow-y: auto;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    padding: 4px;
    margin-bottom: 24px;
    line-height: 1;
    transition: opacity 0.2s;
}

.share-drawer-close:hover {
    opacity: 0.6;
}

.share-drawer-panel h3 {
    font-size: 24px;
    font-family: "Open Sans Condensed", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 24px;
}

.share-drawer-icons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 40px;
}

.share-drawer-icons .btn-icon {
    justify-content: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

.share-drawer-icons .btn-icon:last-child {
    border-bottom: none;
}

/* suppress inherited white bg-flash on hover */
.share-drawer-icons .btn-icon:hover {
    background-color: transparent;
}

.share-drawer-icons .btn-icon:hover svg [stroke="white"] {
    stroke: var(--color-accent-secondary);
    transition: stroke 0.15s;
}

.share-drawer-icons .btn-icon:hover svg [fill="white"] {
    fill: var(--color-accent-secondary);
    transition: fill 0.15s;
}

@media screen and (max-width: 560px) {
    .share-drawer-panel {
        max-width: 100%;
        padding: 32px 20px 40px;
    }
}

/* ═══════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════════ */

.benefits-section {
    background-color: var(--color-background);
    padding: 80px 0;
}

.benefits-section .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefits-carousel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: -24px;
    margin-right: -24px;
}

.benefits-carousel .slick-track {
    display: flex !important;
}

.benefits-carousel .slick-slide {
    display: flex !important;
    flex-direction: column;
}

.benefits-carousel .slick-slide > div {
    display: flex;
    flex-direction: column;
}

/* Disable hover on the partially-visible peek slide */
.benefits-carousel .slick-slide:not(.slick-active) {
    pointer-events: none;
}

.slick-list {
    padding-right: calc(100% / 5) !important;
}

.benefits-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
}

@keyframes blue-wave {
    0%   { opacity: 0; transform: translateX(-100%); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

.benefit-card {
    background-color: var(--color-background-secondary);
    color: var(--color-white);
    padding: 64px 0;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    margin: 0 24px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
}

/* Blue shimmer wave overlay */
.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(99, 235, 218, 0.18) 50%,
        rgba(30, 73, 226, 0.22) 60%,
        transparent 75%
    );
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.benefit-card:not(.is-open):hover::after {
    animation: blue-wave 0.85s ease-in-out forwards;
}

.benefit-card.is-open {
    background-color: var(--color-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card.is-open::after {
    display: none;
}

.benefit-card .icon-wrap {
    padding-left: 36px;
    border-left: solid 4px var(--color-accent-secondary);
    display: flex;
    flex-direction: row!important;
    align-items: center;
    gap: 24px;
}

.benefit-icon-body b, .benefit-icon-body p, .benefit-icon-body a {
    display: none;
}

.benefit-card .icon {
    width: 60px;
    height: 60px;
    border: solid 1px rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.45s ease;
    flex-shrink: 0;
}

.benefit-card.is-open .icon {
    border-color: var(--color-accent);
}

.benefit-card img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(82%) sepia(7%) saturate(1195%) hue-rotate(184deg) brightness(102%) contrast(101%);
    transition: filter 0.45s ease;
}

.benefit-card.is-open img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(91%) saturate(1200%) hue-rotate(214deg) brightness(95%) contrast(98%);
}

/* Body: b always visible, .benefit-card-body-text collapses to 0 */
.benefit-card-body {
    padding: 0 40px 0 40px;
}

.benefit-card.is-open .benefit-card-body {
    border-color: transparent;
}

.benefit-card-body-text {
    height: 0;
    overflow: hidden;
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-body b {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    padding-bottom: 24px;
    line-height: 1.3;
    transition: color 0.45s ease;
}

.benefit-card.is-open .benefit-card-body b {
    color: var(--color-text);
}

.benefit-card-body p {
    font-size: 16px;
    margin: 0;
    color: var(--color-text)
}

.benefit-card-body a {
    display: block;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    padding-bottom: 16px;
    font-size: 16px;
}

.benefit-card-body a:hover {
    text-decoration: underline;
}

/* ── Benefits nav (Slick arrows + dots) ── */
.benefits-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 24px;
    margin-right: -24px;
}

.benefits-nav .slick-prev,
.benefits-nav .slick-next {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    position: static !important;
    transform: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.benefits-nav .slick-prev { order: 1; }
.benefits-nav .slick-dots { order: 2; }
.benefits-nav .slick-next { order: 3; }

.benefits-nav .slick-prev::before,
.benefits-nav .slick-next::before {
    display: none;
}

.benefits-nav .slick-prev:hover,
.benefits-nav .slick-next:hover {
    border-color: var(--color-background-secondary);
    color: var(--color-background-secondary);
}

.benefits-nav .slick-prev.slick-disabled,
.benefits-nav .slick-next.slick-disabled {
    opacity: 0.4;
    cursor: default;
}

.benefits-nav .slick-dots {
    position: static !important;
    display: flex !important;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    bottom: auto;
}

.benefits-nav .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0;
    position: relative;
}

.benefits-nav .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: #c8cfe0;
    border: none;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    transition: background-color 0.2s;
    position: absolute;
}

.benefits-nav .slick-dots li button::before {
    display: none;
}

.benefits-nav .slick-dots li.slick-active button {
    background: var(--color-accent);
    width: 12px;
    height: 12px;
    top: -2px;
}

/* ═══════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════ */

.cta-banner {
    background-color: var(--color-background-secondary);
    color: var(--color-white);
    padding: 80px 0px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
}

.cta-banner h2 {
    color: var(--color-white);
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.cta-actions .btn {
    box-sizing: border-box;
    min-width: 380px;
    justify-content: center;
    max-width: 402px;
}

.social-share {
    display: flex;
    gap: 24px;
}

.social-share .btn-icon:hover {
    background-color: transparent;
}

.social-share .btn-icon:hover svg [stroke="white"] {
    stroke: var(--color-accent-secondary);
    transition: stroke 0.15s;
}

.social-share .btn-icon:hover svg [fill="white"] {
    fill: var(--color-accent-secondary);
    transition: fill 0.15s;
}

/* ═══════════════════════════════════════════════
   ABOUT KPMG
════════════════════════════════════════════════ */

.about-section {
    background-color: var(--color-white);
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-content {
    max-width: 1046px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 24px;
}

.about-content p {
    margin: 0px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.stat-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.stat-item span {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1;
}

.stat-item span .number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 8px;
}

.video-wrapper video-js.vjs-fluid {
    width: 100%;
}

/* Force poster to cover full player area instead of contain (default) */
.video-wrapper .vjs-poster {
    background-size: cover;
}

/* Big play button: 60x60px */
.video-wrapper .vjs-big-play-button {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 50%;
    font-size: 24px;
}

.about-content .btn.btn--primary {
    display: inline-flex;
    width: fit-content;
    justify-content: center;
    gap: 20px;
}

/* ═══════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */

.contact-section {
    background-color: var(--color-background);
    padding: 80px 0 0px;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;    
}

.contact-card {
    background-color: var(--color-white);
    min-height: 506px;
    overflow: hidden;  
    position: relative;
    border: 1px solid #e4e7f0; 
}

.contact-card:nth-of-type(2) {
    border-left: none;
}

.contact-card-image img {
    display: block;
    width: 100%;
    height: 258px;
    object-fit: cover;
}

.contact-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;    
}

.contact-card-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0 -40px;
    padding-left: 36px;
    border-left: solid 4px var(--color-accent-secondary);
}

.contact-phone  {
    margin: 0px;
}

.contact-phone span {
    font-weight: 600;
}

.contact-title {
    margin:0px;
}

.contact-recruiter-phone {
    display: none;
}

.link-maps {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    margin-top: 24px;
}

.link-maps:hover {
    color: var(--color-background-secondary)
}

.link-maps:hover svg * {
    fill: var(--color-background-secondary);
}

.contact-social {
    display: flex;
    gap: 24px;
    position: absolute;
    bottom: 40px;
}

.contact-social .btn-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.contact-social .btn-icon:hover {
    border-color: var(--color-background-secondary);
}

.contact-social .btn-icon:hover svg * {
    fill: var(--color-background-secondary);
}

.jobabo-section {
    padding: 80px 0px;    
}

.jobabo-section .container {
    display: flex;
    flex-direction: column;    
    gap: 40px;
}

.jobabo-section .btn.btn--primary {
    display: inline-flex;
    width: fit-content;
    justify-content: center;
    gap: 20px;
}

/* ═══════════════════════════════════════════════
   SIMILAR JOBS
════════════════════════════════════════════════ */

.similar-jobs {
    padding: 0 0 80px;
}

.similar-jobs .container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.similar-jobs h2 {
    color: var(--color-white);
}

.similar-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.similar-job-card {
    border: 1px solid var(--color-white);
    border-radius: 12px;
    padding: 48px 24px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
}

.similar-job-card:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background-color: rgba(255, 255, 255, 0.06);
}

.similar-job-card h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--color-white);
}

.similar-job-card p {
    color: var(--color-white);
    margin: 0;
}

.similar-job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top:16px;
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--color-white);
    font-size: 16px;
    color: var(--color-white);
    background-color: transparent;
}

/* ═══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */

.footer {
    background-color: var(--color-background-secondary);
    padding: 160px 0px 80px;
    margin-top: -80px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
    max-width: 1270px;
}

.footer-logo img {
    height: 28px;
    width: auto;
    display: block;
}

.footer-nav {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.footer-nav a {
    font-size: 12px;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-accent-secondary);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social .btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
}

.footer-social .btn-icon svg * {
    fill: var(--color-white);
    transition: fill 0.2s, stroke 0.2s;
}

.footer-social .btn-icon:hover {
    background-color: rgba(12,35,60,.32)!important;
    border-color: var(--color-accent-secondary);
}

.footer-social .btn-icon:hover svg * {
    fill: var(--color-accent-secondary);
}

.footer-copyright {
    font-size: 12px;
    line-height: 18px;
    color: var(--color-white);
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.footer-copyright a {
    color: var(--color-white);
}

.footer-copyright a:hover {
    color: var(--color-accent-secondary);
    text-decoration: underline;
}


/* ═══════════════════════════════════════════════
   MEDIA QUERIES
════════════════════════════════════════════════ */

@media screen and (max-width: 1550px) {
    .header-inner {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .mobile-nav-close {
        right: 2rem;
    }

    .site-header.header--scrolled .btn-menu {
        margin-right: 0;
    }
}

/* ── Mobile nav breakpoint: burger always visible, desktop nav always hidden ── */
@media screen and (max-width: 1374px) {
    .header-inner {
        margin-left: 24px;
        margin-right: 24px;
    }

    .mobile-nav-inner {
        padding-left: 16px;
        padding-right: 24px;
    }

    .mobile-nav-close {
        right: 24px;
    }

    .btn-menu {
        margin-right: 0;
    }
    .header-nav {
        opacity: 0;
        visibility: hidden;
    }

    .btn-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-actions {
        gap: 16px;
    }

    .header-center {
        display: none!important;
    }
}

@media screen and (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        padding: 48px 0 0;
    }

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

    .contact-card:nth-of-type(1) {
        border-right: none;
        border-bottom: 1px solid #e4e7f0;
    }

    .contact-card-image img {
        height: auto;
    }

    .contact-social {
        position: static;
        margin-top: 8px;
    }
    .mobile-nav-inner {
        padding-right: 16px;
    }

    .mobile-nav-close {
        right: 16px;
        top: 8px;
    }
}

@media screen and (max-width: 1024px) {
    /* ── Typography ── */
    h2 {
        font-size: 32px;
        line-height: 40px;
    }

    body {
        font-size: 16px;
        line-height: 26px;
    }

    /* ── Header ── */
    .header-logo {
        margin-right: 0.5rem;
    }

    .btn-icon.btn-share {
        display: none;
    }

    .header-inner {
        margin-left: 0;
        margin-right: 0;
        padding: 0 16px;
        height: 64px;
    }

    .header-actions {
        gap: 16px;
    }

    /* ── Hero ── */
    /* Make .hero itself a flex column so .hero-image (sibling of .hero-inner) can be reordered */
    .hero {
        min-height: auto;
        max-height: none;
        overflow: visible;
        background-color: transparent;
        display: flex;
        flex-direction: column;
    }

    /* Image comes first visually — it's a direct child of .hero */
    .hero-image {
        order: 0;
        position: relative;
        width: 100%;
        height: 200px;
        top: auto;
        right: auto;
        bottom: auto;
        z-index: 1;
    }

    /* Content block comes second */
    .hero-inner {
        order: 1;
        flex-direction: column;
        min-height: auto;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Gradient fades image right edge into the blue block below */
    .hero-overlay {
        display: block;
        background: linear-gradient(to left, transparent 30%, var(--color-background-secondary) 100%);
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 32px 24px 40px;
        background-color: var(--color-background-secondary);
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 8px 24px;
    }

    .hero-content .btn {
        width: auto;
        justify-content: center;
    }

    /* ── Job Details ── */
    .job-details {
        padding: 48px 0;
    }

    .job-details-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ── Benefits ── */
    .benefits-section {
        padding: 48px 0;
    }

    .slick-list {
        padding-right: 25% !important;
    }

    /* Re-enable pointer-events on non-active slides so touch-swipe works */
    .benefits-section .container {
        gap: 16px;
    }

    .benefits-carousel .slick-slide:not(.slick-active) {
        pointer-events: auto;
    }

    .benefits-nav {
        padding-top: 0px;
        margin-right: 0;
    }

    .benefit-card {
        margin: 0 10px;
        padding: 32px 0;
        height: auto;
    }

    /* ── CTA ── */
    .cta-banner {
        padding: 48px 0;
    }

    .cta-inner {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .cta-actions .btn {
        min-width: 0;
        width: 100%;
    }

    .social-share {
        justify-content: center;
    }

    .social-share .btn-icon svg {
        width: 30px;
        height: 30px;
    }

    .benefits-nav .slick-prev, .benefits-nav .slick-next {
        width: 32px;
        height: 32px;
    }

    /* ── About ── */
    .about-section {
        padding: 48px 0;
        gap: 40px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 100%;
        margin: 0px;
    }

    .about-content {
        gap: 40px;
        padding: 0 24px;
    }

    .stats-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .stat-item img {
        width: 40px;
        height: 40px;
    }

    .stat-item span .number {
        font-size: 18px;
        line-height: 24px;
    }

    /* ── Help button position ── */
    .help-btn {
        right: 16px;
        bottom: 16px;
    }

    /* ── Similar jobs ── */
    .similar-jobs {
        padding: 0 0 48px;
    }

    .similar-jobs .container {
        gap: 40px;
    }

    /* ── Footer ── */
    .footer {
        padding: 80px 0 40px;
        margin-top: -48px;
    }

    .footer-nav {
        gap: 24px;
        margin-bottom: 0;
    }

    .footer-social .btn-icon {
        width: 32px;
        height: 32px;
    }
}
