@charset "UTF-8";
:root {
    --blue: #0d4f91;
    --red: #c62828;
    --navy: #12355b;
    --ink: #183149;
    --muted: #5c7082;
    --line: #dce4ea;
    --soft: #e7f6fb;
    --white: #fff;
    --green: #236654;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "DM Sans", sans-serif;
    --display: "Manrope", sans-serif;
    --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 56px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: var(--white); transition: box-shadow .2s ease; }
.site-header.is-stuck { box-shadow: 0 8px 20px rgba(18, 53, 91, .12); }
.topline { background: var(--navy); color: #e5edf4; font-size: 11px; letter-spacing: .03em; }
.topline-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topline a { color: #fff; }
.nav-row { position: relative; display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; color: var(--navy); }
.brand-mark { font: 800 30px/1 var(--display); letter-spacing: 0; color: var(--blue); position: relative; }
.brand-image { display: block; width: auto; max-width: 180px; height: 42px; object-fit: contain; object-position: left center; }
.brand-mark-svg { display: block; flex: 0 0 44px; width: 44px; height: 42px; }
.brand-mark-svg svg { display: block; width: 100%; height: 100%; }
.brand-custom-logo { gap: 0; }
.brand-mark::after { content: ""; width: 7px; height: 7px; border-radius: 50%; position: absolute; right: -7px; top: 1px; background: var(--red); }
.brand-copy { display: grid; padding-left: 5px; border-left: 1px solid var(--line); line-height: 1.1; }
.brand-copy strong { font: 800 14px/1.4 var(--display); letter-spacing: .08em; }
.brand-copy small { font-size: 8px; font-weight: 700; letter-spacing: .1em; color: var(--muted); }
.main-nav { position: absolute; left: 50%; display: flex; align-items: center; gap: clamp(10px, 1.35vw, 19px); font-size: 13px; font-weight: 600; white-space: nowrap; transform: translateX(-50%); }
.main-nav > a:not(.button) { color: #435b70; transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--blue); }
.main-nav .mobile-hire { display: none; }
.desktop-hire { margin-left: auto; }
.desktop-hire, .mobile-hire { color: #fff; background: var(--red); border-color: var(--red); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; color: var(--navy); }
.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 16px; border: 1px solid transparent; padding: 0 22px; font: 700 13px/1 var(--sans); cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.button-primary:hover { background: var(--navy); border-color: var(--navy); }
.button-small { min-height: 42px; padding-inline: 17px; }
.button-outline { color: var(--blue); background: transparent; border-color: #9cb3c7; }
.button-outline:hover { color: var(--navy); border-color: var(--navy); background: #f7fafc; }
.button-white { color: var(--navy); background: #fff; border-color: #fff; }
.button-white-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.55); }
.button-white-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.button-full { width: 100%; }
.hero-actions .button-outline { color: #fff; background: var(--red); border-color: var(--red); }
.hero-actions .button-outline:hover { background: #a91f1f; border-color: #a91f1f; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; color: var(--blue); font: 700 10px/1.4 var(--sans); letter-spacing: .13em; }
.eyebrow span { width: 19px; height: 2px; background: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--navy); font-family: var(--display); letter-spacing: 0; }
h1 { margin-bottom: 23px; font-size: clamp(42px, 5vw, 66px); line-height: 1.07; font-weight: 800; }
h1 em, h2 span { color: var(--blue); font-family: var(--serif); font-weight: 400; font-style: italic; }
.hero h1 em { color: var(--red); }
h2 { margin-bottom: 17px; font-size: 39px; line-height: 1.18; font-weight: 750; }
h3 { color: var(--navy); font-family: var(--display); font-weight: 700; line-height: 1.3; }
.hero { position: relative; overflow: hidden; background: #e7f6fb; }
.hero::before { content: ""; position: absolute; width: 38%; height: 1px; top: 0; right: 0; background: var(--red); }
.hero-grid { position: relative; display: grid; min-height: 538px; grid-template-columns: 1fr 1.02fr; align-items: center; gap: 56px; padding-top: 38px; padding-bottom: 65px; }
.hero-copy { padding: 24px 0 12px; animation: lift-in .65s both; }
.hero-copy .eyebrow { margin-bottom: 25px; }
.hero h1 { font-size: clamp(47px, 5.2vw, 70px); }
.hero-lede { max-width: 525px; margin-bottom: 29px; color: #526a7d; font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 42px; color: #677c8d; font-size: 10px; line-height: 1.45; }
.hero-proof strong { color: var(--navy); font-size: 11px; }
.proof-mark { color: var(--blue); font-size: 24px; }
.proof-red { color: var(--red); }
.proof-divider { width: 1px; height: 29px; margin: 0 5px; background: #cbd6df; }
.hero-visual { position: relative; height: 414px; margin-right: max(0px, calc((var(--container) - 100vw) / 2)); animation: rise-in .8s .1s both; }
.hero-visual::before { content: ""; position: absolute; top: -13px; left: -13px; z-index: 1; width: 44%; height: 51%; border-top: 1px solid var(--red); border-left: 1px solid var(--red); pointer-events: none; }
.hero-visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(12,35,57,.63)); }
.hero-slider { overflow: visible; }
.hero-slide { position: absolute; inset: 0; overflow: hidden; opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility .5s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slider-controls { position: absolute; z-index: 4; left: 20px; right: 20px; bottom: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
.hero-slider-dots { display: flex; align-items: center; gap: 8px; justify-self: end; }
.hero-slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; }
.hero-slider-dots button.is-active { background: var(--red); }
.visual-caption { display: flex; align-items: center; justify-content: center; gap: 18px; min-width: 0; text-align: center; color: #fff; font: 600 15px/1.35 var(--display); }
.caption-index { display: inline-flex; align-items: center; min-width: 52px; padding-bottom: 2px; font: 500 9px/1 var(--sans); letter-spacing: .12em; color: #e0eaf1; }
.visual-stamp { position: absolute; z-index: 3; right: 12px; top: 18px; display: grid; place-content: center; width: 78px; height: 78px; border-radius: 50%; color: #fff; background: var(--red); text-align: center; font: 800 14px/1.1 var(--display); transform: rotate(8deg); }
.visual-stamp span { font: 500 11px/1.2 var(--sans); }
.hero-ribbon { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; width: min(var(--container), calc(100% - 56px)); margin: -28px auto 0; padding: 0; background: transparent; border: 0; }
.hero-ribbon-item { position: relative; display: flex; min-height: 124px; flex-direction: column; justify-content: flex-end; gap: 7px; padding: 14px 18px 16px; border: 1px solid rgba(17,63,107,.12); background: rgba(255,255,255,.98); border-radius: 0; box-shadow: 0 8px 20px rgba(14, 48, 85, 0.05); }
.hero-ribbon-item::before { content: ""; display: block; width: 44px; height: 3px; background: var(--red); }
.hero-ribbon-item:nth-child(even)::before { background: var(--blue); }
.hero-ribbon-tag { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.hero-ribbon-item strong { display: block; color: var(--navy); font: 700 15px/1.45 var(--display); letter-spacing: 0; text-transform: none; }
.hero-ribbon-copy { color: var(--muted); font-size: 11px; line-height: 1.5; }
.section { padding-block: 92px; }
.section-tint { background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 39px; }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { width: min(390px, 42%); margin-bottom: 5px; color: var(--muted); font-size: 14px; }
.services-strip { padding-top: 83px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-tile { position: relative; display: flex; min-height: 245px; flex-direction: column; padding: 24px 30px 23px 0; border-right: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.service-tile:not(:first-child) { padding-left: 30px; }
.service-tile:last-child { border-right: 0; }
.service-tile:hover { background: #f8fafb; }
.tile-number { margin-bottom: 25px; color: var(--red); font: 700 11px/1 var(--sans); }
.service-tile h3 { margin-bottom: 10px; font-size: 20px; }
.service-tile p { max-width: 310px; margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.tile-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; color: var(--blue); font-size: 11px; font-weight: 700; }
.tile-link b { font-size: 18px; font-weight: 500; }
.tile-accent { color: #fff; background: var(--blue); padding-left: 30px; }
.tile-accent:hover { background: var(--navy); }
.tile-accent h3, .tile-accent .tile-link { color: #fff; }
.tile-accent p { color: #cfdeeb; }
.industries.section-tint { background: #fff; }
.industries-grid { display: grid; grid-template-columns: .83fr 1fr; align-items: center; gap: 90px; }
.industries-grid h2 { margin-bottom: 17px; }
.section-intro { max-width: 445px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.text-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 17px; color: var(--blue); font-size: 12px; font-weight: 700; }
.text-link span { color: var(--red); font-size: 18px; }
.industry-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #d6dfe6; }
.industry-list span { padding: 14px 0; border-bottom: 1px solid #d6dfe6; color: #344f64; font: 600 13px var(--display); }
.industry-list span:nth-child(odd) { margin-right: 24px; }
.vacancies-featured { background: #e2f5fb; }
.vacancies-featured .section-heading { margin-bottom: 33px; }
.vacancies-featured .section-heading .text-link { margin-bottom: 6px; }
.vacancy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vacancy-card { display: flex; min-height: 220px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: border-color .2s, transform .2s, box-shadow .2s; }
.vacancy-card:hover, .listing-card:hover { transform: translateY(-3px); border-color: #a8bdce; box-shadow: 0 12px 25px rgba(18,53,91,.06); }
.vacancy-card-image, .listing-card-image { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #e7f6fb; }
.vacancy-card-top, .vacancy-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vacancy-card-top { padding: 18px 20px 0; color: var(--blue); font-size: 10px; font-weight: 700; }
.vacancy-card-image + .vacancy-card-top { padding-top: 14px; }
.vacancy-card-top span:last-child { color: var(--muted); font-weight: 500; }
.vacancy-card h3 { margin: 19px 20px 5px; font-size: 18px; }
.vacancy-card > p { margin: 0 20px 19px; color: var(--muted); font-size: 12px; }
.vacancy-card-bottom { margin: auto 20px 17px; padding-top: 13px; border-top: 1px solid var(--line); color: #718292; font-size: 10px; }
.vacancy-card-bottom b { color: var(--blue); font-size: 11px; }
.vacancy-empty { grid-column: 1 / -1; display: flex; align-items: center; gap: 23px; padding: 25px 28px; border: 1px solid var(--line); background: #f9fbfc; }
.empty-symbol { color: var(--red); font: 400 31px var(--serif); }
.vacancy-empty h3 { margin-bottom: 3px; font-size: 16px; }
.vacancy-empty p { margin: 0; color: var(--muted); font-size: 12px; }
.vacancy-empty .button { margin-left: auto; flex: 0 0 auto; }
.process-section { background: #fff; color: var(--ink); }
.process-top { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 45px; }
.process-top .eyebrow { color: var(--blue); }
.process-top h2 { margin-bottom: 0; color: var(--navy); }
.process-top h2 span { color: var(--blue); }
.process-top > p { max-width: 365px; margin-bottom: 4px; color: var(--muted); font-size: 13px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-grid article { padding: 22px 25px 0 0; }
.process-grid article:not(:first-child) { padding-left: 22px; border-left: 1px solid var(--line); }
.process-grid article > span { color: var(--red); font: 600 11px var(--sans); }
.process-grid h3 { margin: 24px 0 9px; color: var(--navy); font-size: 17px; }
.process-grid p { max-width: 225px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.why-section { color: #fff; background: var(--navy); }
.why-grid { display: grid; grid-template-columns: .95fr 1fr; align-items: center; gap: 88px; }
.why-image { position: relative; height: 410px; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.image-note { position: absolute; left: 21px; bottom: 20px; display: grid; gap: 2px; padding: 13px 17px; color: var(--navy); background: #fff; font-size: 12px; }
.image-note span { color: var(--muted); font-size: 10px; }
.why-copy .eyebrow { color: #a8c6df; }
.why-copy h2 { margin-bottom: 17px; color: #fff; }
.why-copy h2 span { color: #a9cbe5; }
.why-copy .section-intro { color: #cad9e5; }
.check-list { display: grid; gap: 11px; margin: 23px 0 8px; padding: 0; list-style: none; color: #e0e9f0; font-size: 12px; }
.check-list li { display: flex; gap: 11px; align-items: baseline; }
.check-list li::before { content: "✓"; color: var(--red); font-weight: 700; }
.why-copy .text-link { color: #fff; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.1fr; gap: 100px; }
.faq-list details { border-bottom: 1px solid #d7e0e6; }
.faq-list details:first-child { border-top: 1px solid #d7e0e6; }
.faq-list summary { position: relative; padding: 17px 34px 17px 0; color: var(--navy); font: 700 14px/1.5 var(--display); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 14px; right: 3px; color: var(--red); font: 400 22px var(--sans); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 620px; margin: -2px 0 18px; color: var(--muted); font-size: 12px; }
.closing-cta { position: relative; overflow: hidden; padding-block: 64px; color: #fff; background: var(--red); }
.closing-cta::after { content: "CIS"; position: absolute; right: 2%; bottom: -88px; color: rgba(255,255,255,.055); font: 800 260px/1 var(--display); pointer-events: none; }
.closing-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.closing-inner .eyebrow { color: #c8dff1; }
.closing-inner .eyebrow::before { content: ""; width: 17px; height: 2px; background: #e88080; }
.closing-inner h2 { margin: 0; color: #fff; font-size: 34px; }
.closing-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer { color: #d7e1eb; background: #102b47; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1fr; gap: 45px; padding-block: 52px 43px; }
.brand-light { color: #fff; }
.brand-light .brand-mark { color: #fff; }
.brand-light .brand-copy { border-color: rgba(255,255,255,.3); }
.brand-light .brand-copy small { color: #aabccc; }
.footer-brand > p { max-width: 260px; margin: 18px 0 0; color: #aebfd0; font-size: 13px; }
.footer-main h2 { margin: 3px 0 17px; color: #fff; font: 700 13px var(--sans); letter-spacing: .04em; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: start; }
.footer-main > div:not(.footer-brand) > a { margin-bottom: 9px; color: #bdcad7; font-size: 13px; }
.footer-main > div > a:hover { color: #fff; }
.footer-contact p { margin: 2px 0 12px; color: #aebfd0; font-size: 13px; }
.footer-contact .footer-cta { display: inline-flex; gap: 12px; padding-bottom: 3px; border-bottom: 1px solid #8096aa; color: #fff !important; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 15px 17px; border-top: 1px solid rgba(255,255,255,.16); color: #9badbd; font-size: 11px; }
.page-hero { position: relative; overflow: hidden; padding-block: 80px 76px; background: #f3f6f8; }
.page-hero::after { content: ""; position: absolute; right: max(20px, calc((100vw - var(--container)) / 2)); top: 39px; width: 112px; height: 112px; border: 1px solid rgba(13,79,145,.16); border-radius: 50%; box-shadow: 18px 13px 0 -1px #f3f6f8, 18px 13px 0 0 rgba(198,40,40,.28); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 780px; font-size: clamp(42px, 5.5vw, 67px); }
.page-hero-inner > p:not(.eyebrow) { max-width: 570px; margin-bottom: 22px; color: var(--muted); font-size: 15px; }
.page-hero .button { margin-top: 8px; }
.page-hero-compact { padding-block: 59px 50px; }
.page-hero-compact h1 { font-size: 54px; }
.page-hero-compact .page-hero-inner > p:not(.eyebrow) { max-width: 630px; margin-bottom: 0; font-size: 13px; }
.about-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: 100px; }
.about-copy { color: #536b7d; font-size: 14px; line-height: 1.85; }
.about-copy p:last-child { margin-bottom: 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.values-grid article { padding: 22px 25px 0 0; }
.values-grid article:not(:first-child) { padding-left: 23px; border-left: 1px solid var(--line); }
.values-grid b { color: var(--red); font-size: 11px; }
.values-grid h3 { margin: 18px 0 7px; font-size: 17px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card { min-height: 172px; padding: 21px 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease; }
.capability-card:hover { background: #f8fafb; }
.capability-card > span { color: var(--red); font-size: 10px; font-weight: 700; }
.capability-card h3 { margin: 22px 0 7px; font-size: 17px; }
.capability-card p { max-width: 285px; margin: 0; color: var(--muted); font-size: 11px; }
.service-photo { position: relative; height: 350px; }
.service-photo::after { content: ""; position: absolute; right: -10px; bottom: -10px; width: 44%; height: 50%; border-right: 1px solid var(--red); border-bottom: 1px solid var(--red); pointer-events: none; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.vacancy-search-section { padding-top: 52px; }
.vacancy-search { display: grid; grid-template-columns: 1.5fr repeat(4, minmax(110px, 1fr)) auto; align-items: end; gap: 10px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.vacancy-search label, .field { display: flex; flex-direction: column; gap: 7px; }
.vacancy-search label > span, .field > span { color: #4e6375; font-size: 10px; font-weight: 700; }
.vacancy-search input, .vacancy-search select, .field input, .field select, .field textarea { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid #d3dde5; border-radius: 0; outline: 0; background: #fff; color: var(--ink); font-size: 12px; transition: border .2s, box-shadow .2s; }
.vacancy-search input:focus, .vacancy-search select:focus, .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,79,145,.1); }
.vacancy-search .button { min-height: 45px; padding-inline: 15px; white-space: nowrap; }
.results-bar { display: flex; align-items: center; justify-content: space-between; padding-block: 23px 15px; }
.results-bar p { margin: 0; color: var(--muted); font-size: 11px; }
.results-bar strong { color: var(--navy); }
.results-bar a { color: var(--blue); font-size: 11px; }
.listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.listing-card { display: flex; min-height: 193px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); transition: border-color .2s, transform .2s, box-shadow .2s; }
.listing-card-content { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.listing-card-top { display: flex; justify-content: space-between; gap: 10px; }
.category-label { color: var(--blue); font-size: 10px; font-weight: 700; }
.demo-label { display: inline-flex; align-items: center; padding: 3px 7px; color: #a82626; background: #fdeceb; font-size: 8px; font-weight: 800; line-height: 1.4; letter-spacing: .06em; white-space: nowrap; }
.demo-warning { color: #762424; background: #fff0ef; border-block: 1px solid #f4d2d0; font-size: 11px; }
.demo-warning > .container { padding-block: 12px; }
.demo-warning strong { margin-right: 5px; font-weight: 800; }
.location-label { color: var(--muted); font-size: 10px; }
.listing-card h2 { margin: 20px 0 11px; font-size: 19px; }
.listing-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 19px; }
.listing-meta span { padding: 3px 8px; color: #53697c; background: var(--soft); font-size: 9px; }
.listing-card-bottom { display: flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); color: #687d8d; font-size: 10px; }
.listing-card-bottom b { color: var(--blue); font-size: 10px; }
.listing-empty { grid-column: 1 / -1; padding: 42px 20px; text-align: center; border: 1px dashed #c7d3dc; }
.listing-empty .empty-symbol { display: block; margin-bottom: 11px; }
.listing-empty h2 { margin-bottom: 5px; font-size: 22px; }
.listing-empty p { margin-bottom: 17px; color: var(--muted); font-size: 12px; }
.detail-hero { padding-block: 38px 0; background: #f3f6f8; }
.vacancy-detail-image { padding-top: 28px; background: #fff; }
.vacancy-detail-image img { width: 100%; max-height: 390px; aspect-ratio: 16 / 8; object-fit: cover; }
.back-link { display: inline-block; margin-bottom: 34px; color: var(--blue); font-size: 11px; font-weight: 700; }
.detail-head { display: flex; align-items: end; justify-content: space-between; gap: 25px; padding-bottom: 30px; }
.detail-head h1 { margin-bottom: 9px; font-size: 48px; }
.detail-head .eyebrow { margin-bottom: 13px; }
.detail-location { margin: 0; color: var(--muted); font-size: 13px; }
.detail-location span { padding-inline: 5px; color: var(--red); }
.detail-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d5dfe6; }
.detail-facts div { display: grid; gap: 4px; padding: 18px 20px 19px 0; }
.detail-facts div:not(:first-child) { padding-left: 20px; border-left: 1px solid #d5dfe6; }
.detail-facts span, .summary-row span { color: var(--muted); font-size: 10px; }
.detail-facts strong { color: var(--navy); font: 700 12px var(--display); }
.detail-section { padding-block: 64px; }
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 75px; }
.detail-content section { margin-bottom: 37px; }
.detail-content .eyebrow { margin-bottom: 10px; }
.detail-content h2 { margin-bottom: 12px; font-size: 25px; }
.prose { color: #536b7d; font-size: 13px; line-height: 1.85; }
.detail-sidebar { align-self: start; }
.role-summary { padding: 21px; border: 1px solid var(--line); }
.role-summary .eyebrow { margin-bottom: 11px; }
.summary-row { display: grid; gap: 4px; padding-block: 12px; border-top: 1px solid var(--line); }
.summary-row strong { color: var(--navy); font: 600 12px var(--display); }
.role-summary .button { margin-top: 14px; }
.legal-note { color: #718292; font-size: 10px; line-height: 1.65; }
.application-section { padding-block: 78px; background: #f3f6f8; }
.form-layout { display: grid; grid-template-columns: .7fr 1.25fr; align-items: start; gap: 66px; }
.form-aside { position: sticky; top: 134px; }
.form-aside h2 { font-size: 35px; }
.form-aside > p:not(.eyebrow) { max-width: 360px; color: var(--muted); font-size: 13px; }
.secure-note { display: flex; gap: 13px; align-items: flex-start; margin-top: 30px; padding-top: 17px; border-top: 1px solid #d4dfe7; }
.secure-note > span { color: var(--red); font-size: 14px; font-weight: 700; }
.secure-note p { margin: 0; color: #607587; font-size: 11px; }
.form-panel { padding: 28px; border: 1px solid #e0e7ec; background: #fff; }
.form-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 13px; }
.field > span b, .consent b { color: var(--red); }
.field > span small { margin-left: 6px; color: var(--muted); font-size: 9px; font-weight: 400; }
.field textarea { min-height: 110px; resize: vertical; }
.field-wide { grid-column: 1 / -1; }
.field input[type="file"] { padding: 8px; font-size: 11px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 20px; color: #546b7d; font-size: 10px; }
.consent input { margin-top: 3px; accent-color: var(--blue); }
.form-notice { margin: 0 0 20px; padding: 11px 13px; color: #8a2626; border-left: 3px solid var(--red); background: #fff3f3; font-size: 11px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-section-title { display: flex; align-items: center; gap: 12px; margin: 27px 0 17px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.form-section-title:first-of-type { margin-top: 0; }
.form-section-title span { color: var(--red); font-size: 10px; font-weight: 700; }
.form-section-title h3 { margin: 0; font-size: 15px; }
.form-panel > .legal-note { margin: 19px 0; }
.aside-contact { display: grid; gap: 5px; margin-top: 25px; font-size: 11px; }
.aside-contact span { color: var(--muted); }
.aside-contact a { color: var(--blue); font-weight: 700; }
.aside-contact b { margin-left: 8px; color: var(--red); }
.page-hero-hire { background: #edf3f7; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.15fr; gap: 90px; }
.contact-aside h2 { font-size: 34px; }
.contact-lines { display: grid; gap: 0; margin-top: 27px; border-top: 1px solid var(--line); }
.contact-lines > * { position: relative; display: grid; gap: 3px; padding: 13px 24px 13px 0; border-bottom: 1px solid var(--line); }
.contact-lines span { color: var(--muted); font-size: 10px; }
.contact-lines strong { color: var(--navy); font: 700 12px var(--display); }
.contact-lines > a b { position: absolute; top: 23px; right: 4px; color: var(--red); }
.contact-aside > .legal-note { margin-top: 23px; }
.contact-form { padding: 25px; }
.thank-you { min-height: 500px; padding-block: 100px; background: #f3f6f8; }
.thank-you .container { max-width: 760px; text-align: center; }
.thank-you .eyebrow { justify-content: center; }
.thank-check { display: grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 21px; border-radius: 50%; color: #fff; background: var(--green); font-size: 21px; }
.thank-you h1 { font-size: 54px; }
.thank-you .container > p:not(.eyebrow) { max-width: 500px; margin: 0 auto 24px; color: var(--muted); font-size: 13px; }
.not-found { min-height: 475px; padding-block: 90px; background: #f3f6f8; }
.not-found p:not(.eyebrow) { color: var(--muted); }
@keyframes lift-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rise-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
@media (max-width: 1080px) {
    .nav-row { min-height: 69px; }
    .form-aside { top: 127px; }
    .desktop-hire { display: none; }
    .menu-toggle { display: grid; gap: 5px; margin-left: auto; padding: 11px 4px 11px 11px; cursor: pointer; }
    .menu-toggle span { display: block; width: 23px; height: 2px; background: var(--navy); transition: transform .2s; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .main-nav { position: absolute; z-index: 10; top: 100%; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 6px 18px 17px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 14px 18px rgba(18,53,91,.08); font-size: 12px; white-space: normal; transform: none; }
    .main-nav.is-open { display: flex; flex-direction: column; }
    .main-nav > a:not(.button) { padding: 11px 0; border-bottom: 1px solid #edf1f4; }
    .main-nav .mobile-hire { display: inline-flex; align-self: stretch; width: 100%; margin-top: 14px; }
}
@media (max-width: 1000px) {
    .container { width: min(var(--container), calc(100% - 42px)); }
    .hero-grid { min-height: 500px; padding-top: 38px; }
    .hero-copy { max-width: 56%; }
    .hero-visual { right: -21px; width: 76%; height: auto; margin: 0; }
    .hero-ribbon { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .hero-ribbon-item strong { font-size: 14px; }
    .vacancy-search { grid-template-columns: repeat(3, 1fr); }
    .vacancy-search .search-main { grid-column: span 2; }
    .industries-grid, .why-grid { gap: 55px; }
    .faq-grid { gap: 55px; }
    .form-layout { gap: 35px; }
    .contact-layout { gap: 50px; }
    .footer-main { gap: 28px; }
}
@media (max-width: 740px) {
    body { font-size: 14px; }
    .container { width: calc(100% - 36px); }
    .topline-inner { min-height: 31px; font-size: 9px; }
    .topline-inner > span { max-width: 68%; }
    .topline a { font-size: 9px; }
    .nav-row { min-height: 69px; }
    .brand-mark { font-size: 26px; }
    .main-nav > a:not(.button) { padding-block: 12px; }
    .hero-grid { display: grid; min-height: 0; grid-template-columns: 1fr; gap: 28px; padding-top: 38px; padding-bottom: 26px; }
    .hero-copy { max-width: none; padding: 0; }
    .hero h1 { font-size: clamp(43px, 9vw, 57px); }
    .hero-copy .eyebrow { margin-bottom: 19px; }
    .hero-lede { max-width: 540px; font-size: 14px; }
    .hero-proof { margin-top: 25px; }
    .hero-visual { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: auto; height: 255px; margin: 0 -18px; }
    .hero-visual::after { background: linear-gradient(0deg, rgba(12,35,57,.68), transparent 62%); }
    .visual-caption { left: 18px; right: 18px; bottom: 15px; font-size: 13px; }
    .visual-stamp { right: 10px; width: 65px; height: 65px; }
    .hero-ribbon { grid-template-columns: 1fr 1fr; gap: 10px 12px; margin-top: -26px; width: min(var(--container), calc(100% - 36px)); }
    .hero-ribbon-item { min-height: 140px; }
    .hero-ribbon-item strong { font-size: 13px; line-height: 1.35; }
    .hero-ribbon-copy { font-size: 10px; }
    .section { padding-block: 66px; }
    .section-heading, .process-top { display: block; margin-bottom: 29px; }
    .section-heading > p, .process-top > p { width: auto; max-width: 500px; margin-top: 15px; }
    h2 { font-size: 32px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-quick-grid { grid-template-columns: 1fr 1fr; }
    .service-tile, .service-tile:not(:first-child), .tile-accent { min-height: 210px; padding: 21px 19px; border-right: 0; border-bottom: 1px solid var(--line); }
    .service-tile:last-child { border-bottom: 0; }
    .tile-number { margin-bottom: 16px; }
    .service-tile h3 { font-size: 18px; }
    .industries-grid, .why-grid, .faq-grid, .about-grid { grid-template-columns: 1fr; gap: 35px; }
    .industry-list { grid-template-columns: 1fr 1fr; }
    .vacancy-cards { grid-template-columns: 1fr; }
    .vacancy-card { min-height: 190px; }
    .vacancy-empty { align-items: flex-start; flex-wrap: wrap; gap: 10px 16px; }
    .vacancy-empty .button { margin-left: 39px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-grid article, .process-grid article:not(:first-child) { min-height: 155px; padding: 14px 12px; border: 1px solid var(--line); }
    .process-grid article:nth-child(even) { padding-left: 12px; }
    .process-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
    .process-grid h3 { margin-top: 15px; font-size: 15px; }
    .employer-band-inner { display: grid; justify-items: start; }
    .secondary-grid { grid-template-columns: 1fr; }
    .why-image { height: 310px; }
    .faq-grid { gap: 24px; }
    .closing-inner { display: block; }
    .closing-inner h2 { font-size: 30px; }
    .closing-actions { margin-top: 22px; }
    .closing-cta { padding-block: 48px; }
    .closing-cta::after { right: -28px; bottom: -52px; font-size: 170px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 30px 19px; padding-block: 39px 30px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { display: grid; gap: 4px; font-size: 8px; }
    .page-hero { padding-block: 61px 52px; }
    .page-hero::after { right: 18px; top: 19px; width: 70px; height: 70px; }
    .page-hero h1, .page-hero-compact h1 { max-width: 90%; font-size: clamp(39px, 9vw, 54px); }
    .page-hero-inner > p:not(.eyebrow) { max-width: 530px; font-size: 13px; }
    .about-grid { gap: 19px; }
    .about-copy { font-size: 13px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .values-grid article, .values-grid article:not(:first-child) { min-height: 165px; padding: 17px 13px 15px 0; border-left: 0; }
    .values-grid article:nth-child(even) { padding-left: 13px; border-left: 1px solid var(--line); }
    .values-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .capability-card { min-height: 155px; padding: 16px 13px; }
    .capability-card h3 { margin-top: 18px; font-size: 14px; }
    .capability-card p { font-size: 10px; }
    .service-photo { height: 265px; margin-right: 9px; }
    .vacancy-search { grid-template-columns: 1fr 1fr; gap: 12px; }
    .vacancy-search .search-main { grid-column: 1 / -1; }
    .vacancy-search .button { grid-column: 1 / -1; }
    .results-bar { padding-top: 17px; }
    .listing-grid { grid-template-columns: 1fr; }
    .listing-card { min-height: 180px; }
    .listing-card-content { padding: 16px; }
    .detail-hero { padding-top: 26px; }
    .back-link { margin-bottom: 23px; }
    .detail-head { display: block; padding-bottom: 20px; }
    .detail-head h1 { font-size: 38px; }
    .detail-head .button { margin-top: 19px; }
    .detail-facts { grid-template-columns: 1fr 1fr; }
    .detail-facts div { padding: 13px 8px 13px 0; }
    .detail-facts div:not(:first-child) { padding-left: 10px; }
    .detail-facts div:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid #d5dfe6; }
    .detail-facts div:nth-child(4) { border-top: 1px solid #d5dfe6; }
    .detail-layout { grid-template-columns: 1fr; gap: 15px; }
    .detail-section { padding-block: 45px; }
    .role-summary { padding: 17px; }
    .application-section { padding-block: 50px; }
    .form-layout { grid-template-columns: 1fr; gap: 25px; }
    .form-aside { position: static; }
    .form-aside h2 { font-size: 30px; }
    .form-aside > p:not(.eyebrow) { max-width: 520px; }
    .secure-note { max-width: 460px; margin-top: 19px; }
    .form-panel { padding: 19px 15px; }
    .form-fields { grid-template-columns: 1fr; gap: 13px; }
    .field-wide { grid-column: auto; }
    .form-section-title { margin-top: 22px; }
    .contact-layout { grid-template-columns: 1fr; gap: 28px; }
    .contact-aside h2 { font-size: 30px; }
    .contact-form { padding: 18px 15px; }
    .thank-you { min-height: 420px; padding-block: 75px; }
    .thank-you h1 { font-size: 43px; }
    .not-found { min-height: 400px; padding-block: 70px; }
}
@media (max-width: 480px) {
    .hero-ribbon { grid-template-columns: 1fr; }
    .hero-ribbon-item { min-height: 104px; }
}
@media (max-width: 380px) {
    .topline-inner > span { max-width: 63%; }
    .hero h1 { font-size: 33px; }
    .hero-actions { gap: 8px; }
    .hero-actions .button { flex: 1 1 110px; gap: 8px; padding-inline: 9px; font-size: 12px; }
    .brand-copy small { font-size: 7px; }
    .capability-grid { grid-template-columns: 1fr; }
    .capability-card { min-height: 130px; }
    .footer-main { column-gap: 12px; }
}
