:root {
    --ink: #17232d;
    --ink-soft: #243744;
    --navy: #203a4a;
    --paper: #f4f6f5;
    --paper-warm: #e9eef0;
    --white: #ffffff;
    --muted: #66737b;
    --line: #d8dfe1;
    --bronze: #b48a52;
    --bronze-dark: #8c683b;
    --steel: #52748a;
    --steel-light: #e4edf1;
    --amber: #b78039;
    --danger: #b42318;
    --radius-sm: 5px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 18px 45px rgba(23, 35, 45, 0.09);
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--steel-light);
    color: var(--navy);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, sans-serif;
    font-weight: 680;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--steel);
    color: var(--white);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--steel);
    outline-offset: 3px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--navy);
    color: var(--white);
}

.button-primary:hover {
    background: var(--steel);
}

.button-dark {
    background: var(--navy);
    color: var(--white);
}

.button-dark:hover {
    background: var(--steel);
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.button-ghost-light:hover {
    border-color: #c4d6df;
    color: #dce8ed;
}

.button-outline {
    border-color: #b9c4c9;
    background: rgba(255, 255, 255, 0.7);
    color: var(--navy);
}

.button-outline:hover {
    border-color: var(--steel);
    background: var(--white);
}

.button-small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 14px;
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
    font-weight: 750;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.text-link-light {
    color: #d7e4e9;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--steel);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    background: currentColor;
}

.eyebrow-light {
    color: #b8ccd5;
}

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 36px;
    place-items: center;
    border: 1px solid #b8c4c9;
    border-radius: var(--radius-sm);
    grid-template-columns: 1fr 1fr;
    color: var(--navy);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.brand-mark span,
.brand-mark i {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.brand-mark i {
    background: var(--bronze);
    color: var(--white);
    font-style: normal;
}

.brand-word {
    font-size: 20px;
    font-weight: 850;
    letter-spacing: 0.075em;
}

.brand-word i {
    margin-left: 3px;
    color: var(--bronze);
    font-style: normal;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #4f5f69;
    font-size: 13px;
    font-weight: 650;
}

.main-nav > a:hover {
    color: var(--navy);
}

.main-nav .nav-audience-link,
.main-nav .nav-feedback-link {
    padding: 9px 12px;
    border-radius: var(--radius-sm);
}

.main-nav .nav-audience-link {
    background: #edf2f4;
    color: var(--navy);
}

.main-nav .nav-audience-link:hover {
    background: #dde8ec;
}

.main-nav .nav-feedback-link {
    border: 1px solid #9dafb8;
    color: var(--navy);
}

.main-nav .nav-feedback-link:hover {
    border-color: var(--steel);
    background: #f2f6f7;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: var(--navy);
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 100px;
    background: linear-gradient(115deg, #f8faf9 0%, var(--paper) 58%, #eaf0f2 100%);
}

.hero::before {
    position: absolute;
    top: -190px;
    right: -150px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(82, 116, 138, 0.06);
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 30px;
    font-size: clamp(52px, 6.2vw, 82px);
    font-weight: 720;
    letter-spacing: -0.055em;
    line-height: 1.01;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong {
    margin-top: 5px;
    color: var(--steel);
    font-weight: 580;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 34px;
    color: #52616a;
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--steel);
    box-shadow: 0 0 0 5px rgba(82, 116, 138, 0.1);
}

.hero-media {
    position: relative;
    min-height: 540px;
    margin: 0;
}

.hero-media > img {
    width: 100%;
    height: 540px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: 55% center;
    box-shadow: 0 24px 70px rgba(32, 58, 74, 0.14);
}

.hero-media-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 35px rgba(23, 35, 45, 0.12);
    gap: 5px;
    backdrop-filter: blur(12px);
}

.hero-media-card span {
    color: var(--bronze-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-media-card strong {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.3;
}

.hero-media-card small {
    color: var(--muted);
    font-size: 12px;
}

.hero-media-status {
    position: absolute;
    top: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(32, 58, 74, 0.88);
    color: var(--white);
    font-size: 11px;
    font-weight: 650;
    backdrop-filter: blur(10px);
}

.hero-media-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a9c9b8;
}

.vacancy-card-top,
.vacancy-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.market-strip {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.market-strip-inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.market-strip strong {
    color: var(--ink);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.market-strip i {
    margin-left: 5px;
    color: var(--steel);
    font-size: 10px;
    font-style: normal;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 5.5vw, 70px);
}

.tone-heading {
    color: var(--ink);
}

.tone-heading .tone-line {
    display: block;
    color: var(--ink);
}

.tone-heading .tone-accent {
    color: var(--steel);
    font-weight: 580;
}

.split-heading {
    display: grid;
    align-items: end;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-bottom: 62px;
}

.split-heading > p {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.audience-card {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.audience-worker {
    border: 1px solid var(--line);
    background: var(--white);
}

.audience-company {
    background: var(--navy);
    color: var(--white);
}

.audience-card::after {
    position: absolute;
    right: -125px;
    bottom: -235px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(82, 116, 138, 0.07);
    content: "";
}

.audience-company::after {
    background: rgba(255, 255, 255, 0.045);
}

.card-number {
    position: absolute;
    top: 30px;
    right: 32px;
    color: #a3aea7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.audience-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 550px;
    padding: 52px;
    align-items: flex-start;
    flex-direction: column;
}

.audience-tag {
    margin-bottom: 54px;
    color: var(--steel);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.audience-company .audience-tag {
    color: var(--steel);
}

.audience-content h3 {
    max-width: 500px;
    margin-bottom: 24px;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 620;
}

.audience-content > p {
    max-width: 500px;
    color: var(--muted);
    line-height: 1.7;
}

.audience-company .audience-content > p {
    color: #aeb9c0;
}

.check-list {
    display: grid;
    width: 100%;
    gap: 10px;
    margin: 20px 0 34px;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(var(--steel), var(--steel)) 3px 20px / 12px 2px no-repeat;
    font-size: 14px;
    font-weight: 650;
}

.check-list-dark li {
    border-color: rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(var(--steel), var(--steel));
}

.audience-content > .text-link {
    margin-top: auto;
}

.opportunity-section {
    padding-top: 0;
    background: var(--paper-warm);
}

.opportunity-panel {
    display: grid;
    padding: 58px;
    border: 1px solid #b9c8d1;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(82, 116, 138, 0.11), transparent 58%),
        var(--white);
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
}

.opportunity-panel h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 5.4vw, 66px);
}

.opportunity-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.opportunity-copy > p {
    color: var(--muted);
    font-size: 16px;
}

.opportunity-example {
    margin: 12px 0 28px;
    padding: 18px 20px;
    border-left: 3px solid var(--steel);
    background: rgba(82, 116, 138, 0.08);
    color: var(--ink) !important;
    font-weight: 650;
}

.geography-section {
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: #edf2f3;
}

.geography-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 64px;
}

.geography-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(43px, 5.3vw, 67px);
}

.geography-copy > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.geography-total {
    display: grid;
    align-items: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #cfdadd;
    border-bottom: 1px solid #cfdadd;
    grid-template-columns: auto 1fr;
    gap: 18px;
}

.geography-total strong {
    color: var(--navy);
    font-size: 43px;
    line-height: 1;
}

.geography-total span {
    max-width: 250px;
    color: var(--muted);
    font-size: 12px;
}

.geography-locations {
    display: grid;
    gap: 0;
}

.geography-locations > span {
    margin-bottom: 8px;
    color: var(--steel);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.geography-locations a {
    display: grid;
    padding: 12px 0;
    border-bottom: 1px solid #cfdadd;
    gap: 3px;
}

.geography-locations strong {
    font-size: 13px;
}

.geography-locations small {
    color: var(--muted);
}

.geography-map-wrap {
    min-width: 0;
    padding: 18px;
    border: 1px solid #c8d4d8;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 65px rgba(31, 54, 67, 0.09);
    transform: translateY(-40px);
}

.geography-map {
    display: block;
    width: 100%;
    height: auto;
}

.map-sea {
    fill: #e6eef0;
}

.europe-country {
    fill: #f8faf9;
    stroke: #aebdc2;
    stroke-linejoin: round;
    stroke-width: 0.85;
    transition: fill 160ms ease, stroke 160ms ease;
}

.europe-map #map-country-DEU,
.europe-map #map-country-BEL {
    fill: #b7cad4;
    stroke: #52748a;
}

.europe-map #map-country-POL {
    fill: #d8c0a8;
    stroke: #9b6d42;
}

.europe-map.has-NLD #map-country-NLD,
.europe-map.has-FRA #map-country-FRA {
    fill: #c9dcda;
    stroke: #547c78;
}

.europe-country:hover {
    fill: #dfe8eb;
    stroke: #718992;
}

.project-marker {
    color: var(--navy);
    cursor: pointer;
}

.project-marker line {
    stroke: currentColor;
    stroke-width: 1;
}

.project-marker-ring {
    fill: rgba(255, 255, 255, 0.8);
    stroke: currentColor;
    stroke-width: 1.5;
}

.project-marker-core {
    fill: var(--navy);
    stroke: var(--white);
    stroke-width: 1.5;
}

.project-marker text {
    fill: var(--ink);
    font-size: 11px;
    font-weight: 750;
}

.project-marker-link:hover .project-marker-ring,
.project-marker-link:focus .project-marker-ring {
    fill: var(--white);
    stroke-width: 3;
}

.geography-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 22px;
    padding: 15px 6px 4px;
    border-top: 1px solid #d3dddf;
}

.geography-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 10px;
}

.geography-legend i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--steel);
}

.geography-legend .legend-operations {
    background: var(--bronze);
}

.geography-legend .legend-active {
    background: #476f77;
}

.geography-map-wrap > p {
    margin: 13px 6px 0;
    color: var(--muted);
    font-size: 10px;
}

.geography-map-wrap > p a {
    color: var(--steel);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.geography-country-list {
    display: grid;
    border-top: 1px solid #cfdadd;
    grid-template-columns: 1fr 1fr;
}

.geography-country-item {
    display: grid;
    align-items: center;
    padding: 12px 10px 12px 0;
    border-bottom: 1px solid #cfdadd;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 8px;
}

.geography-country-item:nth-child(odd) {
    margin-right: 16px;
}

.geography-country-item > span {
    color: var(--steel);
    font-size: 10px;
    font-weight: 850;
}

.geography-country-item strong {
    font-size: 12px;
}

.geography-country-item small {
    color: var(--muted);
    font-size: 11px;
}

.geography-country-operations > span {
    color: var(--bronze-dark);
}

.roles-section {
    border-top: 1px solid var(--line);
    background: var(--paper-warm);
}

.centered-heading {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.roles-section .centered-heading {
    max-width: 1000px;
}

.roles-section .tone-heading {
    font-size: clamp(32px, 4.4vw, 52px);
}

.roles-section .tone-line {
    white-space: nowrap;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.role-card {
    position: relative;
    display: block;
    min-height: 235px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: inherit;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.role-card::after {
    position: absolute;
    top: 30px;
    right: 34px;
    color: var(--steel);
    content: "→";
    font-size: 19px;
    font-weight: 800;
}

.role-card:hover {
    background: var(--steel-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.role-card:focus-visible {
    outline: 3px solid var(--steel);
    outline-offset: 3px;
}

.role-card-cta,
.role-card-cta:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.role-card > span {
    color: var(--steel);
    font-size: 11px;
    font-weight: 900;
}

.role-card-cta > span {
    color: #b8ccd5;
}

.role-card-cta::after {
    color: #b8ccd5;
}

.role-card h3 {
    margin: 64px 0 12px;
    font-size: 29px;
    font-weight: 640;
}

.role-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.role-card-cta p {
    color: #c6d3d9;
}

.process-section {
    position: relative;
    overflow: hidden;
}

.process-section::before {
    position: absolute;
    top: -280px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    content: "";
}

.heading-on-dark > p {
    color: #aeb9c0;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.process-grid article {
    min-height: 275px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.process-grid article:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.process-grid span {
    color: var(--steel);
    font-size: 11px;
    font-weight: 900;
}

.process-grid h3 {
    margin: 88px 0 14px;
    font-size: 27px;
    font-weight: 620;
}

.process-grid p {
    margin-bottom: 0;
    color: #95a3ad;
    font-size: 14px;
}

.visa-support-strip {
    border-bottom: 1px solid #bfcdd2;
    background: #dfe8eb;
}

.visa-support-inner {
    display: grid;
    min-height: 150px;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 28px;
    grid-template-columns: 0.82fr 1.35fr auto;
    gap: 46px;
}

.visa-support-inner > div {
    display: grid;
    gap: 5px;
}

.visa-support-inner > div > span {
    color: var(--steel);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.visa-support-inner strong {
    color: var(--navy);
    font-size: 23px;
    line-height: 1.25;
}

.visa-support-inner p {
    margin-bottom: 0;
    color: #52616a;
    font-size: 14px;
}

.visa-support-inner .text-link {
    white-space: nowrap;
}

/* Public assistant preview */
.assistant-section {
    border-bottom: 1px solid var(--line);
    background: var(--paper-warm);
}

.assistant-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 90px;
}

.assistant-copy {
    padding-top: 18px;
}

.assistant-copy h2 {
    margin-bottom: 26px;
    font-size: clamp(43px, 5vw, 64px);
}

.assistant-copy > p {
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.assistant-boundary {
    display: grid;
    padding: 23px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    gap: 7px;
}

.assistant-boundary span,
.assistant-console-header,
.assistant-disclaimer {
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.assistant-boundary span {
    color: var(--steel);
    font-weight: 850;
}

.assistant-boundary strong {
    font-size: 16px;
}

.assistant-boundary small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.assistant-console {
    overflow: hidden;
    border: 1px solid #36505f;
    border-radius: var(--radius-lg);
    background: var(--navy);
    box-shadow: 0 22px 55px rgba(32, 58, 74, 0.16);
    color: var(--white);
}

.assistant-console-header {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #b8c5cc;
    font-size: 12px;
}

.assistant-console-header > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.assistant-console-header strong {
    color: var(--white);
    letter-spacing: 0.13em;
}

.assistant-status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--steel);
    box-shadow: 0 0 0 4px rgba(82, 116, 138, 0.11);
}

.assistant-messages {
    display: flex;
    height: 330px;
    overflow-y: auto;
    margin-top: 16px;
    padding: 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    gap: 14px;
    scrollbar-color: #3b4651 var(--ink);
}

.assistant-message {
    display: grid;
    max-width: 88%;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
}

.assistant-message > span {
    display: grid;
    width: 32px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(163, 187, 201, 0.72);
    border-radius: var(--radius-sm);
    color: #d8e4e9;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.assistant-message p {
    margin: 0;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.085);
    color: #f3f6f7;
    font-size: 15px;
    line-height: 1.68;
}

.assistant-message-user {
    align-self: flex-end;
    grid-template-columns: minmax(0, 1fr) 34px;
}

.assistant-message-user > span {
    grid-column: 2;
    grid-row: 1;
    border-color: rgba(146, 167, 189, 0.55);
    color: var(--steel);
}

.assistant-message-user p {
    grid-column: 1;
    grid-row: 1;
    background: rgba(146, 167, 189, 0.11);
}

.assistant-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 20px 20px 10px;
}

.assistant-topics button {
    min-height: 43px;
    padding: 10px 12px;
    border: 1px solid rgba(172, 193, 205, 0.42);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.075);
    color: #e2eaee;
    cursor: pointer;
    font-size: 12px;
    font-weight: 720;
    text-align: left;
}

.assistant-topics button:hover {
    border-color: rgba(146, 167, 189, 0.65);
    color: var(--white);
}

.assistant-topics button[aria-pressed="true"] {
    border-color: var(--steel);
    background: var(--steel);
    color: var(--white);
}

.assistant-topics button:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.assistant-prompts {
    display: grid;
    gap: 7px;
    padding: 0 20px 16px;
}

.assistant-prompts button {
    display: grid;
    align-items: center;
    min-height: 43px;
    padding: 9px 11px;
    border: 1px solid rgba(163, 187, 201, 0.3);
    border-left: 3px solid #9db3bf;
    border-radius: var(--radius-sm);
    background: rgba(146, 167, 189, 0.13);
    color: #f1f5f6;
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
    grid-template-columns: 27px minmax(0, 1fr) auto;
    gap: 9px;
    text-align: left;
}

.assistant-prompts button:hover {
    border-color: #adc0ca;
    border-left-color: var(--white);
    background: rgba(146, 167, 189, 0.23);
    color: var(--white);
}

.assistant-question-number {
    color: #aec2cc;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.assistant-question-arrow {
    color: #c9d7dd;
    font-size: 15px;
}

.assistant-form {
    display: grid;
    margin: 0 20px;
    border: 1px solid #3b4651;
    border-radius: var(--radius-sm);
    background: #172c39;
    grid-template-columns: 1fr auto;
}

.assistant-form input {
    min-width: 0;
    padding: 15px 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
}

.assistant-form input::placeholder {
    color: #74818b;
}

.assistant-form:focus-within {
    border-color: var(--steel);
    box-shadow: 0 0 0 2px rgba(146, 167, 189, 0.14);
}

.assistant-form button {
    padding: 12px 18px;
    border: 0;
    border-left: 1px solid #3b4651;
    background: var(--steel);
    color: var(--white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 850;
}

.assistant-form button:hover {
    background: #63859b;
}

.assistant-disclaimer {
    margin: 14px 20px 18px;
    color: #73808a;
    line-height: 1.55;
}

.inline-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.inline-heading h2 {
    font-size: 48px;
}

.vacancy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vacancy-card {
    display: flex;
    min-height: 375px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    flex-direction: column;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vacancy-card:hover {
    border-color: #aebcb3;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.vacancy-country,
.vacancy-featured {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vacancy-country {
    color: var(--steel);
}

.vacancy-featured {
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    background: rgba(82, 116, 138, 0.16);
}

.vacancy-card h3 {
    margin: 54px 0 16px;
    font-size: 28px;
}

.vacancy-card > p {
    color: var(--muted);
    font-size: 14px;
}

.vacancy-meta {
    gap: 12px;
    margin: auto 0 25px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    font-size: 12px;
}

.vacancy-meta span {
    color: var(--muted);
}

.vacancy-meta strong {
    text-align: right;
}

.vacancy-card .text-link {
    align-self: flex-start;
    font-size: 13px;
}

.trust-section {
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 110px;
}

.trust-grid > div:first-child {
    position: sticky;
    top: 30px;
    align-self: start;
}

.trust-grid h2 {
    margin-bottom: 26px;
    font-size: clamp(42px, 5vw, 65px);
}

.trust-grid > div:first-child > p {
    margin-bottom: 30px;
    color: var(--muted);
    line-height: 1.75;
}

.trust-list {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.trust-list article {
    display: grid;
    min-height: 190px;
    padding: 36px 32px;
    background: var(--white);
    grid-template-columns: 65px 1fr;
    gap: 20px;
}

.trust-list b {
    color: var(--steel);
    font-size: 11px;
}

.trust-list h3 {
    margin-bottom: 12px;
    font-size: 26px;
}

.trust-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.final-cta {
    padding: 98px 0;
    background: var(--ink-soft);
    color: var(--white);
}

.final-cta-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
}

.final-cta h2 {
    margin-bottom: 0;
    font-size: clamp(48px, 6vw, 76px);
}

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

.site-footer {
    padding: 78px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ink);
    color: #99a6af;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 55px;
}

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

.brand-footer .brand-mark {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.footer-summary {
    max-width: 350px;
    margin-top: 24px;
    font-size: 14px;
}

.footer-title {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.03em;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.footer-grid a:hover {
    color: var(--steel);
}

.footer-bottom {
    display: flex;
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Forms */
.form-hero {
    padding: 75px 0 86px;
}

.form-hero-inner {
    display: grid;
    align-items: end;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
}

.form-hero h1,
.page-hero h1 {
    margin-bottom: 0;
    font-size: clamp(52px, 7vw, 88px);
}

.employer-hero h1 {
    font-size: clamp(50px, 6vw, 74px);
}

.form-hero-inner > p,
.page-hero-inner > p {
    margin-bottom: 7px;
    color: #b6c0c7;
    font-size: 18px;
    line-height: 1.7;
}

.form-section {
    padding: 76px 0 120px;
}

.form-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 66px;
}

.form-sidebar {
    position: sticky;
    top: 24px;
}

.sidebar-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
}

.sidebar-card-blue {
    background: #112743;
}

.sidebar-card-opportunity {
    background: #2a3e4d;
}

.sidebar-kicker {
    color: var(--steel);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sidebar-card h2 {
    margin: 36px 0 28px;
    font-size: 31px;
}

.number-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.number-list li {
    display: grid;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    grid-template-columns: 38px 1fr;
    gap: 8px;
    color: #ccd4d9;
    font-size: 13px;
}

.number-list span {
    color: var(--steel);
    font-size: 10px;
    font-weight: 900;
}

.sidebar-note {
    margin-top: 18px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.sidebar-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.sidebar-note p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
}

.lead-form {
    position: relative;
    padding: 5px 0;
}

.form-progress {
    position: sticky;
    top: 0;
    z-index: 4;
    height: 4px;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #dfe4df;
}

.form-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--steel);
    transition: width 180ms ease;
}

.form-alert,
.errorlist {
    margin: 0 0 26px;
    padding: 14px 16px;
    border: 1px solid #f5aaa4;
    border-radius: var(--radius-sm);
    background: #fff2f0;
    color: var(--danger);
    font-size: 13px;
    list-style: none;
}

.form-block {
    margin: 0 0 60px;
    padding: 0;
    border: 0;
}

.form-block legend {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.form-block legend span {
    color: var(--steel);
    font-size: 10px;
    letter-spacing: 0.1em;
}

.form-grid {
    display: grid;
    gap: 24px;
}

.form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field-wide {
    grid-column: 1 / -1;
}

.form-field label,
.vacancy-filters label {
    display: block;
    margin-bottom: 8px;
    color: #273541;
    font-size: 12px;
    font-weight: 750;
}

.form-field label span {
    color: var(--steel);
}

.form-control {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid #cbd3cd;
    border-radius: var(--radius-sm);
    outline: 0;
    background: var(--white);
    color: var(--ink);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

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

.form-control:focus {
    border-color: var(--steel);
    box-shadow: 0 0 0 4px rgba(82, 116, 138, 0.12);
}

.form-field small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.field-error {
    margin: 7px 0 0;
    color: var(--danger);
    font-size: 12px;
}

.has-error .form-control {
    border-color: var(--danger);
}

.consent-block {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.consent-block legend {
    float: left;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

.consent-block legend + * {
    clear: left;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0;
    color: #34434f;
    cursor: pointer;
    font-size: 13px;
}

.form-check-input {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 1px;
    accent-color: var(--steel);
}

.choice-grid {
    display: grid;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #cbd3cd;
    border-radius: var(--radius-sm);
    background: var(--white);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.form-field .choice-grid label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
}

.choice-grid input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin: 0;
    accent-color: var(--steel);
}

.check-row a {
    border-bottom: 1px solid currentColor;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.button-submit {
    min-width: 250px;
    border: 0;
}

.form-submit-row p {
    max-width: 340px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
}

/* Audience landing pages */
.audience-page-hero {
    padding: 82px 0 92px;
}

.audience-page-hero-inner {
    display: grid;
    align-items: end;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 80px;
}

.audience-page-hero h1 {
    margin-bottom: 0;
    font-size: clamp(54px, 7vw, 88px);
}

.audience-page-hero p {
    margin-bottom: 8px;
    color: #b6c0c7;
    font-size: 18px;
    line-height: 1.7;
}

.cooperation-section {
    background: var(--paper-warm);
}

.specialist-urgent-panel {
    display: flex;
    align-items: end;
    min-height: 330px;
    padding: 52px;
    border: 1px solid #9fb4c0;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(82, 116, 138, 0.12), transparent 62%),
        var(--white);
    justify-content: space-between;
    gap: 60px;
}

.specialist-urgent-panel > div {
    max-width: 680px;
}

.specialist-urgent-panel > div > span {
    color: var(--steel);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.specialist-urgent-panel h2 {
    margin: 45px 0 18px;
    font-size: clamp(40px, 5vw, 62px);
}

.specialist-urgent-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.specialist-urgent-panel .button {
    flex: 0 0 auto;
}

.direction-catalog-section {
    border-top: 0;
}

.direction-catalog-heading {
    display: flex;
    align-items: end;
    margin-bottom: 54px;
    justify-content: space-between;
    gap: 30px;
}

.direction-catalog-heading h2 {
    margin-bottom: 0;
    font-size: clamp(44px, 5vw, 66px);
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cooperation-card {
    display: flex;
    min-height: 430px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    flex-direction: column;
}

.cooperation-card-primary {
    border-color: #9fb4c0;
    background: #eef4f6;
}

.cooperation-card > span,
.employer-option > span {
    color: var(--steel);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cooperation-card h2 {
    margin: 45px 0 18px;
    font-size: 34px;
}

.cooperation-card p {
    color: var(--muted);
    font-size: 14px;
}

.cooperation-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.urgent-vacancies {
    background: var(--white);
}

.specialist-privacy-section {
    background: #eaf0f1;
}

.specialist-privacy-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.specialist-privacy-grid h2 {
    font-size: clamp(42px, 5vw, 62px);
}

.specialist-privacy-list {
    display: grid;
}

.specialist-privacy-list article {
    display: grid;
    padding: 24px 0;
    border-top: 1px solid #cbd7da;
    grid-template-columns: 45px 1fr;
    gap: 18px;
}

.specialist-privacy-list b {
    color: var(--steel);
    font-size: 11px;
}

.specialist-privacy-list p {
    margin: 0;
    color: var(--muted);
}

.employer-options-section {
    background: var(--paper-warm);
}

.employer-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.employer-option {
    display: flex;
    min-height: 520px;
    padding: 45px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    flex-direction: column;
}

.employer-option-reserve {
    border-color: #9fb4c0;
    background: #edf3f5;
}

.employer-option h2 {
    margin: 60px 0 20px;
    font-size: clamp(40px, 5vw, 58px);
}

.employer-option > p {
    max-width: 540px;
    color: var(--muted);
}

.employer-option-stat {
    display: grid;
    align-items: center;
    margin: auto 0 30px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    grid-template-columns: auto 1fr;
    gap: 16px;
}

.employer-option-stat strong {
    color: var(--navy);
    font-size: 42px;
}

.employer-option-stat small {
    max-width: 230px;
    color: var(--muted);
}

.employer-option .button {
    align-self: flex-start;
}

.employer-boundary-section {
    background: var(--white);
}

/* Vacancies and legal pages */
.page-hero {
    padding: 82px 0 90px;
}

.page-hero-inner {
    max-width: 930px;
}

.page-hero-inner > p {
    max-width: 650px;
    margin-top: 28px;
}

.vacancy-catalog {
    min-height: 600px;
}

.vacancy-filters {
    display: grid;
    align-items: end;
    margin-bottom: 48px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    grid-template-columns: 1.35fr 0.85fr 1fr 1fr auto;
    gap: 16px;
}

.vacancy-choice-block {
    padding: 24px;
    border: 1px solid rgba(82, 116, 138, 0.34);
    border-radius: var(--radius);
    background: rgba(82, 116, 138, 0.07);
}

.opportunity-form-note,
.selected-talent {
    margin-bottom: 42px;
    padding: 24px;
    border: 1px solid rgba(82, 116, 138, 0.34);
    border-radius: var(--radius);
    background: rgba(82, 116, 138, 0.07);
}

.opportunity-form-note strong,
.selected-talent > span {
    display: block;
    margin-bottom: 8px;
    color: var(--steel);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.opportunity-form-note p,
.selected-talent p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.opportunity-conditions-block {
    padding: 28px;
    border: 1px solid #b8c8d1;
    border-radius: var(--radius);
    background: #f1f5f6;
}

.opportunity-conditions-block legend {
    padding-top: 0;
}

.consent-explanation {
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.selected-talent strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
}

.selected-talent a {
    display: inline-block;
    margin-top: 14px;
    color: var(--steel);
    font-size: 12px;
    font-weight: 750;
}

.vacancy-filters .button {
    min-height: 52px;
}

.vacancy-direction-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.vacancy-direction-heading span {
    color: var(--steel);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vacancy-direction-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(34px, 4vw, 54px);
}

.vacancy-grid-catalog {
    grid-template-columns: repeat(3, 1fr);
}

.talent-catalog {
    min-height: 650px;
    background: var(--paper-warm);
}

.talent-boundary {
    display: grid;
    margin-bottom: 28px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.talent-boundary div {
    display: grid;
    gap: 5px;
}

.talent-boundary span,
.talent-card-top span,
.talent-skills > span,
.talent-conditions > span {
    color: var(--steel);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.talent-boundary strong {
    font-size: 13px;
}

.talent-filters {
    display: grid;
    align-items: end;
    margin-bottom: 48px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 16px;
}

.talent-filters label {
    display: block;
    margin-bottom: 8px;
    color: #273541;
    font-size: 12px;
    font-weight: 750;
}

.talent-filters .button {
    min-height: 52px;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.talent-card {
    display: flex;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 16px 42px rgba(30, 50, 62, 0.06);
}

.talent-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.talent-card-top b {
    padding: 6px 9px;
    border-radius: var(--radius-sm);
    background: rgba(82, 116, 138, 0.13);
    color: var(--navy);
    font-size: 10px;
}

.talent-card h2 {
    margin: 34px 0 4px;
    font-size: clamp(28px, 3.2vw, 40px);
}

.talent-profession {
    margin-bottom: 25px;
    color: var(--steel);
    font-size: 14px;
    font-weight: 750;
}

.talent-facts {
    display: grid;
    margin: 0;
    border-top: 1px solid var(--line);
}

.talent-facts > div {
    display: grid;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 110px 1fr;
    gap: 18px;
}

.talent-facts dt {
    color: var(--muted);
    font-size: 11px;
}

.talent-facts dd {
    margin: 0;
    font-size: 13px;
    font-weight: 650;
}

.talent-skills,
.talent-conditions {
    margin-top: 24px;
}

.talent-skills p,
.talent-conditions p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.talent-conditions {
    padding: 20px;
    border-left: 3px solid var(--steel);
    background: #f2f6f7;
}

.talent-conditions strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
}

.talent-conditions small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
}

.talent-card > .button {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 14px;
    padding-bottom: 14px;
}

.talent-card > .talent-skills + .button,
.talent-card > .talent-conditions + .button {
    margin-top: 28px;
}

.empty-state {
    max-width: 700px;
    margin: 70px auto;
    text-align: center;
}

.empty-state-mark {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 28px;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--steel);
    font-size: 32px;
    font-weight: 900;
    transform: none;
}

.empty-state h2 {
    margin-bottom: 18px;
    font-size: 42px;
}

.empty-state p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--muted);
}

.vacancy-detail-hero {
    padding: 55px 0 78px;
}

.vacancy-detail-heading {
    max-width: 930px;
}

.back-link {
    display: inline-block;
    margin-bottom: 60px;
    color: #9eabb4;
    font-size: 13px;
}

.vacancy-detail-heading h1 {
    margin: 18px 0 25px;
    font-size: clamp(48px, 7vw, 80px);
}

.vacancy-detail-heading > p {
    max-width: 740px;
    margin-bottom: 0;
    color: #b8c1c7;
    font-size: 19px;
}

.vacancy-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 80px;
}

.vacancy-description h2,
.vacancy-facts h2,
.legal-copy h2 {
    margin: 48px 0 20px;
    font-size: 30px;
}

.vacancy-description h2:first-child,
.vacancy-facts h2:first-child {
    margin-top: 0;
}

.rich-copy,
.legal-copy p {
    color: #4f5e69;
    line-height: 1.8;
}

.vacancy-facts {
    align-self: start;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.vacancy-facts dl {
    margin: 0 0 28px;
}

.vacancy-facts dl > div {
    display: grid;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 105px 1fr;
    gap: 12px;
}

.vacancy-facts dt {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.vacancy-facts dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.vacancy-facts small {
    color: var(--muted);
    font-weight: 400;
}

.verified-employer {
    margin: 0 0 26px;
    padding: 22px;
    border: 1px solid #b9cbd3;
    border-left: 4px solid var(--steel);
    border-radius: var(--radius-sm);
    background: #edf3f5;
}

.verified-employer > span {
    display: block;
    margin-bottom: 10px;
    color: var(--steel);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.verified-employer h2 {
    margin: 0 0 12px;
    font-size: 21px;
}

.verified-employer strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}

.verified-employer p {
    margin: 8px 0 0;
    color: #4f5e69;
    font-size: 13px;
}

.verified-employer a {
    display: inline-block;
    margin-top: 12px;
    color: var(--steel);
    font-size: 12px;
    font-weight: 750;
}

.verified-employer small {
    display: block;
    margin-top: 14px;
    line-height: 1.55;
}

.facts-note {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.success-section {
    display: grid;
    min-height: 680px;
    place-items: center;
    padding: 90px 0;
}

.success-card {
    max-width: 800px;
    text-align: center;
}

.success-mark {
    display: grid;
    width: 74px;
    height: 74px;
    margin: 0 auto 38px;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--steel);
    color: var(--ink);
    font-size: 30px;
    font-weight: 900;
}

.success-card .eyebrow {
    justify-content: center;
}

.success-card h1 {
    margin-bottom: 28px;
    font-size: clamp(50px, 7vw, 82px);
}

.success-card > p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: #b7c1c7;
    font-size: 18px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 760px);
    gap: 90px;
    justify-content: center;
}

.legal-layout > aside {
    position: sticky;
    top: 30px;
    display: flex;
    align-self: start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    flex-direction: column;
    gap: 9px;
    color: var(--muted);
    font-size: 12px;
}

.legal-layout > aside strong {
    margin-bottom: 17px;
    color: var(--ink);
}

.legal-layout > aside a:hover {
    color: var(--steel);
}

.legal-copy section {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
    font-size: 32px;
}

.legal-warning {
    margin-top: 38px;
    padding: 26px;
    border-left: 4px solid var(--amber);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: #fff7e8;
}

.legal-warning p {
    margin: 8px 0 0;
}

@media (max-width: 1020px) {
    .main-nav { gap: 8px; font-size: 12px; }
    .main-nav .nav-audience-link,
    .main-nav .nav-feedback-link { padding: 8px 9px; }
    .hero-grid { gap: 38px; }
    .audience-content { padding: 40px; }
    .opportunity-panel { gap: 45px; padding: 45px; }
    .geography-layout { gap: 35px; }
    .split-heading { gap: 45px; }
    .trust-grid { gap: 60px; }
    .assistant-grid { gap: 48px; }
    .form-layout { grid-template-columns: 270px minmax(0, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .section { padding: 82px 0; }
    .nav-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        padding: 25px;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 18px 35px rgba(23, 35, 45, 0.12);
        color: var(--ink);
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }
    .main-nav.is-open { display: flex; }
    .hero { padding: 76px 0; }
    .hero-grid,
    .split-heading,
    .assistant-grid,
    .form-hero-inner,
    .audience-page-hero-inner,
    .geography-layout,
    .trust-grid,
    .vacancy-detail-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { gap: 58px; }
    .hero h1 { font-size: clamp(50px, 12vw, 78px); }
    .hero-media { width: 100%; max-width: 680px; }
    .hero-media,
    .hero-media > img { min-height: 0; height: 500px; }
    .market-strip-inner { flex-wrap: wrap; justify-content: flex-start; padding: 22px 0; }
    .market-strip-inner > span:last-child { display: none; }
    .split-heading { gap: 24px; margin-bottom: 45px; }
    .audience-grid { grid-template-columns: 1fr; }
    .opportunity-panel { grid-template-columns: 1fr; }
    .geography-copy { max-width: 680px; }
    .geography-map-wrap { transform: none; }
    .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .assistant-copy { max-width: 650px; padding-top: 0; }
    .assistant-console { max-width: 720px; }
    .visa-support-inner { grid-template-columns: 1fr 1.2fr; }
    .visa-support-inner .text-link { grid-column: 1 / -1; justify-self: start; }
    .vacancy-grid,
    .vacancy-grid-catalog { grid-template-columns: repeat(2, 1fr); }
    .trust-grid > div:first-child,
    .form-sidebar,
    .legal-layout > aside { position: static; }
    .final-cta-inner { align-items: flex-start; flex-direction: column; }
    .final-cta-actions { width: 100%; max-width: 420px; }
    .form-layout { grid-template-columns: 1fr; }
    .cooperation-grid { grid-template-columns: 1fr; }
    .cooperation-card { min-height: 340px; }
    .specialist-urgent-panel { align-items: flex-start; flex-direction: column; min-height: 0; }
    .direction-catalog-heading { align-items: flex-start; flex-direction: column; }
    .specialist-privacy-grid { grid-template-columns: 1fr; gap: 45px; }
    .employer-options-grid { grid-template-columns: 1fr; }
    .employer-option { min-height: 450px; }
    .form-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .sidebar-note { margin-top: 0; }
    .vacancy-filters { grid-template-columns: 1fr 1fr; }
    .vacancy-filters > div:first-child { grid-column: 1 / -1; }
    .talent-filters { grid-template-columns: 1fr 1fr; }
    .talent-filters > div:first-child { grid-column: 1 / -1; }
    .talent-grid { grid-template-columns: 1fr; }
    .vacancy-detail-grid { gap: 45px; }
    .legal-layout { grid-template-columns: 1fr; gap: 35px; }
    .legal-layout > aside { display: none; }
}

@media (max-width: 580px) {
    .roles-section .tone-heading {
        font-size: clamp(17px, 5.2vw, 26px);
    }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .section { padding: 68px 0; }
    .hero { padding: 62px 0; }
    .hero h1 { font-size: 47px; }
    .hero-lead { font-size: 16px; }
    .hero-actions,
    .hero-actions .button,
    .success-actions,
    .success-actions .button { width: 100%; }
    .hero-actions,
    .success-actions { flex-direction: column; }
    .hero-media,
    .hero-media > img { height: 410px; }
    .hero-media > img { object-position: 58% center; }
    .hero-media-card { right: 13px; bottom: 13px; left: 13px; padding: 16px; }
    .hero-media-status { top: 13px; right: 13px; max-width: calc(100% - 26px); }
    .market-strip strong { font-size: 12px; }
    .section-heading h2 { font-size: 40px; }
    .audience-content { min-height: 520px; padding: 34px 25px; }
    .audience-content h3 { font-size: 36px; }
    .opportunity-panel { padding: 30px 24px; }
    .opportunity-panel h2 { font-size: 39px; }
    .geography-copy h2 { font-size: 39px; }
    .geography-map-wrap { padding: 8px; }
    .geography-map { margin: 0 -4px; width: calc(100% + 8px); }
    .project-marker text { font-size: 9px; }
    .geography-legend { padding-right: 5px; padding-left: 5px; gap: 10px; }
    .geography-country-list { grid-template-columns: 1fr; }
    .geography-country-item:nth-child(odd) { margin-right: 0; }
    .roles-grid,
    .process-grid,
    .vacancy-grid,
    .vacancy-grid-catalog { grid-template-columns: 1fr; }
    .role-card { min-height: 210px; }
    .process-grid article { min-height: 230px; border-right: 0; }
    .process-grid h3 { margin-top: 60px; }
    .assistant-console { box-shadow: 0 18px 40px rgba(32, 58, 74, 0.14); }
    .visa-support-inner { min-height: 0; padding-top: 34px; padding-bottom: 34px; grid-template-columns: 1fr; gap: 18px; }
    .visa-support-inner .text-link { grid-column: auto; white-space: normal; }
    .assistant-messages { height: 270px; padding: 18px 13px; }
    .assistant-message { max-width: 96%; }
    .assistant-topics { padding: 18px 13px 10px; }
    .assistant-prompts { padding: 0 13px 14px; }
    .assistant-form { margin: 0 13px; grid-template-columns: 1fr; }
    .assistant-form button { border-top: 1px solid #3b4651; border-left: 0; }
    .assistant-disclaimer { margin: 13px; }
    .assistant-console-header { align-items: flex-start; flex-direction: column; gap: 5px; }
    .inline-heading { align-items: flex-start; flex-direction: column; }
    .trust-list article { grid-template-columns: 38px 1fr; padding: 29px 20px; }
    .final-cta h2 { font-size: 44px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .form-hero { padding: 58px 0 65px; }
    .form-hero h1,
    .page-hero h1,
    .audience-page-hero h1 { font-size: 46px; }
    .form-hero-inner { gap: 28px; }
    .form-hero-inner > p,
    .page-hero-inner > p { font-size: 15px; }
    .form-section { padding: 45px 0 80px; }
    .audience-page-hero { padding: 58px 0 65px; }
    .audience-page-hero-inner { gap: 28px; }
    .audience-page-hero p { font-size: 15px; }
    .cooperation-card,
    .employer-option { min-height: 0; padding: 28px 24px; }
    .specialist-urgent-panel { padding: 30px 24px; gap: 32px; }
    .specialist-urgent-panel h2 { margin-top: 28px; font-size: 39px; }
    .specialist-urgent-panel .button { width: 100%; }
    .cooperation-card h2,
    .employer-option h2 { margin-top: 35px; font-size: 34px; }
    .cooperation-card .button,
    .employer-option .button { width: 100%; }
    .form-sidebar { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-block { margin-bottom: 45px; }
    .form-field-wide { grid-column: auto; }
    .form-submit-row { align-items: stretch; flex-direction: column; }
    .button-submit { width: 100%; min-width: 0; }
    .vacancy-filters { grid-template-columns: 1fr; }
    .vacancy-filters > div:first-child { grid-column: auto; }
    .talent-boundary,
    .talent-filters { grid-template-columns: 1fr; }
    .talent-filters > div:first-child { grid-column: auto; }
    .talent-card { padding: 24px 20px; }
    .talent-card-top { align-items: flex-start; flex-direction: column; gap: 10px; }
    .talent-facts > div { grid-template-columns: 82px 1fr; }
    .vacancy-direction-heading { align-items: stretch; flex-direction: column; }
    .empty-state h2 { font-size: 34px; }
    .vacancy-detail-heading h1 { font-size: 48px; }
    .vacancy-facts { padding: 23px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Employer-language navigation and reviewed translation state */
.locale-switcher,
.employer-language-entry {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.locale-switcher {
    margin-left: 4px;
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.locale-switcher a,
.employer-language-entry a {
    display: inline-grid;
    min-width: 34px;
    min-height: 30px;
    place-items: center;
    padding: 4px 8px;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.locale-switcher a:hover,
.locale-switcher a.is-active,
.employer-language-entry a:hover {
    border-color: var(--steel);
    background: var(--steel);
    color: #fff;
}

.employer-language-entry {
    margin-top: 18px;
}

.employer-language-entry > span {
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.employer-language-entry a {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.translation-pending {
    margin: 0 0 14px;
    padding: 7px 9px;
    border-left: 3px solid var(--bronze);
    background: rgba(172, 116, 67, 0.08);
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.employer-localized .audience-page-hero-inner > *,
.employer-localized .employer-options-grid > *,
.employer-localized .form-hero-inner > *,
.employer-localized .form-layout > * {
    min-width: 0;
}

.employer-localized h1,
.employer-localized h2,
.employer-localized p {
    overflow-wrap: break-word;
}

.public-localized .hero-grid > *,
.public-localized .split-heading > *,
.public-localized .audience-grid > *,
.public-localized .geography-layout > *,
.public-localized .assistant-grid > *,
.public-localized .trust-grid > * {
    min-width: 0;
}

.public-localized h1,
.public-localized h2,
.public-localized h3,
.public-localized p {
    overflow-wrap: break-word;
}

@media (max-width: 1240px) {
    .root-site-header .nav-toggle,
    .localized-site-header .nav-toggle,
    .employer-site-header .nav-toggle {
        display: block;
        margin-left: auto;
        flex: 0 0 44px;
    }

    .root-site-header .main-nav,
    .localized-site-header .main-nav,
    .employer-site-header .main-nav {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        padding: 25px;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 18px 35px rgba(23, 35, 45, 0.12);
        color: var(--ink);
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .root-site-header .main-nav.is-open,
    .localized-site-header .main-nav.is-open,
    .employer-site-header .main-nav.is-open {
        display: flex;
    }

    .root-site-header .locale-switcher,
    .localized-site-header .locale-switcher,
    .employer-site-header .locale-switcher {
        width: 100%;
        margin: 8px 0 0;
        padding: 14px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

@media (max-width: 1120px) {
    .employer-main-nav {
        gap: 12px;
    }

    .employer-main-nav > a {
        font-size: 0.78rem;
    }

    .locale-switcher {
        padding-left: 8px;
    }
}

@media (max-width: 900px) {
    .employer-site-header .header-inner {
        min-width: 0;
    }

    .employer-site-header .nav-toggle {
        display: block;
        margin-left: auto;
        flex: 0 0 44px;
    }

    .employer-main-nav .locale-switcher {
        width: 100%;
        margin: 8px 0 0;
        padding: 14px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .employer-main-nav .locale-switcher a {
        width: auto;
    }
}

@media (max-width: 580px) {
    .employer-localized .audience-page-hero h1,
    .employer-localized .form-hero h1,
    .employer-localized .page-hero h1 {
        font-size: clamp(38px, 11vw, 46px);
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .employer-localized .employer-option h2 {
        font-size: clamp(30px, 9vw, 36px);
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .public-localized .hero h1 {
        font-size: clamp(38px, 11vw, 48px);
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .public-localized .tone-heading {
        overflow-wrap: anywhere;
        hyphens: auto;
    }
}
