@font-face {
  font-display: swap;
  font-family: "Figtree";
  font-style: normal;
  font-weight: 300 900;
  src: url("assets/template/fonts/figtree/figtree-variable.ttf") format("truetype");
}
:root {
  --cs-primary: #f9ca4f;
  --cs-secondary: #030303;
  --cs-text: #000000;
  --cs-muted-text: #6b6b6b;
  --cs-bg: #ffffff;
  --cs-soft-bg: #f7f7f7;
  --cs-border: #e5e9ee;
  --cs-font-family: Figtree, Arial, sans-serif;
  --cs-max-width: 1260px;
  --cs-button-radius: 2px;
  --cs-section-padding-y: 50px;
  --cs-tight-section-padding-y: 36px;
  --blue: var(--cs-primary);
  --blue-2: var(--cs-secondary);
  --ink: var(--cs-text);
  --muted: var(--cs-muted-text);
  --soft: var(--cs-soft-bg);
  --line: var(--cs-border);
  --wrap: var(--cs-max-width);
  --cs-animate-duration: 480ms;
  --cs-animate-delay: 0ms;
  --cs-animate-easing: cubic-bezier(0.22, 1, 0.36, 1);
  --cs-animate-stagger: 90ms;
  --cs-animate-index: 0;
  --cs-section-custom-bg: var(--cs-bg);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cs-bg);
  color: var(--cs-text);
  font-family: var(--cs-font-family);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.menu-open,
body.gallery-lightbox-open,
body.video-lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary { font: inherit; }
.cs-animate-ready [data-cs-animate] {
  --cs-animate-duration: 480ms;
  --cs-animate-delay: 0ms;
  --cs-animate-stagger: 90ms;
  --cs-animate-easing: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--cs-animate-delay);
  transition-duration: var(--cs-animate-duration);
  transition-property: opacity, transform;
  transition-timing-function: var(--cs-animate-easing);
}
.cs-animate-ready [data-cs-animate="fade"] { --cs-animate-duration: 420ms; }
.cs-animate-ready [data-cs-animate="scale"],
.cs-animate-ready [data-cs-animate="staggered-children"] { --cs-animate-duration: 460ms; }
.cs-animate-ready [data-cs-animate]:not(.is-visible) { opacity: 0; transform: none; }
.cs-animate-ready [data-cs-animate="fade-up"]:not(.is-visible) { transform: translate3d(0, 22px, 0); }
.cs-animate-ready [data-cs-animate="slide-left"]:not(.is-visible) { transform: translate3d(32px, 0, 0); }
.cs-animate-ready [data-cs-animate="slide-right"]:not(.is-visible) { transform: translate3d(-32px, 0, 0); }
.cs-animate-ready [data-cs-animate="scale"]:not(.is-visible) { transform: scale(0.96); }
.cs-animate-ready [data-cs-animate].is-visible { opacity: 1; transform: none; }
.cs-animate-ready [data-cs-animate-target="section-children"],
.cs-animate-ready [data-cs-animate="staggered-children"] { transition: none; }
.cs-animate-ready [data-cs-animate-target="section-children"]:not(.is-visible),
.cs-animate-ready [data-cs-animate="staggered-children"]:not(.is-visible) { opacity: 1; transform: none; }
.cs-animate-ready [data-cs-animate-target="section-children"] [data-cs-animate-child],
.cs-animate-ready [data-cs-animate="staggered-children"] [data-cs-animate-child] {
  transition-duration: var(--cs-animate-duration);
  transition-delay: calc(var(--cs-animate-delay) + (var(--cs-animate-index, 0) * var(--cs-animate-stagger)));
  transition-property: opacity, transform;
  transition-timing-function: var(--cs-animate-easing);
}
.cs-animate-ready [data-cs-animate-target="section-children"]:not(.is-visible) [data-cs-animate-child],
.cs-animate-ready [data-cs-animate="staggered-children"]:not(.is-visible) [data-cs-animate-child] { opacity: 0; transform: none; }
.cs-animate-ready [data-cs-animate-target="section-children"][data-cs-animate="fade-up"]:not(.is-visible) [data-cs-animate-child],
.cs-animate-ready [data-cs-animate="staggered-children"]:not(.is-visible) [data-cs-animate-child] { transform: translate3d(0, 18px, 0); }
.cs-animate-ready [data-cs-animate-target="section-children"][data-cs-animate="slide-left"]:not(.is-visible) [data-cs-animate-child] { transform: translate3d(32px, 0, 0); }
.cs-animate-ready [data-cs-animate-target="section-children"][data-cs-animate="slide-right"]:not(.is-visible) [data-cs-animate-child] { transform: translate3d(-32px, 0, 0); }
.cs-animate-ready [data-cs-animate-target="section-children"][data-cs-animate="scale"]:not(.is-visible) [data-cs-animate-child] { transform: scale(0.96); }
.cs-animate-ready [data-cs-animate-target="section-children"].is-visible [data-cs-animate-child],
.cs-animate-ready [data-cs-animate="staggered-children"].is-visible [data-cs-animate-child] { opacity: 1; transform: none; }
.wrap { width: min(calc(100% - 56px), var(--wrap)); margin: 0 auto; }
.narrow { width: min(calc(100% - 56px), var(--wrap)); margin: 0 auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; border: 0; border-radius: 4px; background: var(--blue); color: #fff; padding: 10px 18px; font-family: inherit; font-size: 12px; font-weight: 600; line-height: 1.35; text-decoration: none; }
.btn--small { min-height: 32px; padding: 8px 16px; font-size: 12px; }
.btn--white { border: 1px solid #fff; background: #fff; color: var(--blue); }
.icon { width: 16px; height: 16px; }
.section { padding: 50px 0; background: #fff; }
.section--tight { padding: 36px 0; }
.section--gray { background: var(--soft); }
.section--blue { background: var(--blue); color: #fff; }
.gray { background: var(--soft); }
.kicker { margin: 0 0 8px; color: var(--blue); font-size: 13px; font-weight: 600; }
.headline { margin: 0; color: var(--ink); font-size: clamp(30px, 4.2vw, 48px); font-weight: 600; line-height: 1.28; }
.copy { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.section-kicker { margin: 0 0 10px; color: var(--blue); font-size: 13px; font-weight: 600; }
.section--blue .section-kicker { color: rgb(255 255 255 / 0.72); }
.section-title { margin: 0; color: inherit; font-size: clamp(30px, 5vw, 38px); font-weight: 600; line-height: 1.28; }
.site-header { position: sticky; z-index: 50; top: 0; height: 63px; border-bottom: 1px solid rgb(7 7 26 / 0.08); background: rgb(255 255 255 / 0.98); }
.header-inner { display: grid; grid-template-columns: 170px 1fr 170px; height: 63px; align-items: center; }
.brand { display: inline-flex; align-items: center; width: max-content; text-decoration: none; }
.brand img { width: auto; max-width: calc(118px * var(--career-site-logo-scale, 1)); max-height: calc(32px * var(--career-site-logo-scale, 1)); height: auto; }
.nav { display: flex; justify-content: center; gap: 30px; color: #444; font-size: 11px; font-weight: 400; }
.nav a { text-decoration: none; }
.socials { display: flex; justify-content: flex-end; gap: 13px; color: #444; }
.socials a { display: grid; width: 16px; height: 16px; place-items: center; text-decoration: none; }
.socials-label { font-size: 10px; font-weight: 700; }
.socials a[aria-label="E-Mail"] .icon path { fill: #F5B400; }
.socials a[aria-label="Email"] .icon path { fill: #F5B400; }
.socials a[aria-label="Instagram"] .icon path { fill: #E4405F; }
.socials a[aria-label="Facebook"] .icon path { fill: #1877F2; }
.socials a[aria-label="LinkedIn"] .icon path { fill: #0A66C2; }
.socials a[aria-label="YouTube"] .icon path { fill: #FF0000; }
.menu-toggle { display: none; position: relative; width: 34px; height: 34px; place-items: center; justify-self: end; border: 1px solid var(--line); border-radius: 2px; background: #fff; color: var(--blue); transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease; }
.menu-toggle .menu-line { transform-box: fill-box; transform-origin: center; transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] { border-color: rgb(5 41 158 / 0.22); background: rgb(5 41 158 / 0.06); }
.menu-toggle[aria-expanded="true"] .menu-line--top { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-line--middle { opacity: 0; transform: scaleX(0.4); }
.menu-toggle[aria-expanded="true"] .menu-line--bottom { transform: translateY(-5px) rotate(-45deg); }
.hero { --hero-overlay-rgb: 7 7 26; --hero-overlay-opacity: 0.58; min-height: 540px; padding: 0; background: linear-gradient(rgb(var(--hero-overlay-rgb) / var(--hero-overlay-opacity)), rgb(var(--hero-overlay-rgb) / var(--hero-overlay-opacity))), var(--hero-image, url("assets/template/images/homepage-mobil.jpg")) var(--hero-image-position, center 35%) / cover; color: #fff; }
.hero .wrap { min-height: 540px; display: flex; align-items: center; }
.hero-card { width: min(720px, 100%); margin-left: 0; }
.hero h1 { margin: 0; color: #fff; font-size: clamp(32px, 4.6vw, 46px); font-weight: 600; line-height: 1.2; }
.hero p { max-width: 550px; margin: 16px 0 18px; color: rgb(255 255 255 / 0.82); font-size: 12px; }
.hero-card .btn { min-height: 50px; border-radius: 4px; padding: 14px 24px; font-weight: 600; }
.jobs { background: var(--soft); padding: 36px 0 42px; }
.jobs h2 { width: min(calc(100% - 56px), var(--wrap)); margin: 0 auto 22px; font-size: 18px; }
.carousel { position: relative; width: min(calc(100% - 56px), var(--wrap)); margin: 0 auto; }
.testimonial-carousel { position: relative; width: min(calc(100% - 56px), var(--wrap)); margin: 22px auto 0; }
.slider-viewport { overflow: hidden; scroll-behavior: smooth; scrollbar-width: none; }
.slider-viewport::-webkit-scrollbar { display: none; }
.job-row { display: flex; gap: 22px; }
.testimonial-track { display: flex; gap: 10px; }
.job-card { flex: 0 0 calc((100% - 44px) / 3); min-height: 260px; padding: 34px 28px 28px; border: 0; border-radius: 4px; background: #fff; box-shadow: 0 1px 4px rgb(17 17 26 / 0.05), 0 0 8px rgb(17 17 26 / 0.1); font-family: inherit; text-align: center; }
.job-icon { display: grid; width: 28px; height: 28px; place-items: center; margin: 0 auto 12px; color: var(--ink); line-height: 0; }
.job-icon svg { width: 22px; height: 22px; }
.job-card h3 { min-height: 34px; margin: 0 0 18px; padding-bottom: 16px; border-bottom: 3px solid rgb(7 7 26 / 0.06); font-size: 18px; font-weight: 600; line-height: 1.3; }
.job-card p { min-height: 34px; margin: 0 0 18px; color: var(--ink); font-size: 12px; line-height: 1.5; }
.job-card .btn { width: 100%; font-weight: 600; }
.arrow { --arrow-icon-size: 22px; --arrow-icon-stroke: 1.9; position: absolute; top: 50%; z-index: 2; display: grid; width: 26px; height: 26px; place-items: center; border: 0; background: transparent; color: var(--ink); line-height: 0; transform: translateY(-50%); cursor: pointer; }
.arrow svg { width: var(--arrow-icon-size); height: var(--arrow-icon-size); stroke-width: var(--arrow-icon-stroke); }
.arrow--left { left: -46px; }
.arrow--right { right: -46px; }
.arrow:hover { color: var(--blue); }
.dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.dot { width: 8px; height: 8px; border: 0; border-radius: 50%; background: rgb(5 41 158 / 0.25); padding: 0; }
.dot.is-active { background: var(--blue); }
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.media-split .kicker { margin-bottom: 10px; color: var(--ink); font-weight: 600; }
.media-split .headline { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.18; }
.media-split .copy { margin-top: 18px; font-size: 14px; line-height: 1.55; }
.media-split .btn { margin-top: 18px; font-weight: 600; }
.about-media-figure { overflow: hidden; margin: 0 auto; border-radius: 2px; box-shadow: none; }
.about-media-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; }
.benefit-intro { padding: 42px 0 18px; }
.benefit-intro > .narrow,
section[data-template-section="bullet-points"].narrow { width: min(calc(100% - 56px), var(--wrap)); }
.benefit-intro .kicker { color: var(--ink); font-size: 15px; font-weight: 600; }
.benefit-intro .headline { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.18; }
.benefit-intro .copy { max-width: 1180px; margin-top: 14px; color: var(--ink); font-size: 14px; line-height: 1.48; }
.benefit-grid { --benefit-columns: 5; display: grid; grid-template-columns: repeat(var(--benefit-columns), minmax(0, 1fr)); gap: 16px; padding-bottom: 56px; }
.benefit-grid[data-benefit-columns="1"] { --benefit-columns: 1; }
.benefit-grid[data-benefit-columns="2"] { --benefit-columns: 2; }
.benefit-grid[data-benefit-columns="3"] { --benefit-columns: 3; }
.benefit-grid[data-benefit-columns="4"] { --benefit-columns: 4; }
.benefit-grid[data-benefit-columns="5"] { --benefit-columns: 5; }
.benefit-card { min-height: 260px; padding: 24px 20px; border-radius: 8px; background: var(--blue); color: #fff; }
.benefit-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 20px; border-radius: 50%; background: var(--blue-2); color: #fff; }
.benefit-icon svg { width: 18px; height: 18px; }
.benefit-card h3 { margin: 0 0 12px; color: #fff; font-size: 16px; font-weight: 600; line-height: 1.3; }
.benefit-card p { margin: 0; color: rgb(255 255 255 / 0.84); font-size: 12px; line-height: 1.5; }
.video-block { padding-top: 8px; }
.video-shell { position: relative; display: grid; overflow: hidden; min-height: 180px; margin-top: 18px; aspect-ratio: 16 / 7.2; background: #111; }
.video-shell img, .video-shell iframe, .video-shell video { width: 100%; height: 100%; object-fit: cover; }
.video-shell iframe { border: 0; }
.video-placeholder { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; background: rgb(7 7 26 / 0.42); color: #fff; font-size: 13px; font-weight: 700; text-align: center; }
.play { position: absolute; top: 50%; left: 50%; display: grid; width: 78px; height: 52px; place-items: center; border: 0; background: var(--blue); color: #fff; transform: translate(-50%, -50%); }
.job-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.job-highlight-card, .job-highlight-empty { display: flex; min-height: 205px; flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px; border: 1px solid var(--line); background: #fff; color: var(--ink); }
.job-highlight-card__meta { margin: 0; color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.job-highlight-card h3, .job-highlight-empty h3 { margin: 0; color: var(--ink); font-size: 21px; line-height: 1.12; }
.job-highlight-card p, .job-highlight-empty p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.job-highlight-card .btn { margin-top: auto; }
.gallery-carousel { overflow: hidden; margin-top: 22px; }
.gallery-track { display: flex; width: max-content; gap: 8px; animation: gallery-loop 30s linear infinite; }
.gallery-carousel:hover .gallery-track,
.gallery-carousel:focus-within .gallery-track { animation-play-state: paused; }
.gallery-slide { flex: 0 0 306px; width: 306px; }
.gallery-lightbox-trigger { display: block; width: 100%; border: 0; background: transparent; padding: 0; color: inherit; cursor: zoom-in; }
.gallery-lightbox-trigger:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.gallery-slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 2147483200; display: grid; place-items: center; padding: 24px; background: rgb(7 7 26 / 0.88); opacity: 0; pointer-events: none; transition: opacity 180ms ease; }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox.is-open { opacity: 1; pointer-events: auto; }
.gallery-lightbox__figure { margin: 0; }
.gallery-lightbox__image { display: block; max-width: min(1120px, calc(100vw - 48px)); max-height: calc(100vh - 96px); object-fit: contain; background: #111; box-shadow: 0 24px 80px rgb(0 0 0 / 0.38); }
.gallery-lightbox__close { position: fixed; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 999px; background: rgb(255 255 255 / 0.94); color: var(--ink); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: 0 10px 30px rgb(0 0 0 / 0.24); }
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible { background: #fff; outline: 3px solid rgb(255 255 255 / 0.45); outline-offset: 3px; }
.video-lightbox { position: fixed; inset: 0; z-index: 2147483300; display: grid; place-items: center; padding: 24px; background: rgb(7 7 26 / 0.9); opacity: 0; pointer-events: none; transition: opacity 180ms ease; }
.video-lightbox[hidden] { display: none; }
.video-lightbox.is-open { opacity: 1; pointer-events: auto; }
.video-lightbox__dialog { width: min(1120px, calc(100vw - 48px)); max-height: calc(100vh - 96px); }
.video-lightbox__media { overflow: hidden; width: 100%; aspect-ratio: 16 / 9; background: #111; box-shadow: 0 24px 80px rgb(0 0 0 / 0.42); }
.video-lightbox__media iframe,
.video-lightbox__media video { display: block; width: 100%; height: 100%; border: 0; background: #111; }
.video-lightbox__close { position: fixed; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 999px; background: rgb(255 255 255 / 0.94); color: var(--ink); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: 0 10px 30px rgb(0 0 0 / 0.24); }
.video-lightbox__close:hover,
.video-lightbox__close:focus-visible { background: #fff; outline: 3px solid rgb(255 255 255 / 0.45); outline-offset: 3px; }
@keyframes gallery-loop { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 4px)); } }
.testimonials .copy { margin-bottom: 22px; }
.testimonial-card { flex: 0 0 265px; width: 265px; background: #fff; }
.testimonial-video { position: relative; background: #111; }
.testimonial-video img, .testimonial-video iframe, .testimonial-video video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.testimonial-video-trigger { position: relative; display: block; width: 100%; border: 0; background: #111; padding: 0; color: #fff; cursor: pointer; }
.testimonial-video-trigger:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.testimonial-video-trigger__fallback { display: grid; width: 100%; aspect-ratio: 16 / 9; place-items: center; padding: 18px; color: #fff; font-size: 12px; font-weight: 700; text-align: center; }
.testimonial-video-inline-lightbox-trigger { position: absolute; inset: 0; z-index: 6; display: block; width: 100%; height: 100%; border: 0; background: transparent; padding: 0; cursor: pointer; }
.testimonial-video-inline-lightbox-trigger:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
.testimonial-video img { opacity: 0.72; }
.testimonial-video iframe { border: 0; }
.testimonial-video .play::before { width: 0; height: 0; margin-left: 4px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid currentColor; content: ""; }
.testimonial-video-placeholder { position: absolute; inset: 0; display: grid; place-items: center; padding: 18px; background: rgb(7 7 26 / 0.42); color: #fff; font-size: 12px; font-weight: 700; text-align: center; }
.testimonial-card h3 { margin: 0; padding: 12px 14px; font-size: 12px; }
.metrics { padding: 42px 0 46px; background: var(--blue); color: #fff; text-align: center; }
.metrics h2 { margin: 0 0 28px; color: #fff; font-size: 18px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; }
.metric-number { display: block; color: #fff; font-size: 44px; font-weight: 600; line-height: 1; }
.metric h3 { margin: 10px 0; color: #fff; font-size: 14px; }
.metric p { margin: 0; color: rgb(255 255 255 / 0.8); font-size: 11px; }
.process-grid { display: grid; grid-template-columns: 0.92fr 1.35fr; gap: 58px; align-items: center; }
.process-grid > * { min-width: 0; }
.person { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; margin-top: 22px; }
.avatar { overflow: hidden; width: 42px; height: 42px; border-radius: 50%; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar span { display: grid; width: 100%; height: 100%; place-items: center; background: var(--blue); color: #fff; font-weight: 700; }
.person strong, .person span { display: block; font-size: 11px; }
.person span { color: var(--muted); }
.process-graphic { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; width: 100%; padding: 54px 0 20px; }
.process-line { position: absolute; top: 174px; right: 8%; left: 8%; height: 4px; border-radius: 999px; background: var(--blue); }
.process-step { position: relative; z-index: 1; display: flex; min-width: 0; flex: 1; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.icon-circle { display: grid; width: 88px; height: 88px; place-items: center; border-radius: 999px; background: rgb(255 255 255 / 0.9); box-shadow: 0 18px 42px rgb(10 20 60 / 0.1); color: var(--blue); font-weight: 700; }
.icon-circle svg { width: 34px; height: 34px; }
.step-dot { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 999px; background: var(--blue); box-shadow: 0 0 0 9px rgb(5 41 158 / 0.12); color: #fff; font-size: 13px; font-weight: 700; }
.process-label strong { display: block; color: var(--blue); font-size: 11px; line-height: 1.35; overflow-wrap: anywhere; }
.process-label span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.4; overflow-wrap: anywhere; }
.faq-grid { display: grid; grid-template-columns: 0.82fr 1.2fr; gap: 78px; }
.faq-list { display: grid; gap: 9px; }
.faq-item { overflow: hidden; border: 0; background: var(--blue); color: #fff; }
.faq-item summary { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 14px; cursor: pointer; color: #fff; font-size: 12px; font-weight: 600; list-style: none; }
.faq-marker { display: inline-grid; width: 18px; height: 18px; flex: 0 0 18px; place-items: center; transition: transform 0.28s ease; }
.faq-marker svg { width: 14px; height: 14px; }
.faq-item[open] .faq-marker { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-panel { overflow: hidden; height: 0; transition: height 0.34s ease; }
.faq-item p { margin: 0; padding: 0 14px 14px; color: rgb(255 255 255 / 0.82); font-size: 11px; }
.cta { min-height: 210px; display: flex; align-items: center; background: linear-gradient(90deg, rgb(7 7 26 / 0.74), rgb(5 41 158 / 0.48)), url("assets/template/images/scd5709.jpg") center / cover; color: #fff; }
.cta .wrap { padding-left: 0; }
.cta h2 { margin: 0 0 8px; color: #fff; font-size: 34px; }
.cta p { max-width: 570px; margin: 0 0 18px; color: rgb(255 255 255 / 0.82); font-size: 13px; }
.footer { padding: 36px 0 46px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 0.8fr 0.9fr 1.35fr; gap: 60px; }
.footer-logo { width: calc(100px * var(--career-site-logo-scale, 1)); margin-bottom: 12px; }
.footer h3 { margin: 0 0 14px; font-size: 12px; line-height: 1.45; }
.footer p, .footer a { display: block; margin: 0 0 9px; color: var(--muted); font-size: 11px; text-decoration: none; }
.map { position: relative; overflow: hidden; height: 130px; background: linear-gradient(35deg, transparent 48%, rgb(5 41 158 / 0.12) 49%, transparent 50%), linear-gradient(115deg, transparent 46%, rgb(7 7 26 / 0.11) 47%, transparent 48%), #f0f2ef; }
.pin { position: absolute; top: 62px; left: 55%; width: 18px; height: 18px; border: 4px solid var(--blue); border-radius: 50% 50% 50% 0; background: #fff; transform: rotate(-45deg); }
.footer.footer--job { padding: 42px 0 46px; font-size: 15px; line-height: 1.5; }
.footer.footer--job .footer-grid { width: min(calc(100% - 56px), 960px); gap: 60px; }
.footer.footer--job .footer-logo { width: calc(100px * var(--career-site-logo-scale, 1)); margin-bottom: 12px; }
.footer.footer--job h3 { margin-bottom: 14px; font-size: 12px; line-height: 1.5; }
.footer.footer--job p, .footer.footer--job a { margin-bottom: 9px; font-size: 11px; line-height: 1.5; }
.footer.footer--job .map { height: 130px; }
.footer.footer--job .pin { top: 62px; width: 18px; height: 18px; border-width: 4px; }
.hero[data-template-section="job-hero"] { min-height: 520px; display: flex; align-items: stretch; background: linear-gradient(rgb(30 31 38 / 0.3), rgb(30 31 38 / 0.3)), linear-gradient(90deg, rgb(7 7 26 / 0.72), rgb(7 7 26 / 0.38) 48%, rgb(7 7 26 / 0.16)), var(--hero-image) center / cover; }
.hero[data-template-section="job-hero"] .hero-inner { display: grid; grid-template-columns: 1.05fr 0.7fr; gap: 68px; align-items: center; min-height: 520px; padding: 72px 0; }
.hero[data-template-section="job-hero"] .eyebrow { margin: 0 0 15px; color: rgb(255 255 255 / 0.78); font-size: 13px; font-weight: 700; line-height: normal; }
.hero[data-template-section="job-hero"] h1 { max-width: 710px; font-size: clamp(42px, 5.2vw, 76px); font-weight: 700; line-height: 1.04; }
.hero[data-template-section="job-hero"] .hero-copy { max-width: 700px; margin: 24px 0; color: rgb(255 255 255 / 0.84); font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero[data-template-section="job-hero"] .btn { min-height: 38px; gap: 8px; padding: 11px 18px; border: 1px solid var(--blue); font-size: 12px; }
.job-facts { align-self: center; border: 1px solid rgb(255 255 255 / 0.22); background: rgb(7 7 26 / 0.46); backdrop-filter: blur(4px); }
.fact { display: grid; grid-template-columns: 112px 1fr; gap: 18px; padding: 18px 20px; border-bottom: 1px solid rgb(255 255 255 / 0.18); }
.fact:last-child { border-bottom: 0; }
.fact span { color: rgb(255 255 255 / 0.68); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.fact strong { color: #fff; font-size: 13px; }
.task-showcase { padding: 64px 0 76px; background: #fff; }
.task-panel { display: grid; grid-template-columns: 1fr 0.92fr; gap: 92px; align-items: center; width: min(calc(100% - 56px), 1120px); margin: 0 auto; padding: 88px 92px; border-radius: 7px; background: #f2f2f2; }
.task-title { margin: 0 0 12px; color: var(--ink); font-size: 24px; font-weight: 700; line-height: 1.22; }
.task-intro { max-width: 500px; margin: 0 0 28px; color: #13142a; font-size: 17px; line-height: 1.55; }
.task-list { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
.task-card { display: grid; grid-template-columns: 34px 1fr; gap: 20px; align-items: center; min-height: 86px; padding: 20px 24px; border-radius: 4px; background: #fff; box-shadow: 0 8px 18px rgb(7 7 26 / 0.09); }
.task-icon { display: grid; width: 26px; height: 26px; place-items: center; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); font-size: 17px; font-weight: 700; line-height: 1; }
.task-icon svg { width: 13px; height: 13px; }
.task-card p { margin: 0; color: #17182b; font-size: 13px; line-height: 1.45; }
.task-media { margin: 0; }
.task-media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.relationship-section { padding: 76px 0 82px; background: var(--soft); }
.relationship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
section[data-template-section="job-relationship"] .relationship-grid { width: min(calc(100% - 56px), 960px); }
.relationship-media { margin: 0; }
.relationship-media img { display: block; width: 100%; aspect-ratio: 4 / 5; border-radius: 4px; object-fit: cover; }
.relationship-title { margin: 0; color: var(--ink); font-size: clamp(30px, 3.4vw, 46px); font-weight: 700; line-height: 1.14; }
.relationship-copy { margin: 24px 0; color: var(--ink); font-size: 18px; line-height: 1.56; }
.relationship-list { border-top: 1px solid #d8dde5; }
.relationship-item { display: grid; grid-template-columns: 32px 1fr; gap: 18px; align-items: start; padding: 20px 0; border-bottom: 1px solid #d8dde5; }
.relationship-icon { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid #d8dde5; border-radius: 50%; background: #fff; color: var(--ink); }
.relationship-icon svg { width: 16px; height: 16px; }
.relationship-item p { margin: 0; color: #111327; font-size: 14px; line-height: 1.55; }
.relationship-note { margin: 22px 0 0; color: #81859a; font-size: 16px; font-style: italic; line-height: 1.45; }
.content-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: start; }
section[data-template-section="job-profile"] .content-grid { grid-template-columns: 0.8fr 1fr; }
section[data-template-section="job-profile"].section,
section[data-template-section="job-cta"].section,
section[data-template-section="job-process"].section { padding: 78px 0; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 18px 20px 18px 48px; border: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 14px; }
.check-list li::before { position: absolute; top: 20px; left: 20px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); content: ""; }
.job-metrics { padding: 76px 0 82px; background: var(--blue); color: #fff; text-align: center; }
section[data-template-section="job-metrics"] > .narrow,
section[data-template-section="job-profile"] > .narrow,
section[data-template-section="job-cta"] > .narrow { width: min(calc(100% - 56px), 960px); }
.job-metrics h2 { margin: 0; color: #fff; font-size: 28px; font-weight: 700; line-height: 1.2; }
.job-metric-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 92px; margin-top: 60px; }
.job-metric-number { display: block; color: #fff; font-size: 74px; font-weight: 700; line-height: 1; }
.job-metric h3 { margin: 22px 0 20px; color: #fff; font-size: 23px; font-weight: 700; line-height: 1.22; }
.job-metric p { max-width: 360px; margin: 0 auto; color: rgb(255 255 255 / 0.78); font-size: 16px; line-height: 1.45; }
.job-advantages { padding: 84px 0 96px; background: var(--soft); }
.job-advantages-inner { width: min(calc(100% - 56px), 980px); margin: 0 auto; }
.job-advantages-title { max-width: 820px; margin: 0 auto 54px; color: var(--ink); font-size: clamp(30px, 3.2vw, 42px); font-weight: 700; line-height: 1.2; text-align: center; }
.advantage-list { display: grid; gap: 18px; }
.advantage-item { display: grid; grid-template-columns: 52px 1fr; gap: 34px; align-items: center; min-height: 108px; padding: 24px 34px; border-radius: 4px; background: #fff; box-shadow: 0 14px 36px rgb(7 7 26 / 0.08); }
.advantage-check { display: grid; width: 44px; height: 44px; place-items: center; border: 2px solid var(--blue); border-radius: 4px; color: var(--blue); }
.advantage-check svg { width: 28px; height: 28px; }
.advantage-item p { margin: 0; color: #05061a; font-size: 18px; font-weight: 500; line-height: 1.42; }
.advantage-item strong { font-weight: 700; }
.job-faq { padding: 82px 0 76px; background: #fff; }
.job-faq-inner { width: min(calc(100% - 56px), 760px); margin: 0 auto; }
.job-faq-title { margin: 0 0 42px; color: var(--ink); font-size: 28px; font-weight: 700; line-height: 1.2; text-align: center; }
.job-faq .faq-list { gap: 16px; }
.job-faq .faq-item { border-radius: 3px; }
.job-faq .faq-item summary { min-height: 54px; padding: 0 14px; font-size: 14px; line-height: 1.3; }
.job-faq .faq-marker { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 0; background: var(--blue-2); font-size: 22px; font-weight: 400; }
.job-faq .faq-item p { padding: 0 16px 18px; font-size: 13px; line-height: 1.55; }
.job-testimonials { overflow: hidden; padding: 72px 0 80px; background: var(--soft); }
.job-testimonial-head { width: min(calc(100% - 56px), 980px); margin: 0 auto 36px; }
.job-testimonial-head p { margin: 0 0 10px; color: var(--ink); font-size: 16px; font-weight: 700; }
.job-testimonial-head h2 { margin: 0 0 12px; color: var(--ink); font-size: clamp(28px, 3vw, 38px); line-height: 1.14; }
.job-testimonial-head .copy { margin: 0; color: var(--muted); font-size: 14px; }
.job-testimonial-carousel { position: relative; width: min(calc(100% - 110px), 1560px); margin: 0 auto; }
.job-testimonial-track { display: flex; gap: 18px; }
.job-testimonial-card { flex: 0 0 350px; width: 350px; background: #fff; box-shadow: 0 10px 26px rgb(7 7 26 / 0.05); }
.job-testimonial-video { position: relative; background: #111; }
.job-testimonial-video img, .job-testimonial-video iframe, .job-testimonial-video video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.job-testimonial-video .testimonial-video-trigger { width: 100%; }
.job-testimonial-video img { opacity: 0.72; }
.job-testimonial-video iframe { border: 0; }
.job-testimonial-video .play { width: 78px; height: 52px; border-radius: 0; }
.job-testimonial-video .play::before { width: 0; height: 0; margin-left: 4px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid currentColor; content: ""; }
.job-testimonial-card h3 { margin: 0; padding: 16px 18px; font-size: 15px; line-height: 1.25; }
.job-testimonial-carousel .arrow { --arrow-icon-size: 16px; top: 45%; width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: 0 12px 28px rgb(7 7 26 / 0.12); color: var(--ink); }
.job-testimonial-carousel .arrow--left { left: -50px; }
.job-testimonial-carousel .arrow--right { right: -50px; }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; }
.cta-band p { max-width: 680px; margin: 16px 0 0; color: rgb(255 255 255 / 0.78); }
section[data-template-section="job-cta"] .cta-band p:not(.section-kicker) { font-size: 15px; line-height: 1.45; }
section[data-template-section="job-cta"] .btn { min-height: 38px; gap: 8px; padding: 11px 18px; font-size: 12px; }
section[data-template-section="job-process"] .process-grid { grid-template-columns: 0.75fr 1.35fr; gap: 84px; width: min(calc(100% - 56px), 1260px); }
section[data-template-section="job-process"] .process-graphic { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; padding: 68px 0 24px; }
section[data-template-section="job-process"] .process-line { top: 223px; right: 7%; left: 7%; width: auto; height: 4px; border-radius: 999px; background: var(--blue); }
section[data-template-section="job-process"] .process-step { display: flex; min-width: 0; flex: 1; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
section[data-template-section="job-process"] .icon-circle { width: 112px; height: 112px; border-radius: 999px; background: rgb(255 255 255 / 0.95); box-shadow: 0 24px 60px rgb(10 20 60 / 0.1); color: var(--blue); }
section[data-template-section="job-process"] .icon-circle svg { width: 44px; height: 44px; }
section[data-template-section="job-process"] .step-dot { width: 42px; height: 42px; background: var(--blue); box-shadow: 0 0 0 12px rgb(5 41 158 / 0.12); font-size: 18px; }
section[data-template-section="job-process"] .process-label strong { color: var(--blue); font-size: 16px; }
section[data-template-section="job-process"] .process-label span { margin-top: 10px; font-size: 14px; }
.contact-card { margin-top: 26px; padding: 22px; border-left: 4px solid var(--blue); background: #fff; }
.job-contact-section .contact-card { display: grid; max-width: 620px; margin: 0; gap: 20px; align-items: center; }
.job-contact-section .contact-card--with-image { grid-template-columns: 96px 1fr; }
.contact-card-image { overflow: hidden; width: 96px; height: 96px; background: var(--soft); }
.contact-card-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-card p { margin: 0 0 6px; color: var(--muted); }
.contact-card strong { display: block; color: var(--ink); }
.contact-card a { display: block; color: var(--blue); font-weight: 700; }
section[data-template-section="job-process"] .contact-card p,
section[data-template-section="job-process"] .contact-card strong,
section[data-template-section="job-process"] .contact-card a { font-size: 15px; line-height: 1.5; }
.cs-container { width: min(100% - 32px, var(--cs-max-width)); margin: 0 auto; }
.cs-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--cs-border); background: color-mix(in srgb, var(--cs-bg) 92%, transparent); backdrop-filter: blur(12px); }
.cs-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.cs-header__brand { display: inline-flex; align-items: center; min-width: 0; font-weight: 800; text-decoration: none; }
.cs-header__logo, .cs-footer__logo { max-height: 42px; width: auto; object-fit: contain; }
.cs-header__nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 14px; }
.cs-header__link, .cs-footer__link { color: var(--cs-muted-text); font-size: 0.94rem; text-decoration: none; }
.cs-header__link:hover, .cs-footer__link:hover { color: var(--cs-primary); }
.cs-header__toggle { display: none; border: 1px solid var(--cs-border); border-radius: var(--cs-button-radius); background: var(--cs-bg); color: var(--cs-text); padding: 8px 10px; }
.cs-section { padding: var(--cs-section-padding-y) 0; border-bottom: 1px solid var(--cs-border); background: var(--cs-bg); }
.cs-section:nth-of-type(odd) { background: var(--cs-soft-bg); }
.cs-section__intro, .cs-hero__intro, .cs-cta__intro { max-width: 760px; }
.cs-eyebrow { margin: 0 0 10px; color: var(--cs-primary); font-size: 0.78rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
h2 { margin: 0; color: var(--cs-text); font-size: clamp(2rem, 4vw, 4.1rem); line-height: 1.02; letter-spacing: 0; }
h3 { margin: 0; color: var(--cs-text); font-size: 1.1rem; line-height: 1.25; }
p { color: var(--cs-muted-text); }
.cs-hero, .cs-generic { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.cs-hero__content, .cs-generic__content { min-width: 0; display: grid; gap: 24px; }
.cs-media, .cs-hero__media, .cs-gallery__item { overflow: hidden; margin: 0; border: 1px solid var(--cs-border); border-radius: 8px; background: var(--cs-bg); }
.cs-media img, .cs-hero__media img, .cs-gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cs-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cs-button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; border-radius: var(--cs-button-radius); background: var(--cs-primary); color: #fff; padding: 10px 18px; font-family: inherit; font-weight: 400; text-decoration: none; }
.cs-button--secondary { border: 1px solid var(--cs-border); background: var(--cs-bg); color: var(--cs-text); }
.cs-card-grid, .cs-job-grid, .cs-gallery, .cs-facts { display: grid; gap: 16px; }
.cs-card-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 28px; }
.cs-card, .cs-job-card, .cs-empty, .cs-faq-item, .cs-facts > div { border: 1px solid var(--cs-border); border-radius: 8px; background: var(--cs-bg); padding: 20px; }
.cs-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-bottom: 14px; border-radius: 999px; background: var(--cs-primary); color: #fff; font-weight: 800; }
.cs-job-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 28px; }
.cs-job-card { display: grid; align-content: space-between; gap: 24px; min-height: 210px; }
.cs-facts { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.cs-facts span { display: block; color: var(--cs-muted-text); font-size: 0.82rem; }
.cs-facts strong { display: block; margin-top: 4px; color: var(--cs-text); }
.cs-gallery { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 28px; }
.cs-faq-list { display: grid; gap: 12px; margin-top: 28px; }
.cs-faq-item summary { cursor: pointer; color: var(--cs-text); font-weight: 800; }
.cs-metric strong { color: var(--cs-primary); font-size: clamp(2rem, 5vw, 4rem); line-height: 1; }
.cs-cta { display: grid; justify-items: center; text-align: center; gap: 24px; }
.cs-footer { padding: 44px 0; background: var(--cs-text); color: var(--cs-bg); }
.cs-footer p, .cs-footer a { color: color-mix(in srgb, var(--cs-bg) 74%, transparent); }
.cs-footer h2 { margin: 0 0 12px; color: var(--cs-bg); font-size: 1rem; }
.cs-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr)); gap: 28px; }
.cs-footer__column { display: grid; align-content: start; gap: 8px; }
@media (min-width: 901px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 84px), var(--wrap)); }
  .site-header .wrap { width: min(calc(100% - 84px), 1890px); }
  .narrow { width: min(calc(100% - 84px), var(--wrap)); }
  .btn { min-height: 56px; gap: 10px; padding: 7px 28px; font-size: 15px; }
  .btn--small { min-height: 48px; padding: 6px 24px; font-size: 14px; }
  .hero[data-template-section="job-hero"] .btn { min-height: 38px; gap: 8px; padding: 11px 18px; font-size: 12px; }
  .icon { width: 22px; height: 22px; }
  .section { padding: 62px 0; }
  .section--tight { padding: 50px 0; }
  .kicker { margin-bottom: 10px; font-size: 14px; line-height: 1.4; }
  .headline { font-size: clamp(52px, 4.2vw, 72px); line-height: 1.08; }
  .copy { margin-top: 14px; font-size: 16px; line-height: 1.5; }
  .site-header { height: 84px; }
  .header-inner { grid-template-columns: 255px 1fr 255px; height: 84px; }
  .brand img { width: auto; max-width: calc(162px * var(--career-site-logo-scale, 1)); max-height: calc(36px * var(--career-site-logo-scale, 1)); }
  .nav { gap: 36px; font-size: 14px; }
  .socials { gap: 20px; }
  .socials a { width: 24px; height: 24px; }
  .menu-toggle { width: 51px; height: 51px; }
  .hero { min-height: 715px; }
  .hero .wrap { min-height: 715px; }
  .hero-card { width: min(710px, 100%); margin-left: 0; }
  .hero h1 { font-size: 48px; line-height: 1.28; }
  .hero p { max-width: 710px; margin: 24px 0 37px; font-size: 18px; line-height: 1.5; }
  .hero-card .btn { min-height: 61px; padding: 8px 31px; border-radius: 4px; font-size: 17px; }
  .hero[data-template-section="job-hero"] .eyebrow { margin: 0 0 15px; font-size: 13px; line-height: normal; }
  .hero[data-template-section="job-hero"] .hero-copy { max-width: 700px; margin: 24px 0; font-size: 16px; line-height: 1.65; }
  .jobs { padding: 42px 0 54px; }
  .jobs h2 { width: min(calc(100% - 84px), var(--wrap)); margin-bottom: 34px; font-size: 32px; font-weight: 600; line-height: 1.3; }
  .carousel { width: min(calc(100% - 84px), var(--wrap)); }
  .testimonial-carousel { width: min(calc(100% - 84px), var(--wrap)); margin-top: 33px; }
  .job-row { gap: 33px; }
  .testimonial-track { gap: 15px; }
  .job-card { flex-basis: calc((100% - 66px) / 3); }
  .testimonial-card { flex-basis: 398px; width: 398px; }
  .job-card { min-height: 385px; padding: 54px 32px 32px; }
  .job-icon { width: 44px; height: 44px; margin-bottom: 22px; }
  .job-icon svg { width: 34px; height: 34px; }
  .job-card h3 { min-height: 64px; margin-bottom: 24px; padding-bottom: 20px; font-size: 24px; line-height: 1.3; }
  .job-card p { min-height: 42px; margin-bottom: 22px; font-size: 14px; line-height: 1.5; }
  .arrow { --arrow-icon-size: 34px; width: 39px; height: 39px; }
  .arrow--left { left: -69px; }
  .arrow--right { right: -69px; }
  .dots { gap: 10px; margin-top: 27px; }
  .dot { width: 6px; height: 6px; }
  .media-split { gap: 120px; }
  .media-split .kicker { margin-bottom: 10px; font-size: 24px; line-height: 1.31; }
  .media-split .headline { font-size: clamp(52px, 4.2vw, 72px); line-height: 1.08; }
  .media-split .copy { margin-top: 18px; font-size: 18px; line-height: 1.5; }
  .media-split .btn { margin-top: 24px; }
  .about-media-figure { width: 100%; max-width: 598px; }
  .play { width: 117px; height: 78px; }
  .benefit-intro { padding: 62px 0 24px; }
  .benefit-intro > .narrow,
  section[data-template-section="bullet-points"].narrow { width: min(calc(100% - 84px), var(--wrap)); }
  .benefit-intro .kicker { font-size: 16px; }
  .benefit-intro .headline { font-size: clamp(52px, 4.2vw, 72px); line-height: 1.08; }
  .benefit-intro .copy { max-width: 1260px; margin-top: 14px; font-size: 16px; line-height: 1.5; }
  .benefit-grid { gap: 16px; padding-bottom: 72px; }
  .benefit-card { min-height: 390px; padding: 32px 30px; }
  .benefit-icon { width: 64px; height: 64px; margin-bottom: 24px; }
  .benefit-icon svg { width: 30px; height: 30px; }
  .benefit-card h3 { margin-bottom: 16px; font-size: 20px; }
  .benefit-card p { font-size: 14px; }
  .video-block { padding-top: 12px; }
  .video-shell { margin-top: 27px; }
  .job-highlights { gap: 18px; margin-top: 33px; }
  .job-highlight-card, .job-highlight-empty { min-height: 308px; padding: 33px; }
  .job-highlight-card h3, .job-highlight-empty h3 { font-size: 24px; line-height: 1.3; }
  .job-highlight-card p, .job-highlight-empty p { font-size: 14px; }
  .gallery-carousel { margin-top: 33px; }
  .gallery-track { gap: 12px; }
  .gallery-slide { flex-basis: 459px; width: 459px; }
  .testimonial-card h3 { padding: 18px 21px; font-size: 18px; }
  .metrics { padding: 63px 0 69px; }
  .metrics h2 { margin-bottom: 42px; font-size: 16px; font-weight: 600; }
  .metric-row { gap: 105px; }
  .metric-number { font-size: 48px; }
  .metric h3 { font-size: 14px; }
  .metric p { font-size: 12px; }
  .process-grid { gap: 87px; }
  .person { grid-template-columns: 63px 1fr; gap: 18px; margin-top: 33px; }
  .avatar { width: 63px; height: 63px; }
  .person strong, .person span { font-size: 16px; }
  .process-graphic { gap: 32px; padding: 52px 0 28px; }
  .process-line { top: 148px; height: 4px; }
  .process-step { gap: 18px; }
  .icon-circle { width: 72px; height: 72px; box-shadow: 0 18px 42px rgb(10 20 60 / 0.1); }
  .icon-circle svg { width: 28px; height: 28px; }
  .step-dot { width: 28px; height: 28px; box-shadow: 0 0 0 8px rgb(5 41 158 / 0.12); font-size: 13px; }
  .process-label strong { font-size: 12px; }
  .process-label span { margin-top: 8px; font-size: 11px; }
  .faq-grid { gap: 96px; }
  .faq-list { gap: 14px; }
  .faq-item summary { min-height: 48px; gap: 24px; padding: 0 18px; font-size: 14px; }
  .faq-marker { width: 27px; height: 27px; flex-basis: 27px; }
  .faq-marker svg { width: 18px; height: 18px; }
  .faq-item p { padding: 0 18px 18px; font-size: 14px; }
  .cta { min-height: 275px; }
  .cta .wrap { padding-left: 0; }
  .cta h2 { margin-bottom: 12px; font-size: 48px; font-weight: 600; line-height: 1.28; }
  .cta p { max-width: 855px; margin-bottom: 27px; font-size: 18px; line-height: 1.5; }
  .footer { padding: 54px 0 69px; }
  .footer-grid { gap: 90px; }
  .footer-logo { width: calc(130px * var(--career-site-logo-scale, 1)); margin-bottom: 18px; }
  .footer h3 { margin-bottom: 18px; font-size: 14px; }
  .footer p, .footer a { margin-bottom: 12px; font-size: 14px; }
  .map { height: 195px; }
  .pin { top: 93px; width: 27px; height: 27px; border-width: 6px; }
}
@media (max-width: 900px) {
  .job-testimonial-head { width: min(calc(100% - 34px), 760px); }
  .job-testimonials { padding: 58px 0 64px; }
  .job-testimonial-carousel { width: min(calc(100% - 68px), 760px); }
  .job-testimonial-card { flex-basis: 300px; width: 300px; }
  .job-testimonial-carousel .arrow--left { left: -38px; }
  .job-testimonial-carousel .arrow--right { right: -38px; }
}
@media (max-width: 900px) {
  .cs-container { width: min(100% - 24px, var(--cs-max-width)); }
  .wrap, .narrow { width: min(calc(100% - 34px), var(--wrap)); }
  .footer.footer--job .footer-grid { width: min(calc(100% - 34px), var(--wrap)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .socials { display: none; }
  .nav { position: fixed; top: 63px; right: 0; left: 0; display: grid; justify-content: start; gap: 18px; padding: 28px; border-bottom: 1px solid rgb(7 7 26 / 0.08); background: #fff; box-shadow: 0 18px 42px rgb(7 7 26 / 0.08); color: var(--ink); font-size: 18px; opacity: 0; pointer-events: none; transform: translate3d(0, -18px, 0); transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 210ms ease, visibility 0s linear 280ms; visibility: hidden; }
  .nav.open, .nav[data-open="true"] { opacity: 1; pointer-events: auto; transform: translate3d(0, 0, 0); transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, visibility 0s linear 0s; visibility: visible; }
  .menu-toggle { display: grid; }
  .hero[data-template-section="cover"] .wrap { min-height: 440px; }
  .hero-card { width: 100%; margin-left: 0; }
  .media-split, .job-highlights, .metric-row, .process-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero[data-template-section="job-hero"], .hero[data-template-section="job-hero"] .hero-inner { min-height: auto; }
  .hero[data-template-section="job-hero"] .hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 70px 0 46px; }
  .hero[data-template-section="job-hero"] h1 { font-size: clamp(38px, 11vw, 58px); }
  .job-facts { width: 100%; }
  .fact { grid-template-columns: 90px 1fr; }
  .task-showcase { padding: 44px 0 56px; }
  .task-panel { grid-template-columns: 1fr; width: min(calc(100% - 34px), 760px); gap: 36px; padding: 44px 22px; }
  .task-media img { aspect-ratio: 16 / 10.8; }
  .relationship-section { padding: 54px 0 58px; }
  .relationship-grid, .content-grid, .cta-band, section[data-template-section="job-profile"] .content-grid, section[data-template-section="job-process"] .process-grid { grid-template-columns: 1fr; }
  section[data-template-section="job-relationship"] .relationship-grid,
  section[data-template-section="job-metrics"] > .narrow,
  section[data-template-section="job-profile"] > .narrow,
  section[data-template-section="job-cta"] > .narrow { width: min(calc(100% - 34px), var(--wrap)); }
  .relationship-grid { gap: 34px; }
  .relationship-media img { aspect-ratio: 16 / 10.8; }
  .relationship-copy { font-size: 16px; }
  .job-metrics { padding: 58px 0 62px; }
  .job-metrics h2 { font-size: 24px; }
  .job-metric-row { grid-template-columns: 1fr; gap: 38px; margin-top: 42px; }
  .job-metric-number { font-size: 58px; }
  .job-metric h3 { margin: 14px 0 10px; font-size: 20px; }
  .job-metric p { font-size: 15px; }
  section[data-template-section="job-profile"].section,
  section[data-template-section="job-cta"].section,
  section[data-template-section="job-contact"].section,
  section[data-template-section="job-process"].section { padding: 58px 0; }
  .job-advantages { padding: 62px 0 68px; }
  .job-advantages-inner { width: min(calc(100% - 34px), 760px); }
  .job-advantages-title { margin-bottom: 34px; font-size: clamp(28px, 8vw, 36px); }
  .advantage-item { grid-template-columns: 42px 1fr; gap: 18px; min-height: 0; padding: 20px 18px; }
  .advantage-check { width: 38px; height: 38px; }
  .advantage-check svg { width: 24px; height: 24px; }
  .advantage-item p { font-size: 15px; }
  .job-faq { padding: 58px 0; }
  .job-faq-inner, .job-testimonial-head { width: min(calc(100% - 34px), 760px); }
  .job-faq-title { margin-bottom: 28px; font-size: 24px; }
  .job-faq .faq-item summary { min-height: 50px; font-size: 13px; }
  .job-testimonials { padding: 58px 0 64px; }
  .job-testimonial-carousel { width: min(calc(100% - 68px), 760px); }
  .job-testimonial-card { flex-basis: 300px; width: 300px; }
  .job-contact-section .contact-card { grid-template-columns: 1fr; }
  .process-graphic { justify-content: flex-start; overflow-x: auto; gap: 22px; padding: 42px 0 28px; scrollbar-width: none; }
  .process-graphic::-webkit-scrollbar { display: none; }
  .process-line { top: 162px; right: auto; left: 44px; width: 620px; }
  .gallery-slide { flex-basis: 260px; width: 260px; }
  .process-step { min-width: 136px; }
  section[data-template-section="job-process"] .process-grid { width: min(calc(100% - 34px), var(--wrap)); }
  section[data-template-section="job-process"] .process-graphic { justify-content: flex-start; overflow-x: auto; gap: 22px; padding: 42px 0 28px; scrollbar-width: none; }
  section[data-template-section="job-process"] .process-graphic::-webkit-scrollbar { display: none; }
  section[data-template-section="job-process"] .process-line { top: 162px; right: auto; left: 68px; width: 632px; }
  section[data-template-section="job-process"] .process-step { min-width: 136px; gap: 18px; }
  section[data-template-section="job-process"] .icon-circle { width: 88px; height: 88px; }
  section[data-template-section="job-process"] .icon-circle svg { width: 34px; height: 34px; }
  section[data-template-section="job-process"] .step-dot { width: 32px; height: 32px; box-shadow: 0 0 0 9px rgb(5 41 158 / 0.12); font-size: 13px; }
  section[data-template-section="job-process"] .process-label strong { font-size: 13px; }
  section[data-template-section="job-process"] .process-label span { margin-top: 6px; font-size: 12px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid[data-benefit-columns="1"] { grid-template-columns: minmax(0, 1fr); }
  .benefit-intro > .narrow,
  section[data-template-section="bullet-points"].narrow { width: min(calc(100% - 34px), var(--wrap)); }
  .jobs h2 { width: min(calc(100% - 34px), var(--wrap)); }
  .job-card { flex-basis: calc((100% - 22px) / 2); }
  .cta .wrap { padding-left: 0; }
  .carousel, .testimonial-carousel { width: min(calc(100% - 34px), var(--wrap)); }
  .arrow--left { left: -17px; }
  .arrow--right { right: -17px; }
  .cs-header__inner { align-items: flex-start; }
  .cs-header__toggle { display: inline-flex; }
  .cs-header__nav { display: none; flex-basis: 100%; justify-content: flex-start; }
  .cs-header__nav[data-open="true"] { display: flex; }
  .cs-hero, .cs-generic { grid-template-columns: 1fr; }
  .cs-section { padding: var(--cs-tight-section-padding-y) 0; }
  h2 { font-size: clamp(1.85rem, 10vw, 3rem); }
  .cs-footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .carousel, .testimonial-carousel { width: min(calc(100% - 34px), var(--wrap)); }
  .job-card, .testimonial-card { flex-basis: 100%; }
  .job-testimonial-carousel { width: min(calc(100% - 54px), 420px); }
  .job-testimonial-card { flex-basis: 100%; width: 100%; }
  .job-testimonial-track { gap: 14px; }
  .gallery-slide { flex-basis: 230px; width: 230px; }
}
[data-career-site-section-id][data-cs-spacing-top="compact"] { padding-top: 36px; }
[data-career-site-section-id][data-cs-spacing-top="spacious"] { padding-top: 74px; }
[data-career-site-section-id][data-cs-spacing-top="none"] { padding-top: 0; }
[data-career-site-section-id][data-cs-spacing-bottom="compact"] { padding-bottom: 36px; }
[data-career-site-section-id][data-cs-spacing-bottom="spacious"] { padding-bottom: 74px; }
[data-career-site-section-id][data-cs-spacing-bottom="none"] { padding-bottom: 0; }
[data-career-site-section-id][data-cs-background="transparent"] { background: transparent; }
[data-career-site-section-id][data-cs-background="surface"] { background: var(--cs-bg); }
[data-career-site-section-id][data-cs-background="soft"] { background: var(--soft); }
[data-career-site-section-id][data-cs-background="primary"] { background: var(--blue); color: #fff; }
[data-career-site-section-id][data-cs-background="primary"] .kicker,
[data-career-site-section-id][data-cs-background="primary"] .section-kicker,
[data-career-site-section-id][data-cs-background="primary"] .copy { color: rgb(255 255 255 / 0.78); }
[data-career-site-section-id][data-cs-background="custom"] { background: var(--cs-section-custom-bg, var(--cs-bg)); }
[data-career-site-section-id][data-cs-style-preset="contrast"] {
  background: var(--ink);
  color: #fff;
}
[data-career-site-section-id][data-cs-style-preset="contrast"] .headline,
[data-career-site-section-id][data-cs-style-preset="contrast"] .section-title,
[data-career-site-section-id][data-cs-style-preset="contrast"] h1,
[data-career-site-section-id][data-cs-style-preset="contrast"] h2,
[data-career-site-section-id][data-cs-style-preset="contrast"] h3,
[data-career-site-section-id][data-cs-style-preset="contrast"] .job-card h3,
[data-career-site-section-id][data-cs-style-preset="contrast"] .job-highlight-card h3,
[data-career-site-section-id][data-cs-style-preset="contrast"] .benefit-card h3,
[data-career-site-section-id][data-cs-style-preset="contrast"] .testimonial-card h3,
[data-career-site-section-id][data-cs-style-preset="contrast"] .cs-card h3 { color: #fff; }
[data-career-site-section-id][data-cs-style-preset="contrast"] .kicker,
[data-career-site-section-id][data-cs-style-preset="contrast"] .section-kicker,
[data-career-site-section-id][data-cs-style-preset="contrast"] .cs-eyebrow,
[data-career-site-section-id][data-cs-style-preset="contrast"] .copy,
[data-career-site-section-id][data-cs-style-preset="contrast"] p,
[data-career-site-section-id][data-cs-style-preset="contrast"] .job-card p,
[data-career-site-section-id][data-cs-style-preset="contrast"] .job-highlight-card p,
[data-career-site-section-id][data-cs-style-preset="contrast"] .benefit-card p,
[data-career-site-section-id][data-cs-style-preset="contrast"] .testimonial-card p,
[data-career-site-section-id][data-cs-style-preset="contrast"] .cs-card p { color: rgb(255 255 255 / 0.76); }
[data-career-site-section-id][data-cs-style-preset="contrast"] .job-card,
[data-career-site-section-id][data-cs-style-preset="contrast"] .job-highlight-card,
[data-career-site-section-id][data-cs-style-preset="contrast"] .benefit-card,
[data-career-site-section-id][data-cs-style-preset="contrast"] .testimonial-card,
[data-career-site-section-id][data-cs-style-preset="contrast"] .cs-card {
  border-color: rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}
@media (max-width: 900px) {
[data-career-site-section-id][data-cs-spacing-top-tablet="default"] { padding-top: var(--cs-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-top-tablet="compact"] { padding-top: var(--cs-tight-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-top-tablet="spacious"] { padding-top: 74px; }
[data-career-site-section-id][data-cs-spacing-top-tablet="none"] { padding-top: 0; }
[data-career-site-section-id][data-cs-spacing-bottom-tablet="default"] { padding-bottom: var(--cs-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-bottom-tablet="compact"] { padding-bottom: var(--cs-tight-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-bottom-tablet="spacious"] { padding-bottom: 74px; }
[data-career-site-section-id][data-cs-spacing-bottom-tablet="none"] { padding-bottom: 0; }
[data-career-site-section-id][data-cs-background-tablet="default"] { background: var(--cs-bg); color: var(--cs-text); }
[data-career-site-section-id][data-cs-background-tablet="transparent"] { background: transparent; }
[data-career-site-section-id][data-cs-background-tablet="surface"] { background: var(--cs-bg); }
[data-career-site-section-id][data-cs-background-tablet="soft"] { background: var(--soft); }
[data-career-site-section-id][data-cs-background-tablet="primary"] { background: var(--blue); color: #fff; }
[data-career-site-section-id][data-cs-background-tablet="custom"] { background: var(--cs-section-custom-bg, var(--cs-bg)); }
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] { background: var(--ink); color: #fff; }
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] h1,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] h2,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] h3,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] .headline,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] .section-title { color: #fff; }
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] p,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] .copy,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] .kicker,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] .section-kicker,
[data-career-site-section-id][data-cs-style-preset-tablet="contrast"] .cs-eyebrow { color: rgb(255 255 255 / 0.76); }
}
@media (max-width: 640px) {
[data-career-site-section-id][data-cs-spacing-top-mobile="default"] { padding-top: var(--cs-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-top-mobile="compact"] { padding-top: var(--cs-tight-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-top-mobile="spacious"] { padding-top: 74px; }
[data-career-site-section-id][data-cs-spacing-top-mobile="none"] { padding-top: 0; }
[data-career-site-section-id][data-cs-spacing-bottom-mobile="default"] { padding-bottom: var(--cs-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-bottom-mobile="compact"] { padding-bottom: var(--cs-tight-section-padding-y); }
[data-career-site-section-id][data-cs-spacing-bottom-mobile="spacious"] { padding-bottom: 74px; }
[data-career-site-section-id][data-cs-spacing-bottom-mobile="none"] { padding-bottom: 0; }
[data-career-site-section-id][data-cs-background-mobile="default"] { background: var(--cs-bg); color: var(--cs-text); }
[data-career-site-section-id][data-cs-background-mobile="transparent"] { background: transparent; }
[data-career-site-section-id][data-cs-background-mobile="surface"] { background: var(--cs-bg); }
[data-career-site-section-id][data-cs-background-mobile="soft"] { background: var(--soft); }
[data-career-site-section-id][data-cs-background-mobile="primary"] { background: var(--blue); color: #fff; }
[data-career-site-section-id][data-cs-background-mobile="custom"] { background: var(--cs-section-custom-bg, var(--cs-bg)); }
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] { background: var(--ink); color: #fff; }
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] h1,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] h2,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] h3,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] .headline,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] .section-title { color: #fff; }
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] p,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] .copy,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] .kicker,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] .section-kicker,
[data-career-site-section-id][data-cs-style-preset-mobile="contrast"] .cs-eyebrow { color: rgb(255 255 255 / 0.76); }
}

[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .benefit-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .job-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .job-highlight-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .job-highlight-empty,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .testimonial-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .job-testimonial-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .task-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .task-panel,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .relationship-item,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .advantage-item,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .contact-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .faq-item,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .check-list li,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .hero-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .job-facts,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .cs-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .cs-job-card,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .cs-empty,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .cs-faq-item,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .cs-facts > div { background: #201e1e; }
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .benefit-icon,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .job-icon,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .cs-card__icon,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .faq-marker,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .icon-circle,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .step-dot,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .task-icon,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .relationship-icon,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .advantage-check,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .check-list li::before,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .avatar span,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .process-line,
[data-career-site-section-id="0ac366c7-21a7-457b-82d9-59b0a2d1a6cf"][data-career-site-section-id] .play { background: #c99b1d; border-color: #c99b1d; }
@media (prefers-reduced-motion: reduce) {
  .nav, .menu-toggle, .menu-toggle .menu-line, .gallery-track, .gallery-lightbox, .video-lightbox, .faq-panel { transition: none !important; animation: none !important; }
  .cs-animate-ready [data-cs-animate],
  .cs-animate-ready [data-cs-animate] [data-cs-animate-child] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
