:root {
    --blue: #2f4a99;
    --blue-dark: #17336f;
    --blue-bright: #1267df;
    --gold: #e5ad32;
    --dark: #05070b;
    --anthracite: #111827;
    --text: #1f2937;
    --muted: #667085;
    --white: #ffffff;
    --border: rgba(17, 24, 39, 0.12);
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    --radius: 18px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
}

.header-container {
    width: min(100%, var(--container));
    min-height: 96px;
    height: auto;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-img {
    display: block;
    width: auto;
    height: 86px;
    max-height: 100px;
    object-fit: contain;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    border: 0;
    background: transparent;
    padding: 22px 0;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-arrow,
.mobile-dropdown.is-open .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 290px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 24, 39, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: 0.2s ease;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.dropdown-menu a:hover {
    background: #f3f6ff;
    color: var(--blue);
}

.header-cta {
    flex-shrink: 0;
    padding: 12px 25px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(47, 74, 153, 0.25);
    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: #111827;
    transition: 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}


/* Hero */
.career-hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #101a3a;
}

.career-hero-bg {
    position: absolute;
    inset: 0 0 220px 0;
    z-index: 1;
}

.career-hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center right;
}

.career-hero-overlay {
    position: absolute;
    inset: 0 auto 220px 0;
    width: 60%;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.7) 90%,
            rgba(255, 255, 255, 0) 100%);
}

.career-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    min-height: 640px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.career-hero-content {
    max-width: 520px;
    padding: 74px 0 88px;
}

.career-hero-content h1 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    color: #05070b;
}

.career-hero-content h1 span {
    color: #2f4a99;
}

.career-hero-line {
    width: 70px;
    height: 3px;
    margin: 28px 0 26px;
    border-radius: 999px;
    background: #2f4a99;
}

.career-hero-content h2 {
    max-width: 440px;
    margin: 0 0 30px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #05070b;
}

.career-hero-content p {
    max-width: 510px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 400;
    color: #1f2937;
}

.career-hero-actions {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.career-hero-button {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 850;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.career-hero-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.career-hero-button-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(47, 74, 153, 0.26);
}

.career-hero-button-primary:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 20px 44px rgba(47, 74, 153, 0.34);
}

.career-hero-button-secondary {
    background: #ffffff;
    color: #101827;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
}

.career-hero-button-secondary:hover {
    transform: translateY(-2px);
    color: #2f4a99;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.12);
}

.career-hero-contact {
    position: absolute;
    right: 20px;
    bottom: 38px;
    width: min(100%, 400px);
    padding: 30px 30px 28px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(16, 24, 40, 0.18);
}

.career-hero-contact h3 {
    margin: 0 0 14px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: #05070b;
}

.career-hero-contact p {
    margin: 0 0 24px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 400;
    color: #687894;
}

.career-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.career-contact-item {
    padding: 15px 16px;
    border-radius: 10px;
    background: #f4f6fa;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    text-decoration: none;
}

.career-contact-item>div {
    min-width: 0;
}

.career-contact-item strong {
    display: block;
    overflow-wrap: anywhere;
}

.career-contact-item span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #ffffff;
    display: grid;
    place-items: center;
    color: #d8a132;
}

.career-contact-item svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.career-contact-item small {
    display: block;
    margin-bottom: 4px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8c98ad;
}

.career-contact-item strong {
    display: block;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
    color: #2f4a99;
}

.career-benefits-wrap {
    position: relative;
    z-index: 4;
    background: #06182d;
}

.career-benefits {
    width: 100%;
    max-width: var(--container);
    min-height: 220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.career-benefit {
    padding: 38px 34px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.career-benefit:last-child {
    border-right: 0;
}

.career-benefit-icon {
    height: 48px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    color: #d8a132;
}

.career-benefit-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.career-benefit-icon-outline svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.career-benefit h3 {
    max-width: 150px;
    margin: 0 auto 10px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: #ffffff;
}

.career-benefit p {
    max-width: 145px;
    margin: 0 auto;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
}


/* Looking Section */
.career-looking-section {
    background: #ffffff;
    padding: 86px 0 78px;
}

.career-looking-container {
    width: min(100% - 40px, 880px);
    margin: 0 auto;
    text-align: center;
}

.career-looking-container h2 {
    margin: 0 0 28px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.05em;
    color: #101827;
}

.career-looking-container p {
    margin: 0 auto;
    max-width: 860px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 21px;
    line-height: 1.65;
    font-weight: 400;
    color: #52627d;
}


/* Areas Section */
.career-areas-section {
    background: #f5f8fc;
    padding: 76px 0 86px;
}

.career-areas-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.career-areas-container h2 {
    margin: 0 0 64px;
    text-align: center;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.055em;
    color: #101827;
}

.career-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 30px;
}

.career-area-card {
    min-height: 250px;
    padding: 34px 36px 34px;
    border: 1px solid #e5ebf5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.045);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.career-area-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 74, 153, 0.22);
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.career-area-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    border-radius: 12px;
    background: #eaf1ff;
    display: grid;
    place-items: center;
    color: #2f4a99;
}

.career-area-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.career-area-card h3 {
    margin: 0 0 18px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #101827;
}

.career-area-card p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: #52627d;
}

.career-area-apply-card {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 36px;
}

.career-area-apply-card h3 {
    margin-bottom: 18px;
}

.career-area-apply-card p {
    max-width: 310px;
    margin: 0 auto 30px;
}

.career-area-apply-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 850;
    color: #2f4a99;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.career-area-apply-card a:hover {
    transform: translateX(3px);
    color: #17336f;
}

.career-area-apply-card a svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Profile Section */
.career-profile-section {
    background: #ffffff;
    padding: 76px 0 86px;
}

.career-profile-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.career-profile-heading {
    margin: 0 auto 70px;
    text-align: center;
}

.career-profile-heading h2 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -0.055em;
    color: #101a3a;
}

.career-profile-heading span {
    display: block;
    width: 78px;
    height: 5px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: #2f4a99;
}

.career-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 28px;
}

.career-profile-item {
    min-height: 100px;
    padding: 24px 34px 24px 28px;
    border: 1px solid #d7dfec;
    border-radius: 15px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 28px;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.career-profile-item:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 74, 153, 0.28);
    box-shadow: 0 16px 38px rgba(16, 24, 40, 0.07);
}

.career-profile-item-center {
    grid-column: 1 / -1;
    width: calc((100% - 28px) / 2);
    margin: 0 auto;
}

.career-profile-number {
    width: 50px;
    height: 50px;
    border: 1px solid #d7dfec;
    border-radius: 999px;
    background: #ffffff;
    display: grid;
    place-items: center;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1;
    font-weight: 850;
    color: #2f4a99;
}

.career-profile-item p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 650;
    color: #2f3645;
}


/* Qualification Section */
.career-qualification-section {
    background: #f5f8fc;
    padding: 72px 0 78px;
}

.career-qualification-container {
    width: min(100% - 40px, 820px);
    margin: 0 auto;
    text-align: center;
}

.career-qualification-container h2 {
    margin: 0 0 26px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #101827;
}

.career-qualification-container p {
    margin: 0 auto;
    max-width: 800px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.62;
    font-weight: 400;
    color: #52627d;
}


/* Offer Section */
.career-offer-section {
    background: #ffffff;
    padding: 82px 0 86px;
}

.career-offer-container {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
    text-align: center;
}

.career-offer-container h2 {
    margin: 0 0 56px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.05em;
    color: #101827;
}

.career-offer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 20px;
}

.career-offer-item {
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid #e5ebf5;
    border-radius: 9px;
    background: #f8fafd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
    color: #2f3645;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.025);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.career-offer-item:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 74, 153, 0.24);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.07);
}

.career-offer-item span {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 999px;
    background: #2f4a99;
    display: grid;
    place-items: center;
    color: #ffffff;
}

.career-offer-item svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Application Section */
.career-application-section {
    background: #f5f8fc;
    padding: 76px 0 92px;
}

.career-application-container {
    width: min(100% - 40px, 760px);
    margin: 0 auto;
}

.career-application-card {
    padding: 42px 42px 52px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 22px 56px rgba(16, 24, 40, 0.08);
}

.career-application-heading {
    margin-bottom: 36px;
}

.career-application-heading h2 {
    margin: 0 0 12px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: #101827;
}

.career-application-heading p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 400;
    color: #52627d;
}

.career-application-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 24px;
}

.career-application-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.career-application-field-full {
    grid-column: 1 / -1;
}

.career-application-field label {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 850;
    color: #2f3645;
}

.career-application-field input,
.career-application-field select,
.career-application-field textarea {
    width: 100%;
    border: 1px solid #dce4f2;
    border-radius: 8px;
    background: #f8fafd;
    outline: none;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    color: #101827;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.career-application-field input,
.career-application-field select {
    height: 44px;
    padding: 0 14px;
}

.career-application-field textarea {
    height: 108px;
    padding: 14px;
    resize: vertical;
}

.career-application-field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #a3adbf 50%),
        linear-gradient(135deg, #a3adbf 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 18px,
        calc(100% - 14px) 18px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.career-application-field input:focus,
.career-application-field select:focus,
.career-application-field textarea:focus {
    border-color: rgba(47, 74, 153, 0.45);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(47, 74, 153, 0.08);
}

.career-application-checkbox {
    margin-top: 34px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #52627d;
    cursor: pointer;
    max-width: 100%;
}

.career-application-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
}

.career-application-checkbox-box {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 18px;
    border: 1px solid #aeb8c8;
    border-radius: 3px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.career-application-checkbox-box::after {
    content: "";
    width: 8px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
}

.career-application-checkbox input:checked + .career-application-checkbox-box {
    border-color: #2f4a99;
    background-color: #2f4a99;
}

.career-application-checkbox input:checked + .career-application-checkbox-box::after {
    opacity: 1;
}

.career-application-checkbox input:focus-visible + .career-application-checkbox-box {
    border-color: #2f4a99;
    box-shadow: 0 0 0 3px rgba(47, 74, 153, 0.18);
}

.career-application-checkbox-text {
    min-width: 0;
    flex: 1 1 auto;
    line-height: 1.55;
}

.career-application-checkbox a {
    color: #2f4a99;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.career-application-checkbox a:hover {
    text-decoration-thickness: 2px;
}

.career-application-submit {
    width: 100%;
    height: 54px;
    margin-top: 24px;
    border: 0;
    border-radius: 9px;
    background: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 850;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(47, 74, 153, 0.22);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.career-application-submit:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 18px 40px rgba(47, 74, 153, 0.3);
}


/* Form Validation & States */
.form-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field-error {
    display: block;
    margin-top: 6px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 650;
    color: #d92d20;
}

.field-error[hidden] {
    display: none;
}

.career-application-field input.field-invalid,
.career-application-field select.field-invalid,
.career-application-field textarea.field-invalid {
    border-color: #d92d20;
    background: #fff5f5;
}

.career-application-field input.field-invalid:focus,
.career-application-field select.field-invalid:focus,
.career-application-field textarea.field-invalid:focus {
    border-color: #d92d20;
    box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}

.career-application-checkbox input.field-invalid + .career-application-checkbox-box {
    border-color: #d92d20;
}

.form-message {
    margin-top: 22px;
    padding: 14px 18px;
    border-radius: 10px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 650;
}

.form-message[hidden] {
    display: none;
}

.form-message-error {
    background: #fef2f2;
    border: 1px solid #fecdca;
    color: #b42318;
}

.form-message-success {
    background: #ecfdf3;
    border: 1px solid #abefc6;
    color: #067647;
}

.career-application-submit.is-submitting {
    opacity: 0.72;
    cursor: not-allowed;
}

.career-application-submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.site-footer {
    background: #14244b;
    color: #ffffff;
    padding: 56px 0 34px;
}

.footer-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.footer-description {
    max-width: 430px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 400;
    text-align: right;
    color: rgba(255, 255, 255, 0.58);
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 70px 0 56px;
    background: rgba(255, 255, 255, 0.11);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 0.8fr;
    gap: 84px;
}

.footer-column h3 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-title-line {
    display: block;
    width: 28px;
    height: 3px;
    margin: 23px 0 28px;
    border-radius: 999px;
    background: #d8a132;
}

.footer-contact-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: #d8a132;
}

.footer-contact-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-list a,
.footer-contact-list address {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social {
    margin-top: 42px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.52);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #3957b4;
    color: #ffffff;
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 74px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.42);
}



/* Responsive */
@media (max-width: 1100px) {

    /* Hero */
    .career-hero-bg,
    .career-hero-overlay {
        bottom: 360px;
    }

    .career-hero-container {
        min-height: 620px;
    }

    .career-hero-content h1 {
        font-size: 58px;
    }

    .career-hero-contact {
        width: 300px;
    }

    .career-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .career-benefit {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}



@media (max-width: 1050px) {

    /* Areas Section */
    .career-areas-section {
        padding: 68px 0 76px;
    }

    .career-areas-container h2 {
        margin-bottom: 48px;
    }

    .career-areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .career-area-card {
        min-height: 230px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 70px;
    }

    .footer-divider {
        margin: 56px 0 48px;
    }
}


@media (max-width: 1024px) {

    /* Header */
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-container {
        width: min(100%, var(--container));
        min-height: 96px;
        height: auto;
        margin: 0 auto;
        padding: 10px 32px;
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
        transition: max-height 0.28s ease;
    }

    .mobile-menu.is-open {
        max-height: 620px;
    }

    .mobile-nav {
        padding: 14px 20px 22px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-nav a,
    .mobile-dropdown-toggle {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 14px 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        text-align: left;
        cursor: pointer;
    }

    .mobile-dropdown-menu {
        display: none;
        padding: 4px 0 10px 14px;
    }

    .mobile-dropdown.is-open .mobile-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-dropdown-menu a {
        padding: 11px 12px;
        border-left: 2px solid rgba(47, 74, 153, 0.18);
        font-size: 14px;
        font-weight: 650;
        color: #344054;
    }

    .mobile-cta {
        margin-top: 10px;
        justify-content: center !important;
        padding: 15px 22px !important;
        border-radius: 999px;
        background: var(--blue) !important;
        color: var(--white) !important;
    }
}

@media (max-width: 900px) {

    /* Profile Section */
    .career-profile-section {
        padding: 68px 0 76px;
    }

    .career-profile-heading {
        margin-bottom: 52px;
    }

    .career-profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-profile-item-center {
        grid-column: auto;
        width: 100%;
    }
}

@media (max-width: 860px) {

    /* Hero */
    .career-hero {
        position: relative;
        min-height: 760px;
        background: #05070b;
        color: #ffffff;
        overflow: hidden;
    }

    .career-hero-bg {
        position: absolute;
        inset: 0;
        height: 100%;
        z-index: 1;
    }

    .career-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center right;
    }

    .career-hero-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background:
            linear-gradient(180deg,
                rgba(5, 7, 11, 0.78) 0%,
                rgba(5, 7, 11, 0.56) 45%,
                rgba(5, 7, 11, 0.9) 100%);
    }

    .career-hero-container {
        position: relative;
        z-index: 3;
        min-height: 760px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .career-hero-content {
        max-width: 680px;
        padding: 44px 0 52px;
    }

    .career-hero-content h1 {
        font-size: 48px;
    }

    .career-hero-content h2 {
        font-size: 26px;
    }

    .career-hero-content p {
        font-size: 16.5px;
        color: rgba(255, 255, 255, 0.84);
    }

    .career-hero-content h1,
    .career-hero-content h2 {
        color: #ffffff;
    }

    .career-hero-content h1 span {
        color: var(--gold);
    }

    .career-hero-line {
        background: var(--gold);
    }

    .career-hero-contact {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 520px);
        max-width: 520px;
        margin: 0 auto 48px ;
    }

    .career-benefits {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .career-benefit {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }
}


@media (max-width: 760px) {

    /* Looking Section */
    .career-looking-section {
        padding: 62px 0 58px;
    }

    .career-looking-container {
        width: min(100% - 32px, 880px);
    }

    .career-looking-container h2 {
        margin-bottom: 20px;
        font-size: 31px;
        line-height: 1.18;
    }

    .career-looking-container p {
        font-size: 16.5px;
        line-height: 1.7;
    }

    /* Qualification Section */
    .career-qualification-section {
        padding: 58px 0 64px;
    }

    .career-qualification-container {
        width: min(100% - 32px, 820px);
    }

    .career-qualification-container h2 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.18;
    }

    .career-qualification-container p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* Offer Section */
    .career-offer-section {
        padding: 62px 0 68px;
    }

    .career-offer-container {
        width: min(100% - 32px, 980px);
    }

    .career-offer-container h2 {
        margin-bottom: 38px;
        font-size: 31px;
        line-height: 1.18;
    }

    .career-offer-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .career-offer-item {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;
        justify-content: flex-start;
        text-align: left;
        font-size: 15.5px;
    }

    /* Application Section */
    .career-application-section {
        padding: 58px 0 68px;
    }

    .career-application-container {
        width: min(100% - 32px, 760px);
    }

    .career-application-card {
        padding: 34px 24px 40px;
        border-radius: 13px;
    }

    .career-application-heading {
        margin-bottom: 30px;
    }

    .career-application-heading h2 {
        font-size: 26px;
        line-height: 1.18;
    }

    .career-application-heading p {
        font-size: 13.5px;
    }

    .career-application-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-application-field input,
    .career-application-field select {
        height: 48px;
    }

    .career-application-field textarea {
        height: 130px;
    }

    .career-application-checkbox {
        margin-top: 28px;
        font-size: 12px;
    }

    .career-application-submit {
        height: 56px;
        font-size: 15px;
    }

    /* Footer */
    .site-footer {
        padding: 46px 0 28px;
    }

    .footer-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 26px;
    }

    .footer-description {
        max-width: 100%;
        text-align: left;
        font-size: 13px;
    }

    .footer-divider {
        margin: 42px 0 38px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title-line {
        margin: 18px 0 22px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-social {
        margin-top: 28px;
    }

    .footer-bottom {
        margin-top: 44px;
        padding-top: 24px;
    }

    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-img {
        height: 86px;
        max-height: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description {
        text-align: center;
    }

    .footer-main {
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .header-container {
        min-height: 78px;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header-logo-img {
        height: 62px;
        max-height: 72px;
    }
}

@media (max-width: 680px) {

    /* Areas Section */
    .career-areas-section {
        padding: 56px 0 64px;
    }

    .career-areas-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .career-areas-container h2 {
        margin-bottom: 36px;
        font-size: 31px;
        line-height: 1.16;
    }

    .career-areas-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .career-area-card {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 13px;
    }

    .career-area-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 24px;
    }

    .career-area-icon svg {
        width: 23px;
        height: 23px;
    }

    .career-area-card h3 {
        margin-bottom: 13px;
        font-size: 21px;
    }

    .career-area-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .career-area-apply-card {
        padding: 32px 24px;
    }

    .career-area-apply-card p {
        margin-bottom: 24px;
    }

    .career-area-apply-card a {
        font-size: 16px;
    }
}


@media (max-width: 620px) {

    /* Profile Section */
    .career-profile-section {
        padding: 56px 0 64px;
    }

    .career-profile-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .career-profile-heading {
        margin-bottom: 38px;
    }

    .career-profile-heading h2 {
        font-size: 34px;
        line-height: 1.14;
    }

    .career-profile-heading span {
        width: 68px;
        height: 4px;
        margin-top: 18px;
    }

    .career-profile-item {
        min-height: auto;
        padding: 22px 20px;
        grid-template-columns: 48px 1fr;
        gap: 18px;
        border-radius: 13px;
    }

    .career-profile-number {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .career-profile-item p {
        font-size: 15.5px;
        line-height: 1.55;
    }
}


@media (max-width: 560px) {

    /* Hero */
    .career-hero {
        min-height: 820px;
    }

    .career-hero-bg,
    .career-hero-overlay {
        height: 100%;
    }

    .career-hero-container {
        min-height: 820px;
    }

    .career-hero-content h1 {
        font-size: 39px;
        line-height: 1.03;
    }

    .career-hero-line {
        width: 60px;
        margin: 24px 0 22px;
    }

    .career-hero-content h2 {
        margin-bottom: 22px;
        font-size: 23px;
        line-height: 1.22;
    }

    .career-hero-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .career-hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 32px;
    }

    .career-hero-button {
        width: 100%;
    }

    .career-hero-contact {
        padding: 26px 22px;
    }

    .career-hero-contact h3 {
        font-size: 22px;
    }

    .career-benefits {
        grid-template-columns: 1fr;
    }

    .career-benefit {
        padding: 32px 24px;
    }

    .career-benefit h3,
    .career-benefit p {
        max-width: 260px;
    }
}


@media (max-width: 420px) {

    /* Looking Section */
    .career-looking-container h2 {
        font-size: 28px;
    }

    .career-looking-container p {
        font-size: 15.5px;
    }

    /* Profile Section */
    .career-profile-item {
        align-items: flex-start;
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .career-profile-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .career-profile-item p {
        font-size: 15px;
    }


    /* Qualification Section */
    .career-qualification-container h2 {
        font-size: 26px;
    }

    .career-qualification-container p {
        font-size: 15.5px;
    }

    /* Offer Section */
    .career-offer-container h2 {
        font-size: 28px;
    }

    .career-offer-item {
        font-size: 15px;
    }

    /* Application Section */
    .career-application-card {
        padding: 30px 18px 36px;
    }

    .career-application-heading h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header-logo-img {
        height: 54px;
    }

    .footer-logo-img {
        height: 76px;
    }
}
