:root {
  --navy: #0d1b2d;
  --navy-2: #142a43;
  --orange: #f26d21;
  --orange-dark: #cf4f0a;
  --gray: #6b6f72;
  --steel: #4e6c8e;
  --steel-light: #dbe5ef;
  --warm: #f7f7f5;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5d6572;
  --line: #dfe4e8;
  --shadow: 0 20px 50px rgba(13, 27, 45, 0.12);
  --shadow-soft: 0 12px 30px rgba(13, 27, 45, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-white { background: var(--white); }
.section-steel { background: #edf2f6; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 34px; height: 3px; background: currentColor; }
.kicker.light { color: #ff9a60; }

h1, h2, h3, h4 {
  margin: 0 0 18px;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.35rem); max-width: 920px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
h4 { font-size: 1.05rem; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
p { margin: 0 0 20px; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 820px; }
.section-dark .lead { color: #c7d2df; }
.text-muted { color: var(--muted); }
.text-orange { color: var(--orange); }
.eyebrow { font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--steel); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: .015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(13,27,45,.18); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: #17304e; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: .92rem; }
.btn-link { color: var(--navy); font-weight: 900; display: inline-flex; align-items: center; gap: 8px; }
.btn-link::after { content: "→"; color: var(--orange); transition: transform .2s ease; }
.btn-link:hover::after { transform: translateX(4px); }

.utility-bar { background: #081422; color: #cbd6e3; font-size: .82rem; }
.utility-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.utility-links { display: flex; gap: 20px; font-weight: 700; }
.utility-links a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,27,45,.09);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 265px; }
.brand img { width: 47px; height: 64px; object-fit: contain; }
.brand-text { line-height: 1; }
.brand-text strong { display: block; font-size: 1.42rem; letter-spacing: .15em; color: var(--navy); }
.brand-text span { display: block; margin-top: 6px; color: var(--orange); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 12px 11px;
  border-radius: 7px;
  color: #26344a;
  font-weight: 800;
  font-size: .91rem;
}
.site-nav a:hover, .site-nav a.active { background: #eef2f6; color: var(--navy); }
.header-cta { display: flex; gap: 9px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px auto; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(13,27,45,.985) 0%, rgba(13,27,45,.95) 55%, rgba(20,42,67,.89) 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -25%;
  width: 52%;
  aspect-ratio: 1;
  border: 2px solid rgba(242,109,33,.3);
  transform: rotate(28deg);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.17fr .83fr; gap: 56px; align-items: center; min-height: 690px; padding: 74px 0; }
.hero h1 { color: var(--white); }
.hero .lead { color: #cbd6e3; }
.hero-emphasis { color: #ff9a60; }

.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-logo-shell {
  width: min(330px, 75%);
  aspect-ratio: .95;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
  clip-path: polygon(50% 0, 96% 24%, 96% 76%, 50% 100%, 4% 76%, 4% 24%);
  backdrop-filter: blur(10px);
}
.hero-logo-shell img { width: 50%; padding: 14px; background: #ffffff; border-radius: 16px; filter: drop-shadow(0 18px 18px rgba(0,0,0,.25)); }
.float-card {
  position: absolute;
  min-width: 190px;
  padding: 18px 20px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
}
.float-card strong { display: block; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.float-card span { display: block; margin-top: 4px; color: var(--muted); font-size: .86rem; }
.float-1 { top: 40px; right: 0; }
.float-2 { left: 0; bottom: 100px; }
.float-3 { right: 10px; bottom: 14px; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 27px 24px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 46px; height: 46px; flex: 0 0 46px; border: 2px solid var(--navy); border-radius: 50%; display: grid; place-items: center; color: var(--orange); font-weight: 950; }
.trust-item strong { display: block; color: var(--navy); font-size: .95rem; }
.trust-item span { display: block; color: var(--muted); font-size: .82rem; line-height: 1.35; }

.section-heading { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 42px; }
.section-heading > div:first-child { max-width: 790px; }
.section-heading p { margin-bottom: 0; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--white);
  border: 1px solid rgba(13,27,45,.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.card:hover { border-color: rgba(242,109,33,.38); }
.card-accent { position: relative; overflow: hidden; }
.card-accent::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--orange), var(--steel)); }
.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 22px;
  background: #ecf1f6;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 950;
}
.card p:last-child { margin-bottom: 0; }

/* Keep white cards readable when they appear inside dark sections. */
.section-dark .card { color: var(--ink); }
.section-dark .card h1,
.section-dark .card h2,
.section-dark .card h3,
.section-dark .card h4 { color: var(--navy); }
.section-dark .card p { color: var(--muted); }


.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.split-panel > div { padding: clamp(38px, 6vw, 72px); }
.split-panel .employer { background: var(--navy); color: var(--white); }
.split-panel .candidate { background: var(--white); }
.split-panel .employer h2, .split-panel .employer h3 { color: var(--white); }
.split-panel .employer p { color: #c7d2df; }

.position-card { min-height: 250px; display: flex; flex-direction: column; }
.position-card ul { margin: 0 0 24px; padding-left: 18px; color: var(--muted); }
.position-card .btn-link { margin-top: auto; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 11px; }
.tag { padding: 10px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--navy); font-weight: 800; font-size: .9rem; }
.tag.dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--white); }

.process { counter-reset: process; }
.process-step { position: relative; padding: 32px 26px 26px; border-top: 4px solid var(--steel-light); }
.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: .08em;
}
.process-step h3 { font-size: 1.25rem; }

.region-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.florida-panel {
  position: relative;
  min-height: 430px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.florida-panel::before {
  content: "FLORIDA";
  position: absolute;
  font-weight: 950;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: .12em;
  color: rgba(255,255,255,.035);
  transform: rotate(-13deg);
}
.florida-panel img { width: 38%; position: relative; z-index: 2; padding: 12px; background: #ffffff; border-radius: 16px; filter: drop-shadow(0 20px 28px rgba(0,0,0,.34)); }
.region-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.region-list span { display: block; padding: 12px 14px; background: var(--white); border-radius: 8px; border-left: 4px solid var(--orange); font-weight: 800; box-shadow: var(--shadow-soft); }

.faq-list { display: grid; gap: 14px; max-width: 960px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 18px; text-align: left; padding: 22px 24px; border: 0; background: var(--white); color: var(--navy); font-weight: 900; }
.faq-question span:last-child { color: var(--orange); font-size: 1.35rem; transition: transform .2s ease; }
.faq-answer { display: none; padding: 0 24px 24px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--orange), #ff8d4d); color: var(--white); }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -110px; width: 360px; height: 360px; border: 45px solid rgba(255,255,255,.13); transform: rotate(30deg); }
.cta-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 36px; align-items: center; padding: 58px 0; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { margin: 0; max-width: 760px; color: rgba(255,255,255,.9); }

.page-hero { position: relative; overflow: hidden; padding: 92px 0 80px; background: var(--navy); color: var(--white); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 52px 52px; }
.page-hero::after { content: ""; position: absolute; right: -130px; bottom: -230px; width: 520px; height: 520px; border: 55px solid rgba(242,109,33,.22); transform: rotate(24deg); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4.65rem); max-width: 940px; }
.page-hero .lead { color: #c7d2df; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: #9db1c7; font-size: .88rem; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: #6e849b; }

.sidebar-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 42px; align-items: start; }
.sticky-card { position: sticky; top: 112px; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: #e9f2ec; color: #25703a; display: grid; place-items: center; font-size: .78rem; font-weight: 950; }
.section-dark .check-list li { color: #c7d2df; }

.service-card { position: relative; overflow: hidden; }
.service-card .number { position: absolute; right: 18px; top: 8px; font-size: 4.4rem; font-weight: 950; color: rgba(13,27,45,.05); line-height: 1; }
.service-card h3 { padding-right: 46px; }

.role-group { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.role-group h3 { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.role-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 18px; margin: 0; padding: 0; list-style: none; }
.role-list li { padding: 10px 0 10px 21px; position: relative; color: #425064; border-bottom: 1px dashed #e5e9ec; }
.role-list li::before { content: ""; position: absolute; left: 0; top: 19px; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); }

.sector-card { min-height: 280px; }
.sector-card .sector-label { display: inline-block; margin-bottom: 18px; padding: 7px 10px; background: #e9eff5; border-radius: 6px; color: var(--steel); font-weight: 900; font-size: .75rem; letter-spacing: .09em; text-transform: uppercase; }

.location-card { padding: 0; overflow: hidden; }
.location-card .location-top { padding: 28px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); }
.location-card .location-top h3 { color: var(--white); margin-bottom: 8px; }
.location-card .location-top p { color: #cbd6e3; margin: 0; }
.location-card .location-body { padding: 26px 28px 30px; }
.location-card .cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.location-card .cities span { padding: 6px 9px; border-radius: 5px; background: #edf2f6; color: var(--navy); font-size: .8rem; font-weight: 800; }

.form-card { background: var(--white); border-radius: 18px; padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow); border: 1px solid rgba(13,27,45,.08); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 850; color: var(--navy); font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 8px;
  background: #fbfcfd;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--steel); box-shadow: 0 0 0 4px rgba(78,108,142,.13); }
.field textarea { min-height: 140px; resize: vertical; }
.field small { color: var(--muted); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .9rem; }
.checkbox input { margin-top: 5px; }
.form-actions { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-note { color: var(--muted); font-size: .84rem; }
.form-status { display: none; margin-top: 18px; padding: 13px 15px; border-radius: 8px; background: #e9f2ec; color: #1f6233; font-weight: 800; }
.form-status.show { display: block; }

.job-search-bar { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 12px; padding: 18px; background: var(--white); border-radius: 14px; box-shadow: var(--shadow); margin-top: -38px; position: relative; z-index: 4; }
.job-search-bar input, .job-search-bar select { border: 1px solid var(--line); border-radius: 8px; padding: 13px 14px; width: 100%; }
.job-empty { text-align: center; padding: 62px 30px; background: var(--white); border: 1px dashed #b8c3ce; border-radius: 16px; }
.job-empty-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #edf2f6; color: var(--steel); font-size: 1.6rem; font-weight: 950; }
.talent-pool { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.value-card { text-align: center; padding: 34px 28px; }
.value-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 22px; border: 2px solid var(--navy); border-radius: 50%; color: var(--orange); font-size: 1.3rem; font-weight: 950; }

.contact-choice { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.contact-choice .card { min-height: 260px; display: flex; flex-direction: column; }
.contact-choice .btn { margin-top: auto; align-self: flex-start; }
.contact-sidebar,
.contact-sidebar .card { min-width: 0; }
.contact-email {
  margin-top: 5px;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.28;
  letter-spacing: -.018em;
  overflow-wrap: anywhere;
  word-break: normal;
}
.contact-email a { color: var(--navy); }
.contact-email a:hover { color: var(--orange-dark); }

.contact-details { display: grid; gap: 12px; margin-top: 24px; }
.contact-line { padding: 14px 16px; background: #edf2f6; border-radius: 8px; }
.contact-line strong { color: var(--navy); display: block; font-size: .83rem; text-transform: uppercase; letter-spacing: .08em; }

.prose { max-width: 850px; }
.prose h2 { margin-top: 46px; font-size: 2rem; }
.prose h3 { margin-top: 34px; font-size: 1.35rem; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

.site-footer { background: #081422; color: #afbdcc; }
.footer-main { padding: 70px 0 46px; display: grid; grid-template-columns: 1.25fr .75fr .75fr .95fr; gap: 42px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p { max-width: 390px; margin-top: 22px; }
.footer-heading { color: var(--white); font-size: .84rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; margin-bottom: 18px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }
.footer-legal { display: flex; gap: 18px; }

.mobile-cta { display: none; }

@media (max-width: 1120px) {
  .site-nav { position: fixed; inset: 120px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; background: var(--white); padding: 18px; border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr 0.8fr; }
  .float-card { min-width: 160px; }
  .footer-main { grid-template-columns: 1.4fr repeat(3,1fr); }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 84px 0 72px; }
  .hero-visual { min-height: 390px; }
  .hero-logo-shell { width: 290px; }
  .float-1 { right: 6%; }
  .float-2 { left: 5%; }
  .float-3 { right: 7%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split-panel, .region-grid, .sidebar-layout { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .talent-pool { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .utility-inner { min-height: 34px; justify-content: center; }
  .utility-inner > span { display: none; }
  .utility-links { width: 100%; justify-content: center; font-size: .78rem; }
  .header-inner { min-height: 72px; }
  .brand { min-width: 0; }
  .brand img { width: 38px; height: 52px; }
  .brand-text strong { font-size: 1.05rem; letter-spacing: .11em; }
  .brand-text span { font-size: .55rem; }
  .site-nav { top: 110px; }
  .hero-inner { padding: 65px 0 52px; }
  .hero-visual { min-height: 330px; }
  .hero-logo-shell { width: 225px; }
  .float-card { min-width: 145px; padding: 13px 15px; }
  .float-card strong { font-size: .73rem; }
  .float-card span { font-size: .73rem; }
  .float-1 { top: 14px; right: 0; }
  .float-2 { left: 0; bottom: 65px; }
  .float-3 { right: 0; bottom: 0; }
  .trust-grid, .grid-2, .grid-3, .grid-4, .form-grid, .contact-choice { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .role-list { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: 1fr; }
  .job-search-bar { grid-template-columns: 1fr; margin-top: -24px; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 70px 0 62px; }
  .mobile-cta { position: fixed; z-index: 999; display: grid; grid-template-columns: 1fr 1fr; bottom: 0; left: 0; right: 0; box-shadow: 0 -8px 24px rgba(13,27,45,.18); }
  .mobile-cta a { min-height: 52px; display: grid; place-items: center; font-weight: 900; }
  .mobile-cta a:first-child { background: var(--navy); color: var(--white); }
  .mobile-cta a:last-child { background: var(--orange); color: var(--white); }
  body { padding-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.footer-brand .brand img { background: #ffffff; padding: 4px; border-radius: 7px; }


/* Managed Headless production form states */
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status.error { background: #fff0ef; color: #9f241d; }
.form-actions button:disabled { opacity: .65; cursor: wait; }

/* Candidate form clarity, validation, and success confirmation */
.required-note {
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
}
.required-note span { color: #b3261e; font-weight: 950; }
.required-label {
  display: inline-flex;
  align-items: center;
  margin-left: 7px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #fff0ef;
  color: #a5261f;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.45;
  text-transform: uppercase;
  vertical-align: middle;
}
.field-error {
  display: none;
  color: #a5261f !important;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.35;
}
.field.invalid .field-error { display: block; }
.field.invalid input:not([type="checkbox"]),
.field.invalid textarea,
.field.invalid select {
  border-color: #c9322a;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(201,50,42,.11);
}
.field.invalid input:not([type="checkbox"]):focus,
.field.invalid textarea:focus,
.field.invalid select:focus {
  border-color: #b3261e;
  box-shadow: 0 0 0 4px rgba(179,38,30,.14);
}
.field.invalid .checkbox {
  padding: 12px 14px;
  border: 1px solid #c9322a;
  border-radius: 8px;
  background: #fff8f7;
}
.field.invalid input[type="checkbox"] { outline: 2px solid #c9322a; outline-offset: 2px; }

.submission-modal {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 30px 90px rgba(8,20,34,.35);
  overflow: visible;
}
.submission-modal::backdrop { background: rgba(8,20,34,.72); backdrop-filter: blur(3px); }
.submission-modal[open] { animation: modal-in .18s ease-out; }
.submission-modal-panel {
  position: relative;
  padding: clamp(30px, 6vw, 48px);
  border: 1px solid rgba(13,27,45,.08);
  border-radius: 20px;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}
.submission-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), #ffb21c);
}
.submission-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #edf2f6;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.submission-modal-close:hover { background: #dfe7ee; }
.submission-modal-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #e9f4ec;
  color: #1f7138;
  font-size: 2.2rem;
  font-weight: 950;
}
.submission-modal h2 { margin: 8px 0 14px; font-size: clamp(1.65rem, 4vw, 2.25rem); }
.submission-modal p { margin-inline: auto; max-width: 440px; }
.submission-confirmation {
  margin: 24px auto 18px;
  padding: 14px 18px;
  border: 1px solid #d6dee6;
  border-radius: 10px;
  background: #f3f6f9;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.submission-confirmation strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .9rem;
  letter-spacing: .01em;
  overflow-wrap: anywhere;
  text-transform: none;
}
.submission-modal-note { color: var(--muted); font-size: .84rem; }
.submission-modal .btn { margin-top: 8px; min-width: 150px; }
body.modal-open { overflow: hidden; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 680px) {
  .required-label { display: inline-flex; margin-top: 4px; }
  .submission-modal-panel { padding: 38px 22px 28px; }
}

/* Wix CMS-managed job board */
.job-list { display: grid; gap: 20px; }
.job-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 10px 30px rgba(13, 27, 45, .07); }
.job-card-featured { border-top: 4px solid var(--orange); }
.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.job-card h3 { margin: 8px 0 10px; color: var(--navy); font-size: clamp(1.35rem, 2vw, 1.8rem); }
.job-badges, .job-meta, .job-card-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.job-badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: #edf2f6; color: var(--steel); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.job-badge-featured { background: #fff0e8; color: #b94a0b; }
.job-meta { color: #516173; font-size: .94rem; }
.job-meta span:not(:last-child)::after { content: "•"; margin-left: 10px; color: #9aa7b4; }
.job-posted, .job-closing { color: #66778a; font-size: .85rem; white-space: nowrap; }
.job-employer { margin: 18px 0 0; }
.job-summary { margin: 18px 0; color: #3f5062; font-size: 1.02rem; }
.job-details { border-top: 1px solid var(--line); padding-top: 15px; margin-top: 15px; }
.job-details summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.job-rich { color: #3f5062; margin-top: 14px; }
.job-rich p:last-child { margin-bottom: 0; }
.job-requirements h4 { margin: 20px 0 4px; }
.job-card-actions { justify-content: space-between; margin-top: 22px; }
.job-no-results { grid-column: 1 / -1; }
@media (max-width: 700px) {
  .job-card-top { display: block; }
  .job-posted { display: block; margin-top: 12px; }
  .job-card-actions { align-items: flex-start; flex-direction: column; }
}

.applied-job-banner{display:grid;gap:4px;padding:16px 18px;margin:16px 0 22px;border:1px solid #f5661f;border-left:5px solid #f5661f;border-radius:10px;background:#fff7f2}.applied-job-banner[hidden]{display:none}.applied-job-banner strong{font-size:1.1rem;color:#0f1e35}.applied-job-banner span:last-child{color:#5b6575}
