@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --orange: #f05a22;
    --orange-dark: #c94312;
    --navy: #0b1d33;
    --navy-2: #102844;
    --teal: #22a7bd;
    --gold: #d7ae5f;
    --text: #1e293b;
    --muted: #64748b;
    --light: #f8fafc;
    --border: rgba(15, 23, 42, .10);
    --shadow: 0 18px 60px rgba(15, 23, 42, .12);
    --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
    width: 46px; height: 46px; border-radius: 14px;
    display: grid; place-items: center;
    font-size: 31px; font-weight: 900; line-height: 1;
    color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 24px rgba(240, 90, 34, .28);
}
.brand strong { display: block; color: var(--navy); font-size: 18px; letter-spacing: -.03em; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-top: 5px; }
.site-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.site-nav a { padding: 10px 12px; border-radius: 999px; font-size: 14px; font-weight: 700; color: #475569; }
.site-nav a:hover, .site-nav a.active { color: var(--orange); background: rgba(240,90,34,.08); }
.header-cta { padding: 11px 18px; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 800; font-size: 14px; box-shadow: 0 10px 30px rgba(11, 29, 51, .22); }
.menu-toggle { display: none; margin-left: auto; border: 0; background: var(--navy); color: #fff; width: 44px; height: 44px; border-radius: 14px; font-size: 22px; }
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
      radial-gradient(circle at 12% 20%, rgba(240,90,34,.55), transparent 28%),
      radial-gradient(circle at 90% 15%, rgba(34,167,189,.36), transparent 25%),
      linear-gradient(135deg, var(--navy), #07111f 70%);
    padding: 96px 0 88px;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 10px; background: currentColor; }
.eyebrow.light { color: #ffd7c4; }
.hero h1, .page-hero h1 { margin: 14px 0 18px; font-size: clamp(42px, 6vw, 74px); line-height: .98; letter-spacing: -.06em; }
.hero p { font-size: 19px; max-width: 650px; color: rgba(255,255,255,.82); margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; border-radius: 999px; padding: 13px 22px; font-weight: 900; transition: .25s ease; }
.btn.primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; box-shadow: 0 18px 32px rgba(240,90,34,.25); }
.btn.secondary { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.btn.light { background: #fff; color: var(--navy); }
.btn:hover { transform: translateY(-2px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; }
.trust-row span { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); border-radius: 999px; padding: 8px 12px; }
.hero-card { position: relative; border: 1px solid rgba(255,255,255,.16); border-radius: 32px; padding: 22px; background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06)); box-shadow: 0 34px 90px rgba(0,0,0,.38); backdrop-filter: blur(14px); }
.hero-card img { border-radius: 24px; width: 100%; aspect-ratio: 1.15; object-fit: cover; box-shadow: 0 22px 60px rgba(0,0,0,.26); }
.orb { position: absolute; right: -38px; top: -35px; width: 125px; height: 125px; border-radius: 50%; background: radial-gradient(circle, var(--teal), transparent 68%); filter: blur(4px); opacity: .8; }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.mini-cards div { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 16px; }
.mini-cards strong, .mini-cards small { display: block; }
.mini-cards small { color: rgba(255,255,255,.72); }
.section { padding: 86px 0; }
.stats-section { padding: 0; margin-top: -42px; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.stat-card strong { display: block; color: var(--navy); font-size: 30px; letter-spacing: -.04em; }
.stat-card span { color: var(--muted); font-weight: 700; font-size: 14px; }
.bg-soft { background: linear-gradient(180deg, #fff, #f8fafc); }
.bg-navy { background: var(--navy); color: #fff; }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: start; }
.section-heading h2, .section-title h2, .lead-box h2, .about-card h2, .image-content-grid h2 { margin: 12px 0 18px; color: var(--navy); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.05em; }
.bg-navy .section-heading h2 { color: #fff; }
.section-title { max-width: 740px; margin-bottom: 38px; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title.center .eyebrow { justify-content: center; }
.section-title p { color: var(--muted); margin: 0; }
.lead-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.lead-box p { color: #475569; margin-top: 0; }
.text-link, .card-link { color: var(--orange); font-weight: 900; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-grid.large { grid-template-columns: repeat(3, 1fr); }
.service-card, .value-card, .partner-card, .associate-card, .certificate-card, .about-card, .form-card, .contact-info { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: 0 16px 48px rgba(15,23,42,.08); }
.service-card h3, .service-card h2, .value-card h3, .value-card h2, .partner-card h3, .associate-card h2, .certificate-card h2 { margin: 14px 0 10px; color: var(--navy); line-height: 1.12; letter-spacing: -.03em; }
.service-card p, .value-card p, .associate-card p, .certificate-card p { color: var(--muted); margin-bottom: 0; }
.icon-bubble { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: rgba(240,90,34,.10); color: var(--orange); font-size: 24px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { position: relative; overflow: hidden; }
.value-card::after { content: ""; position: absolute; right: -38px; bottom: -38px; width: 110px; height: 110px; border-radius: 50%; background: rgba(240,90,34,.08); }
.value-card > span { font-size: 34px; }
.cta-panel-section { padding-top: 0; }
.cta-panel { background: linear-gradient(135deg, var(--orange), var(--navy)); border-radius: 34px; padding: 48px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: 0 24px 75px rgba(240,90,34,.22); }
.cta-panel h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; margin: 12px 0; letter-spacing: -.05em; }
.cta-panel p { max-width: 670px; color: rgba(255,255,255,.82); margin: 0; }
.page-hero { background: linear-gradient(135deg, var(--navy), #07111f); color: #fff; padding: 86px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -120px; bottom: -120px; width: 340px; height: 340px; border-radius: 50%; background: rgba(240,90,34,.28); filter: blur(2px); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.78); font-size: 18px; }
.about-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 26px; align-items: start; }
.detail-list { display: grid; gap: 14px; }
.detail-list div { background: var(--light); border: 1px solid var(--border); border-radius: 18px; padding: 20px; }
.detail-list span { color: var(--muted); display: block; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.detail-list strong { display: block; color: var(--navy); margin-top: 5px; }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; }
.steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.step span { color: var(--orange); font-weight: 900; }
.step h3 { margin: 8px 0; color: var(--navy); }
.step p { color: var(--muted); margin: 0; }
.image-content-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 44px; }
.image-content-grid.reverse { grid-template-columns: 1fr 1fr; }
.image-frame { border-radius: 30px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: #fff; padding: 10px; }
.image-frame img { width: 100%; border-radius: 22px; }
.tick-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.tick-list li { position: relative; padding-left: 26px; color: #475569; font-weight: 600; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 900; }
.industries-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-tags span { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); border-radius: 999px; padding: 11px 14px; font-weight: 800; color: rgba(255,255,255,.86); }
.feature-values .value-card { padding: 36px; }
.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.partner-card { text-align: center; }
.avatar { margin: 0 auto 16px; width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; background: linear-gradient(135deg, var(--orange), var(--navy)); color: #fff; font-size: 30px; font-weight: 900; }
.partner-card p { color: var(--muted); margin: 0 0 8px; font-weight: 700; }
.partner-card span { display: inline-flex; border-radius: 999px; background: rgba(34,167,189,.10); color: var(--teal); padding: 6px 12px; font-weight: 900; font-size: 12px; }
.associate-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.associate-card small { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; display: block; margin-top: 12px; }
.certificate-grid { display: grid; gap: 24px; }
.certificate-card { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.certificate-card img { border-radius: 18px; border: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-info h2, .form-card h2 { color: var(--navy); margin: 0 0 20px; }
.contact-item { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--border); }
.contact-item span { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; background: rgba(240,90,34,.10); }
.contact-item small { display: block; color: var(--muted); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: .10em; }
.contact-item a { color: var(--navy); font-weight: 900; }
.contact-item p { margin: 0; color: #475569; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--border); background: #f8fafc; border-radius: 16px; padding: 14px 16px; font: inherit; color: var(--text); outline: none; transition: .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(240,90,34,.12); background: #fff; }
.alert { border-radius: 16px; padding: 14px 16px; margin-bottom: 16px; font-weight: 800; }
.alert.success { background: rgba(22,163,74,.10); color: #15803d; }
.alert.error { background: rgba(220,38,38,.10); color: #b91c1c; }
.form-note { color: var(--muted); font-size: 13px; margin-bottom: 0; }
code { background: rgba(15,23,42,.06); padding: 2px 6px; border-radius: 7px; }
.footer { background: #07111f; color: rgba(255,255,255,.75); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .65fr 1fr .8fr; gap: 34px; }
.footer h3 { color: #fff; margin: 0 0 14px; }
.footer p { margin-top: 0; }
.footer a:hover { color: #fff; }
.footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.footer-brand strong { color: #fff; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.social-row a { border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 800; }
.copyright { border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; margin-top: 42px; font-size: 13px; }
.reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@media (max-width: 1040px) {
    .header-cta { display: none; }
    .site-nav a { padding: 9px 10px; }
    .hero-grid, .split-grid, .about-grid, .process-grid, .industries-grid, .image-content-grid, .contact-grid { grid-template-columns: 1fr; }
    .service-grid, .service-grid.large { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .menu-toggle { display: grid; place-items: center; }
    .site-nav { display: none; position: absolute; top: 78px; left: 14px; right: 14px; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 10px; box-shadow: var(--shadow); }
    .site-nav.open { display: grid; }
    .site-nav a { border-radius: 12px; }
    .hero { padding: 66px 0 84px; }
    .hero h1, .page-hero h1 { font-size: clamp(36px, 12vw, 54px); }
    .section { padding: 64px 0; }
    .stats-grid, .values-grid, .partner-grid, .associate-grid, .steps, .footer-grid, .service-grid, .service-grid.large, .certificate-card { grid-template-columns: 1fr; }
    .stats-section { margin-top: -32px; }
    .cta-panel { padding: 32px; display: grid; }
    .mini-cards { grid-template-columns: 1fr; }
    .copyright { display: grid; }
}

/* 2026 homepage video, expanded verticals and career updates */
.video-hero {
    min-height: calc(100svh - 78px);
    padding: 96px 0 118px;
    display: flex;
    align-items: center;
    background: #07111f url('../images/hero-poster.jpg') center / cover no-repeat;
    isolation: isolate;
}
.video-hero::before { display: none; }
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(4, 13, 26, .92) 0%, rgba(4, 13, 26, .72) 44%, rgba(4, 13, 26, .28) 78%, rgba(4, 13, 26, .38) 100%),
        linear-gradient(180deg, rgba(4, 13, 26, .12), rgba(4, 13, 26, .68));
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.video-hero .hero-copy { max-width: 820px; }
.video-hero h1 { max-width: 820px; text-shadow: 0 10px 45px rgba(0,0,0,.35); }
.video-hero p { max-width: 700px; }
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero-scroll span { font-size: 18px; animation: hero-bounce 1.6s ease-in-out infinite; }
@keyframes hero-bounce { 50% { transform: translateY(6px); } }
.home-service-grid { grid-template-columns: repeat(3, 1fr); }
.home-service-grid .service-card { min-height: 310px; display: flex; flex-direction: column; }
.home-service-grid .card-link { margin-top: auto; padding-top: 18px; }
.career-home-section { padding-top: 0; }
.career-home {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 38px;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 90% 15%, rgba(34,167,189,.32), transparent 30%),
        linear-gradient(135deg, #07111f, var(--navy-2));
    border-radius: 34px;
    padding: 50px;
    box-shadow: 0 24px 75px rgba(11,29,51,.22);
}
.career-home h2 { margin: 12px 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -.05em; }
.career-home p { color: rgba(255,255,255,.78); max-width: 600px; }
.career-pillars { display: grid; gap: 12px; }
.career-pillars div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
}
.career-pillars span { color: #ffd7c4; font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.career-page-hero { min-height: 520px; display: flex; align-items: center; }
.career-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,17,31,.93), rgba(7,17,31,.62)),
        url('../images/hero-poster.jpg') center / cover no-repeat;
}
.career-page-hero::after { z-index: 0; }
.career-page-hero .container { z-index: 1; }
.career-page-hero .btn { margin-top: 14px; }
.career-intro-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.career-feature {
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 36px;
    background: #fff;
    box-shadow: 0 16px 48px rgba(15,23,42,.08);
}
.career-feature h2 { margin: 12px 0; color: var(--navy); letter-spacing: -.04em; }
.career-feature p { margin-bottom: 0; color: var(--muted); }
.career-number { display: inline-flex; color: var(--orange); font-weight: 900; letter-spacing: .14em; }
.job-search { max-width: 720px; margin: 0 auto 28px; }
.job-search label { display: block; margin-bottom: 8px; color: var(--navy); font-weight: 900; }
.job-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.job-card {
    display: grid;
    align-content: start;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 16px 48px rgba(15,23,42,.08);
}
.job-card[hidden] { display: none; }
.job-card small { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.job-card h3 { margin: 4px 0 8px; color: var(--navy); font-size: 24px; letter-spacing: -.035em; }
.job-card p { color: var(--muted); margin: 0; }
.job-card .btn { justify-self: start; margin-top: auto; }
.job-empty { text-align: center; color: var(--muted); font-weight: 800; }
.general-application {
    margin-top: 28px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 24px;
    background: var(--navy);
    color: #fff;
}
.general-application h3 { margin: 0 0 4px; }
.general-application p { margin: 0; color: rgba(255,255,255,.72); }
.btn.secondary.dark { background: #fff; color: var(--navy); border-color: #fff; }

@media (max-width: 1040px) {
    .home-service-grid, .job-grid { grid-template-columns: repeat(2,1fr); }
    .career-home, .career-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .video-hero { min-height: 720px; padding: 76px 0 110px; align-items: flex-end; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(4,13,26,.30), rgba(4,13,26,.94) 68%, rgba(4,13,26,.98));
    }
    .video-hero h1 { font-size: clamp(42px, 14vw, 64px); }
    .hero-scroll { bottom: 18px; }
    .home-service-grid, .job-grid { grid-template-columns: 1fr; }
    .career-home { padding: 32px 24px; border-radius: 26px; }
    .career-feature { padding: 28px; }
    .general-application { display: grid; padding: 24px; }
    .career-page-hero { min-height: 460px; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-video { display: none; }
    .hero-scroll span { animation: none; }
}

/* Career application popup and form delivery updates */
body.modal-open { overflow: hidden; }
.form-trap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.submit-wide { width: 100%; min-height: 52px; }
.btn:disabled { opacity: .7; cursor: wait; transform: none; }
.career-status { max-width: 760px; margin: 0 auto 28px; text-align: center; }

.application-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}
.application-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: default;
    background: rgba(4, 13, 26, .78);
    backdrop-filter: blur(8px);
}
.application-dialog {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: calc(100svh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 34px 100px rgba(0,0,0,.38);
    transform: translateY(18px) scale(.985);
    transition: transform .22s ease;
}
.application-modal.is-open .application-dialog { transform: translateY(0) scale(1); }
.modal-close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font: inherit;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15,23,42,.12);
}
.modal-heading { padding-right: 48px; margin-bottom: 24px; }
.modal-heading h2 {
    margin: 10px 0 8px;
    color: var(--navy);
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.05;
    letter-spacing: -.045em;
}
.modal-heading p { margin: 0; color: var(--muted); }
.career-application-form { display: grid; gap: 16px; }
.career-application-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: var(--navy);
    font-weight: 800;
}
.form-row.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.file-field input[type="file"] {
    padding: 10px;
    background: #fff;
    border-style: dashed;
}
.file-field input[type="file"]::file-selector-button {
    margin-right: 12px;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--navy);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.file-field small { color: var(--muted); font-weight: 600; }

@media (max-width: 760px) {
    .application-modal { padding: 0; place-items: end center; }
    .application-dialog {
        width: 100%;
        max-height: 94svh;
        border-radius: 26px 26px 0 0;
        padding: 24px 18px max(24px, env(safe-area-inset-bottom));
    }
    .form-row.two-column { grid-template-columns: 1fr; gap: 16px; }
    .modal-heading { padding-right: 44px; }
    .modal-close { width: 40px; height: 40px; }
    .job-card .btn, .general-application .btn { width: 100%; }
    .contact-info, .form-card { padding: 22px; border-radius: 22px; }
    .contact-item { align-items: flex-start; }
    .page-hero.compact { padding: 64px 0; }
    input, select, textarea { font-size: 16px; }
}

@media (max-width: 390px) {
    .container { width: min(100% - 22px, 1180px); }
    .application-dialog { padding-left: 14px; padding-right: 14px; }
    .career-feature, .job-card, .contact-info, .form-card { padding: 20px; }
    .general-application { padding: 20px; }
}
