@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --primary: #304295;
    --primary-dark: #1f2e73;
    --primary-soft: #eef1ff;
    --ink: #111936;
    --muted: #5f6678;
    --surface: #ffffff;
    --surface-soft: #f6f7fb;
    --line: #dde1ec;
    --success: #13795b;
    --shadow-sm: 0 12px 35px rgba(20, 31, 75, .08);
    --shadow-lg: 0 30px 70px rgba(20, 31, 75, .16);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis:not(.lenis-autoToggle).lenis-stopped { overflow: clip; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }
.lenis.lenis-autoToggle { transition-property: overflow; transition-duration: 1ms; transition-behavior: allow-discrete; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1.25rem; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: "Manrope", ui-sans-serif, system-ui, sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -.045em; }
h1 { font-size: clamp(2.8rem, 5.6vw, 5.9rem); }
h2 { font-size: clamp(2.1rem, 3.5vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.65rem); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section--soft { background: var(--surface-soft); }
.section--primary { color: white; background: var(--primary); }
.section--dark { color: white; background: var(--ink); }
.section--primary h2, .section--primary h3, .section--dark h2, .section--dark h3 { color: white; }
.section--compact { padding: 78px 0; }
.section-header { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); align-items: end; gap: 50px; margin-bottom: 55px; }
.section-header--center { display: block; max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-header p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section--primary .section-header p, .section--dark .section-header p { color: rgba(255,255,255,.72); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); font-size: .75rem; font-weight: 800; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; margin-bottom: 18px; }
.eyebrow::before { width: 25px; height: 2px; background: currentColor; content: ""; }
.eyebrow--light { color: rgba(255,255,255,.78); }
.lead { color: var(--muted); font-size: 1.18rem; line-height: 1.8; }
.text-primary { color: var(--primary); }
.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; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; padding: 13px 23px; font-size: .92rem; font-weight: 750; line-height: 1; transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--primary); box-shadow: 0 10px 25px rgba(48, 66, 149, .24); }
.button--primary:hover { background: var(--primary-dark); }
.button--outline { color: var(--primary); border-color: rgba(48, 66, 149, .28); background: white; }
.button--outline:hover { color: white; background: var(--primary); border-color: var(--primary); }
.button--white { color: var(--primary); background: white; }
.button--white:hover { color: white; background: var(--ink); }
.button--ghost { color: white; border-color: rgba(255,255,255,.32); background: transparent; }
.button--ghost:hover { background: rgba(255,255,255,.1); }

.site-header { position: relative; z-index: 100; background: white; }
.topbar { color: rgba(255,255,255,.82); background: var(--ink); font-size: .78rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.topbar p { margin: 0; }
.topbar__links { display: flex; gap: 22px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: white; }
.nav-shell { background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(17,25,54,.08); }
.nav-shell.is-sticky { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 10px 30px rgba(17,25,54,.08); animation: slideDown .25s ease; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: none; } }
.nav-shell__inner { min-height: 82px; display: flex; align-items: center; gap: 44px; }
.brand { flex: 0 0 auto; width: 145px; height: 70px; overflow: hidden; border-radius: 7px; }
.brand__logo, .footer-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.primary-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 30px; }
.primary-nav > a, .nav-dropdown__toggle { position: relative; border: 0; padding: 28px 0; color: #30364b; background: transparent; font-family: "Manrope", ui-sans-serif, system-ui, sans-serif; font-size: .98rem; font-weight: 700; white-space: nowrap; cursor: pointer; }
.primary-nav > a::after, .nav-dropdown__toggle::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; content: ""; }
.primary-nav > a:hover::after, .primary-nav > a.is-active::after, .nav-dropdown:hover .nav-dropdown__toggle::after, .nav-dropdown__toggle.is-active::after { transform: scaleX(1); transform-origin: left; }
.primary-nav > a.is-active, .nav-dropdown__toggle.is-active { color: var(--primary); }
.nav-dropdown { position: relative; }
.nav-chevron { width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; margin-left: 4px; transition: transform .2s ease; }
.nav-chevron svg { width: 14px; height: 14px; overflow: visible; }
.nav-chevron path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-dropdown:hover .nav-chevron, .nav-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: calc(100% - 2px); left: -22px; width: 270px; padding: 12px; visibility: hidden; opacity: 0; transform: translateY(10px); border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow-lg); transition: .2s ease; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { visibility: visible; opacity: 1; transform: none; }
.nav-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--muted); font-size: .88rem; font-weight: 650; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a.is-active { color: var(--primary); background: var(--primary-soft); }
.nav-cta { flex: 0 0 auto; min-height: 46px; padding-inline: 18px; font-size: .78rem; }
.nav-toggle { display: none; width: 46px; height: 46px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 0; border-radius: 50%; background: var(--primary-soft); cursor: pointer; }
.nav-toggle > span:not(.sr-only) { width: 20px; height: 2px; border-radius: 2px; background: var(--primary); transition: .2s ease; }

.hero { position: relative; min-height: 730px; display: grid; align-items: center; overflow: hidden; background: #f6f8ff; }
.hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, #f6f8ff 0%, rgba(246,248,255,.98) 31%, rgba(246,248,255,.55) 51%, rgba(246,248,255,0) 70%); z-index: 1; content: ""; }
.hero__media { position: absolute; inset: 0 0 0 30%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__content { position: relative; z-index: 2; width: min(680px, 58%); padding: 80px 0; }
.hero h1 { max-width: 690px; margin-bottom: 25px; }
.hero h1 span { color: var(--primary); }
.hero__content > p { max-width: 590px; margin-bottom: 34px; color: #555e75; font-size: 1.16rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 45px; color: #39405a; font-size: .84rem; font-weight: 700; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { width: 20px; height: 20px; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--primary); content: "✓"; font-size: .7rem; }

.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-strip__inner { min-height: 86px; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); align-items: center; gap: 25px; }
.trust-strip p { margin: 0; color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 9px; color: #424960; font-size: .88rem; font-weight: 730; }
.trust-item::before { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 6px var(--primary-soft); content: ""; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px, 7vw, 95px); }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media::after { position: absolute; width: 42%; height: 42%; right: -18px; bottom: -18px; z-index: -1; border-radius: var(--radius-md); background: var(--primary-soft); content: ""; }
.split__content h2 { margin-bottom: 24px; }
.split__content .lead { margin-bottom: 28px; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; }
.check-list li { position: relative; padding-left: 31px; color: #343b51; }
.check-list li::before { position: absolute; top: 5px; left: 0; width: 21px; height: 21px; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--primary); content: "✓"; font-size: .68rem; font-weight: 800; }
.section--primary .check-list li, .section--dark .check-list li, .career-card--dark .check-list li { color: rgba(255,255,255,.78); }
.section--primary .check-list li::before, .section--dark .check-list li::before, .career-card--dark .check-list li::before { color: var(--primary); background: white; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-md); overflow: hidden; }
.stat { padding: 38px; border-right: 1px solid rgba(255,255,255,.15); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 7px; color: white; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.06em; }
.stat span { color: rgba(255,255,255,.68); font-size: .88rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.service-card { position: relative; min-height: 310px; display: flex; flex-direction: column; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(48,66,149,.24); box-shadow: var(--shadow-lg); }
.service-card h3 { position: relative; z-index: 1; margin-bottom: 14px; }
.service-card p { position: relative; z-index: 1; color: var(--muted); font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-size: 1rem; line-height: 1.7; }
.service-card a { margin-top: auto; color: var(--primary); font-size: .86rem; font-weight: 780; }
.service-card::after { position: absolute; width: 120px; height: 120px; top: -70px; right: -60px; border-radius: 50%; background: var(--primary-soft); transition: transform .25s ease; content: ""; }
.service-card:hover::after { transform: scale(1.35); }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { min-height: 210px; display: flex; flex-direction: column; justify-content: center; padding: 28px; color: white; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); background: rgba(255,255,255,.06); transition: background .2s ease, transform .2s ease; }
.industry-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.industry-card h3 { color: white; font-size: 1.15rem; }
.industry-card p { margin: 11px 0 0; color: rgba(255,255,255,.76); font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-size: .96rem; line-height: 1.65; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; padding: 0 30px 0 0; }
.process-step:not(:last-child)::after { position: absolute; top: 23px; right: 0; width: calc(100% - 75px); height: 1px; transform: translateX(50%); background: var(--line); content: ""; }
.process-step__index { position: relative; z-index: 1; display: inline-block; margin-bottom: 25px; color: transparent; font-family: "Manrope", ui-sans-serif, system-ui, sans-serif; font-size: clamp(3.4rem, 5vw, 5rem); font-weight: 800; font-variant-numeric: tabular-nums; line-height: .82; letter-spacing: -.06em; -webkit-text-stroke: 2px var(--primary); paint-order: stroke fill; filter: drop-shadow(0 5px 12px rgba(48,66,149,.13)); }
.process-step h3 { margin-bottom: 10px; font-size: 1.12rem; }
.process-step p { color: var(--muted); font-size: .88rem; }

.feature-band { position: relative; overflow: hidden; color: white; background: var(--primary); border-radius: var(--radius-lg); }
.feature-band__inner { min-height: 420px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.feature-band__content { display: flex; flex-direction: column; justify-content: center; padding: 65px; }
.feature-band h2 { color: white; margin-bottom: 20px; }
.feature-band p { color: rgba(255,255,255,.74); }
.feature-band__image { min-height: 420px; height: 100%; }
.feature-band__image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.testimonial { max-width: 930px; margin: auto; text-align: center; }
.testimonial blockquote { margin: 0 0 25px; color: var(--ink); font-size: clamp(1.5rem, 2.8vw, 2.5rem); font-weight: 600; line-height: 1.45; letter-spacing: -.025em; }
.testimonial cite { color: var(--muted); font-style: normal; font-size: .9rem; }

.page-hero { position: relative; min-height: 460px; display: grid; align-items: end; overflow: hidden; color: white; background: var(--ink); }
.page-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(76,96,190,.75), transparent 35%), linear-gradient(120deg, #111936 20%, #263985 100%); content: ""; }
.page-hero::after { position: absolute; width: 480px; height: 480px; right: -120px; bottom: -300px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.03), 0 0 0 130px rgba(255,255,255,.03); content: ""; }
.page-hero__inner { position: relative; z-index: 1; padding: 115px 0 75px; }
.page-hero h1 { max-width: 900px; margin-bottom: 22px; color: white; font-size: clamp(2.7rem, 5vw, 4.9rem); }
.page-hero p { max-width: 710px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 720; text-transform: uppercase; letter-spacing: .1em; }
.page-hero--visual { min-height: 480px; align-items: stretch; }
.page-hero--visual::before { background: radial-gradient(circle at 45% 120%, rgba(76,96,190,.32), transparent 38%), linear-gradient(112deg, #111936 0%, #18265d 42%, #304295 66%, #25367f 100%); }
.page-hero--visual::after { right: 43%; bottom: -360px; }
.page-hero__inner--grid { width: 100%; max-width: none; min-height: 480px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0; padding: 0; }
.page-hero__copy { position: relative; z-index: 1; }
.page-hero--visual .page-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 54px clamp(38px, 5.5vw, 88px) 54px max(20px, calc((100vw - var(--container)) / 2)); }
.page-hero--visual h1 { max-width: 650px; font-size: clamp(2.45rem, 4vw, 4.25rem); }
.page-hero__visual { position: relative; min-height: 480px; height: 100%; overflow: hidden; border: 0; border-radius: 0; box-shadow: none; transform: none; }
.page-hero__visual::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(48,66,149,.56), transparent 24%), linear-gradient(0deg, rgba(17,25,54,.22), transparent 48%); content: ""; }
.page-hero__visual img { width: 100%; height: 100%; object-fit: cover; transform: none; }
.page-hero__badge { position: absolute; right: 26px; bottom: 24px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; color: var(--ink); border-radius: 999px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); font-size: .72rem; font-weight: 800; letter-spacing: .04em; transform: none; }
.page-hero__badge::before { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(48,66,149,.12); content: ""; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.value-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 26px; color: white; border-radius: 13px; background: var(--primary); font-size: .76rem; font-weight: 850; letter-spacing: .05em; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { margin: 0; color: var(--muted); font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-size: 1rem; line-height: 1.7; }

.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.role-card { padding: 30px; border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.role-card__badge { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 24px; color: var(--primary); border-radius: 50%; background: var(--primary-soft); font-weight: 850; }
.role-card p { color: var(--muted); font-size: .9rem; margin: 10px 0 0; }

.industry-banner { position: relative; min-height: 460px; display: grid; align-items: end; overflow: hidden; border-radius: var(--radius-lg); }
.industry-banner::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,25,54,.96), rgba(17,25,54,.42)); content: ""; }
.industry-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.industry-banner__content { position: relative; z-index: 1; max-width: 680px; padding: 55px; color: white; }
.industry-banner h2 { color: white; margin-bottom: 18px; }
.industry-banner p { color: rgba(255,255,255,.75); }

.career-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.career-card { min-height: 360px; display: flex; flex-direction: column; padding: 46px; border-radius: var(--radius-md); background: var(--primary-soft); }
.career-card--dark { color: white; background: var(--ink); }
.career-card h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.2rem); }
.career-card--dark h2, .career-card--dark h3 { color: white; }
.career-card p { color: var(--muted); }
.career-card--dark p { color: rgba(255,255,255,.7); }
.career-card .button { align-self: flex-start; margin-top: auto; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: start; }
.contact-card { padding: 40px; border-radius: var(--radius-md); background: var(--primary); color: white; }
.contact-card h2, .contact-card h3 { color: white; }
.contact-card > p { color: rgba(255,255,255,.72); }
.contact-list { display: grid; gap: 22px; margin-top: 35px; }
.contact-list li { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-list span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.58); font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-list a, .contact-list strong { color: white; font-weight: 680; }
.form-shell { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.form-shell h2 { margin-bottom: 12px; }
.form-shell > p { color: var(--muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: #363d51; font-size: .82rem; font-weight: 720; }
.optional { color: #8b91a1; font-size: .74rem; font-weight: 550; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 13px 15px; color: var(--ink); background: #fbfcff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(48,66,149,.1); }
.field textarea { min-height: 140px; resize: vertical; }
.consent { grid-column: 1 / -1; display: grid; grid-template-columns: 21px 1fr; align-items: start; gap: 11px; padding: 17px; border-radius: 12px; background: var(--surface-soft); }
.consent input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--primary); }
.consent label { color: var(--muted); font-size: .78rem; line-height: 1.6; }
.consent a { color: var(--primary); font-weight: 700; text-decoration: underline; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; }
.form-status { margin: 0; color: var(--success); font-size: .88rem; }

.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 115px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.legal-nav strong { display: block; margin-bottom: 14px; font-size: .85rem; }
.legal-nav a { display: block; padding: 7px 0; color: var(--muted); font-size: .82rem; }
.legal-nav a:hover { color: var(--primary); }
.legal-content { max-width: 850px; }
.legal-content section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); scroll-margin-top: 125px; }
.legal-content h2 { margin-bottom: 16px; font-size: clamp(1.45rem, 2vw, 2rem); }
.legal-content h3 { margin: 25px 0 10px; font-size: 1.08rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { display: grid; gap: 8px; padding-left: 20px; list-style: disc; margin: 16px 0; }
.legal-note { padding: 24px; border-left: 4px solid var(--primary); border-radius: 0 12px 12px 0; background: var(--primary-soft); }
.legal-note p:last-child { margin-bottom: 0; }

.site-footer { --footer-cut: 226px; position: relative; padding-top: 76px; color: rgba(255,255,255,.68); background: linear-gradient(to bottom, var(--surface-soft) 0 var(--footer-cut), #0b1230 var(--footer-cut) 100%); overflow: hidden; }
.footer-showcase { position: relative; min-height: 300px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; padding: 58px 62px; overflow: hidden; border-radius: 36px 36px 8px 36px; background: linear-gradient(125deg, #304295 0%, #263985 54%, #1e2d70 100%); box-shadow: 0 28px 70px rgba(0,0,0,.24); }
.footer-showcase__copy, .footer-showcase__action { position: relative; z-index: 2; }
.footer-showcase h2 { max-width: 720px; color: white; font-size: clamp(2.1rem, 3.8vw, 4rem); }
.footer-showcase__action p { max-width: 430px; color: rgba(255,255,255,.72); }
.footer-orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.footer-orbit--one { width: 340px; height: 340px; top: -190px; right: -50px; box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 84px rgba(255,255,255,.02); }
.footer-orbit--two { width: 180px; height: 180px; left: 42%; bottom: -135px; }
.footer-main { display: grid; grid-template-columns: .85fr 1.45fr; gap: 95px; padding-block: 68px 58px; }
.footer-brand p { max-width: 400px; margin-bottom: 24px; }
.footer-logo { width: 142px; height: 82px; display: block; overflow: hidden; margin-bottom: 22px; border-radius: 10px; background: white; }
.footer-presence { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: white; font-size: .73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.footer-presence i { width: 5px; height: 5px; display: block; border-radius: 50%; background: #8393e0; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links h3 { margin-bottom: 19px; color: white; font-family: "Manrope", ui-sans-serif, system-ui, sans-serif; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: white; }
.footer-contact li { font-size: .88rem; }
.footer-social { display: inline-flex; gap: 7px; color: white; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom__inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom__inner > div { display: flex; gap: 24px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
    .nav-shell__inner { gap: 18px; }
    .primary-nav { gap: 15px; }
    .primary-nav > a, .nav-dropdown__toggle { font-size: .75rem; }
    .nav-cta { display: none; }
    .card-grid--4, .role-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    .section { padding: 85px 0; }
    .topbar p { display: none; }
    .topbar__inner { justify-content: center; }
    .nav-shell__inner { min-height: 74px; justify-content: space-between; }
    .brand { width: 128px; height: 66px; }
    .nav-toggle { display: flex; }
    .primary-nav { position: fixed; inset: 112px 0 0; display: block; padding: 24px 20px 40px; overflow-y: auto; background: white; transform: translateX(100%); transition: transform .25s ease; }
    .primary-nav.is-open { transform: none; }
    .primary-nav > a, .nav-dropdown__toggle { width: 100%; display: block; padding: 14px 5px; text-align: left; font-size: 1rem; }
    .primary-nav > a::after, .nav-dropdown__toggle::after { display: none; }
    .nav-dropdown__menu { position: static; width: auto; max-height: 0; padding: 0 12px; visibility: visible; opacity: 1; overflow: hidden; border: 0; box-shadow: none; transform: none; transition: max-height .25s ease; }
    .nav-dropdown.is-open .nav-dropdown__menu { max-height: 280px; padding-block: 8px; }
    .hero { min-height: 680px; align-items: end; }
    .hero::before { background: linear-gradient(0deg, #f6f8ff 0%, rgba(246,248,255,.98) 55%, rgba(246,248,255,.15) 100%); }
    .hero__media { inset: 0 0 35% 0; }
    .hero__content { width: 100%; padding: 330px 0 65px; }
    .hero__content > p { font-size: 1.02rem; }
    .trust-strip__inner { grid-template-columns: repeat(2, 1fr); padding-block: 25px; }
    .trust-strip p { grid-column: 1 / -1; text-align: center; }
    .split, .feature-band__inner, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .split__media img { min-height: 430px; }
    .card-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
    .process { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .process-step::after { display: none; }
    .page-hero--visual .page-hero__inner--grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .page-hero--visual .page-hero__copy { padding: 50px 30px 50px 20px; }
    .page-hero__visual { min-height: 440px; height: 100%; }
    .footer-showcase { grid-template-columns: 1fr; align-items: start; gap: 28px; padding: 48px; }
    .footer-main { grid-template-columns: 1fr; gap: 45px; }
    .legal-nav { position: static; display: none; }
}

@media (max-width: 680px) {
    body { font-size: 15px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar { display: none; }
    .primary-nav { inset: 74px 0 0; }
    .section { padding: 68px 0; }
    .section-header { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }
    .hero { min-height: 720px; }
    .hero__media { inset: 0 0 47% 0; }
    .hero__media img { object-position: 66% center; }
    .hero__content { padding: 310px 0 52px; }
    .hero h1 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
    .hero__trust { gap: 12px 22px; margin-top: 30px; }
    .card-grid, .card-grid--4, .industry-grid, .value-grid, .role-grid, .career-paths { grid-template-columns: 1fr; }
    .trust-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; padding-block: 24px; }
    .trust-strip p { grid-column: 1 / -1; }
    .trust-item { justify-content: flex-start; padding-left: 8px; }
    .value-card { padding: 25px 24px; }
    .split__media img { min-height: 340px; }
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
    .stat:last-child { border-bottom: 0; }
    .process { grid-template-columns: 1fr; }
    .feature-band__inner { display: block; }
    .feature-band__content, .industry-banner__content { padding: 36px 28px; }
    .feature-band__image, .feature-band__image img { min-height: 300px; height: 300px; }
    .page-hero { min-height: 400px; }
    .page-hero__inner { padding: 100px 0 55px; }
    .page-hero--visual { min-height: auto; }
    .page-hero--visual .page-hero__inner--grid { min-height: auto; grid-template-columns: 1fr; gap: 0; padding: 0; }
    .page-hero--visual .page-hero__copy { padding: 42px 20px 32px; }
    .page-hero--visual h1 { font-size: clamp(2.15rem, 9.2vw, 2.75rem); }
    .page-hero--visual p { font-size: 1rem; line-height: 1.65; }
    .page-hero--visual .breadcrumbs { margin-bottom: 20px; }
    .page-hero__visual { min-height: 235px; height: 235px; border-radius: 0; transform: none; }
    .page-hero__badge { right: 14px; bottom: 14px; padding: 9px 12px; font-size: .66rem; }
    .industry-banner { min-height: 560px; }
    .industry-banner__content { padding-top: 260px; }
    .contact-layout { gap: 30px; }
    .contact-card, .form-shell, .career-card { padding: 28px; }
    .contact-form { grid-template-columns: 1fr; }
    .field--full, .consent, .form-actions { grid-column: auto; }
    .form-actions { align-items: flex-start; flex-direction: column; }
    .site-footer { --footer-cut: 260px; padding-top: 52px; }
    .footer-showcase { min-height: auto; padding: 38px 28px; border-radius: 28px 28px 8px 28px; }
    .footer-showcase__action p { margin-bottom: 22px; }
    .footer-main { padding-block: 52px 44px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
    .footer-links > :last-child { grid-column: 1 / -1; }
    .footer-bottom__inner { align-items: flex-start; flex-direction: column; padding-block: 22px; }
}

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