:root {
  --navy: #082f5b;
  --blue: #0a58ca;
  --blue-dark: #06469f;
  --cyan: #0fb5c9;
  --cyan-soft: #e9fbfd;
  --ink: #122033;
  --muted: #607087;
  --line: #dce6f0;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --dark-surface: #071e38;
  --success: #12a66a;
  --shadow-sm: 0 12px 35px rgba(8, 47, 91, 0.08);
  --shadow-md: 0 22px 60px rgba(8, 47, 91, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 240, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 35px rgba(8, 47, 91, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 13px 13px 13px 4px;
  box-shadow: 0 10px 24px rgba(10, 88, 202, 0.24);
}

.brand-name {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-name span {
  color: var(--cyan);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
  color: #32455c;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 19px;
  color: #fff;
  background: var(--navy);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 84px) 0 0;
  background:
    linear-gradient(135deg, rgba(245, 248, 252, 0.96), rgba(233, 251, 253, 0.72)),
    radial-gradient(circle at 18% 20%, rgba(15, 181, 201, 0.15), transparent 28%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 47, 91, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 47, 91, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
}

.hero-orb-one {
  width: 260px;
  height: 260px;
  top: 12%;
  right: -100px;
  background: rgba(10, 88, 202, 0.09);
}

.hero-orb-two {
  width: 140px;
  height: 140px;
  left: -60px;
  bottom: 16%;
  background: rgba(15, 181, 201, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 72px;
  align-items: center;
  min-height: 650px;
  padding-bottom: 76px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 88, 202, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 800;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 31px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 13px 30px rgba(10, 88, 202, 0.23);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(10, 88, 202, 0.3);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #53667c;
  font-size: 13px;
}

.hero-proof i {
  color: var(--success);
}

.hero-proof strong {
  color: var(--ink);
}

.visual-shell {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(8, 47, 91, 0.17);
  backdrop-filter: blur(18px);
}

.visual-shell::before,
.visual-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 24px;
}

.visual-shell::before {
  inset: 22px -17px -17px 30px;
  background: rgba(10, 88, 202, 0.08);
}

.visual-shell::after {
  width: 92px;
  height: 92px;
  top: -36px;
  left: -40px;
  background: linear-gradient(145deg, rgba(15, 181, 201, 0.22), rgba(10, 88, 202, 0.12));
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.visual-topbar div {
  display: grid;
}

.visual-topbar small,
.talent-card small,
.mini-card small {
  color: #73849a;
  font-size: 11px;
}

.visual-topbar strong {
  color: var(--navy);
  font-size: 15px;
}

.online-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: var(--success);
  background: #e9f9f2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.online-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 166, 106, 0.12);
}

.talent-card-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(8, 47, 91, 0.22);
}

.talent-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  font-size: 21px;
}

.talent-card-main small {
  color: rgba(255, 255, 255, 0.7);
}

.talent-card-main h2 {
  margin: 4px 0 7px;
  color: #fff;
  font-size: 24px;
}

.talent-card-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.visual-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  min-height: 82px;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid #e7eef6;
  border-radius: 16px;
}

.mini-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(8, 47, 91, 0.08);
}

.mini-card div {
  display: grid;
}

.mini-card strong {
  color: var(--navy);
  font-size: 13px;
}

.connection-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--cyan);
}

.connection-line span {
  height: 1px;
  background: var(--line);
}

.visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-tags span {
  padding: 8px 10px;
  color: #42566d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.location-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 76px;
  color: #4b6078;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 230, 240, 0.75);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 35px rgba(8, 47, 91, 0.05);
}

.location-strip span {
  color: #8290a1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.location-strip strong {
  color: var(--navy);
  font-size: 13px;
}

.location-strip i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}

.section {
  padding: 108px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.industry-intro h2,
.why-copy > h2,
.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
}

.section-heading p,
.industry-intro p,
.why-copy > p {
  max-width: 670px;
  margin-bottom: 0;
  font-size: 17px;
}

.section-heading.centered p {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 88, 202, 0.28);
  box-shadow: var(--shadow-md);
}

.service-card.featured {
  color: #fff;
  background: linear-gradient(160deg, var(--navy), #0b4b91);
  border-color: transparent;
  box-shadow: 0 26px 60px rgba(8, 47, 91, 0.22);
}

.service-card.featured::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -80px;
  right: -70px;
  background: rgba(15, 181, 201, 0.15);
  border-radius: 50%;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 17px;
  font-size: 22px;
}

.featured .card-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.card-number {
  position: absolute;
  top: 31px;
  right: 31px;
  color: #ccd8e5;
  font-size: 13px;
  font-weight: 800;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.45);
}

.featured-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 13px;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 0 0 0 13px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 800;
}

.service-card > p {
  min-height: 81px;
  margin-bottom: 23px;
  font-size: 14px;
}

.featured h3,
.featured > p {
  color: #fff;
}

.featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #42576e;
  font-size: 13px;
  font-weight: 600;
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: #e8f8f1;
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 8px;
  font-weight: 900;
}

.featured .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.featured .check-list li::before {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.text-link i {
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.featured .text-link {
  color: #66e1ef;
}

.industry-section {
  background: var(--surface-soft);
}

.industry-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 68px;
  align-items: center;
}

.industry-intro {
  position: sticky;
  top: 120px;
}

.industry-intro p {
  margin-bottom: 28px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.industry-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px;
  background: #fff;
  border: 1px solid #e2ebf4;
  border-radius: 17px;
  box-shadow: 0 8px 25px rgba(8, 47, 91, 0.055);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 181, 201, 0.5);
  box-shadow: 0 16px 35px rgba(8, 47, 91, 0.1);
}

.industry-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 12px;
}

.industry-card span {
  max-width: 150px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-panel {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 45px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 30, 56, 0.25), rgba(7, 30, 56, 0.95)),
    radial-gradient(circle at 78% 17%, rgba(15, 181, 201, 0.44), transparent 26%),
    linear-gradient(145deg, #0b5bb9, #071e38 70%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-panel::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -130px;
  left: -110px;
  border: 44px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.panel-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 17px;
  padding: 8px 11px;
  color: #9df0f8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-bottom: 16px;
  font-size: 38px;
}

.why-panel p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.quote-mark {
  position: absolute;
  right: 26px;
  bottom: -56px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 240px;
  line-height: 1;
}

.floating-note {
  position: absolute;
  right: -28px;
  bottom: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  min-width: 260px;
  padding: 17px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.floating-note > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cyan);
  border-radius: 12px;
}

.floating-note div {
  display: grid;
}

.floating-note strong {
  color: var(--navy);
  font-size: 13px;
}

.floating-note span {
  color: var(--muted);
  font-size: 10px;
}

.why-copy > p {
  margin-bottom: 31px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
  min-height: 132px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.benefit-grid i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 11px;
}

.benefit-grid h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.benefit-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.pathway-section {
  background: linear-gradient(180deg, #fff, #f5f8fc);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pathway-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.pathway-card::before,
.pathway-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.pathway-card::before {
  width: 260px;
  height: 260px;
  right: -100px;
  top: -110px;
  border: 44px solid rgba(255, 255, 255, 0.06);
}

.pathway-card::after {
  width: 180px;
  height: 180px;
  left: -85px;
  bottom: -90px;
  background: rgba(255, 255, 255, 0.05);
}

.employer-card {
  background: linear-gradient(145deg, var(--navy), #0a58ca);
}

.candidate-card {
  background: linear-gradient(145deg, #086d7b, #0fb5c9);
}

.pathway-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}

.pathway-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  font-size: 21px;
}

.pathway-tag {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 43px);
  font-weight: 800;
}

.pathway-card > p {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.75);
}

.pathway-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 31px;
}

.pathway-steps span {
  min-height: 91px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-size: 10px;
  line-height: 1.45;
}

.pathway-steps b {
  color: #fff;
  font-size: 18px;
}

.pathway-card .btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
}

.contact-section {
  padding: 110px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, rgba(15, 181, 201, 0.18), transparent 25%),
    linear-gradient(145deg, #071e38, #082f5b);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 75px;
  align-items: center;
}

.section-kicker.light {
  color: #66e1ef;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.contact-details {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

.contact-details a,
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
}

.contact-details i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #66e1ef;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.contact-details span {
  display: grid;
  font-weight: 700;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-form {
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #30445c;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #dbe5ef;
  border-radius: 11px;
  outline: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(15, 181, 201, 0.12);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 9px;
}

.site-footer {
  padding-top: 75px;
  color: rgba(255, 255, 255, 0.72);
  background: #051629;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.85fr 1fr;
  gap: 55px;
  padding-bottom: 55px;
}

.brand-light .brand-name {
  color: #fff;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: #66e1ef;
  transform: translateX(3px);
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: #66e1ef;
}

.footer-bottom {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-bottom a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 13px;
  box-shadow: 0 12px 25px rgba(10, 88, 202, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    gap: 42px;
  }

  .service-card {
    padding: 27px;
  }

  .industry-layout,
  .why-grid,
  .contact-grid {
    gap: 45px;
  }

  .floating-note {
    right: -10px;
  }

  .pathway-card {
    padding: 34px;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--surface-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .visual-shell {
    max-width: 620px;
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card > p {
    min-height: 0;
  }

  .industry-layout,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .industry-intro {
    position: static;
    max-width: 700px;
  }

  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-visual {
    max-width: 650px;
  }

  .why-panel {
    min-height: 430px;
  }

  .why-copy {
    margin-top: 15px;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 510px;
  }

  .contact-copy {
    max-width: 650px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 56px);
  }

  .hero-grid {
    gap: 48px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    margin-inline: auto;
  }

  .visual-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .talent-card-main {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .visual-mini-grid {
    grid-template-columns: 1fr;
  }

  .location-strip {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 18px;
  }

  .location-strip span {
    flex-basis: 100%;
    text-align: center;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .industry-intro h2,
  .why-copy > h2,
  .contact-copy h2 {
    font-size: 35px;
  }

  .service-card {
    padding: 25px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-card {
    min-height: 128px;
  }

  .why-panel {
    min-height: 440px;
    padding: 29px;
  }

  .why-panel h2 {
    font-size: 32px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 26px);
    margin: -25px auto 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .pathway-card {
    min-height: 560px;
    padding: 27px;
  }

  .pathway-steps {
    grid-template-columns: 1fr;
  }

  .pathway-steps span {
    min-height: 69px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .industry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .pathway-card h3 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   JobsPoint CV application
========================================================= */

.brand-logo {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.application-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 181, 201, 0.11), transparent 28%),
    radial-gradient(circle at 94% 88%, rgba(10, 88, 202, 0.09), transparent 30%),
    var(--surface-soft);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 62px;
  align-items: start;
}

.application-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding-top: 28px;
}

.application-intro h2 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 56px);
}

.application-intro > p {
  max-width: 580px;
  margin-bottom: 32px;
  font-size: 17px;
}

.application-points {
  display: grid;
  gap: 16px;
  margin-bottom: 25px;
}

.application-points article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(220, 230, 240, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(8, 47, 91, 0.055);
}

.application-points article > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf3ff;
  border-radius: 14px;
}

.application-points strong,
.application-points span {
  display: block;
}

.application-points strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.application-points span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cv-format-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #40546d;
  font-size: 13px;
}

.cv-format-note i {
  margin-top: 5px;
  color: var(--cyan);
}

.application-form-card {
  padding: 38px;
  border: 1px solid rgba(220, 230, 240, 0.95);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(8, 47, 91, 0.12);
}

.form-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding: 15px 17px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.form-alert.success {
  color: #087044;
  border-color: #bde9d5;
  background: #eefbf5;
}

.form-alert.error {
  color: #a63232;
  border-color: #f0c8c8;
  background: #fff4f4;
}

.form-alert i {
  margin-top: 4px;
}

.form-error-list {
  margin-bottom: 22px;
  padding: 16px 18px;
  color: #8d2b2b;
  border: 1px solid #f0c8c8;
  border-radius: 14px;
  background: #fff8f8;
  font-size: 13px;
}

.form-error-list strong {
  display: block;
  margin-bottom: 6px;
}

.form-error-list ul {
  margin: 0;
  padding-left: 20px;
}

.form-section-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 23px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.form-section-title span {
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
}

.form-section-title small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.application-form {
  display: grid;
  gap: 19px;
}

.application-form .form-row {
  gap: 17px;
}

.application-form label {
  display: grid;
  gap: 8px;
  color: #253a52;
  font-size: 13px;
  font-weight: 750;
}

.application-form input,
.application-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid #d6e1ec;
  border-radius: 12px;
  outline: none;
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.application-form input::placeholder {
  color: #94a2b3;
}

.application-form input:focus,
.application-form select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 88, 202, 0.09);
}

.file-upload-label {
  gap: 9px !important;
}

.file-upload-box {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px 16px;
  border: 1.5px dashed #b9cadc;
  border-radius: 16px;
  background: #f8fbff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.file-upload-box:hover,
.file-upload-box:focus-within {
  border-color: var(--blue);
  background: #f1f7ff;
  transform: translateY(-1px);
}

.file-upload-box > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 20px;
  background: #e8f2ff;
  border-radius: 14px;
}

.file-upload-copy {
  min-width: 0;
}

.file-upload-copy strong,
.file-upload-copy small {
  display: block;
}

.file-upload-copy strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
}

.file-upload-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload-button {
  padding: 9px 13px;
  color: var(--blue);
  border: 1px solid #c9dbef;
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.file-upload-box input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.55;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.application-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 1120px) {
  .application-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 38px;
  }

  .application-form-card {
    padding: 30px;
  }

  .main-nav {
    gap: 22px;
  }
}

@media (max-width: 920px) {
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-intro {
    position: static;
    padding-top: 0;
  }

  .application-intro h2,
  .application-intro > p {
    max-width: 720px;
  }

  .application-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .application-points article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    height: 42px;
    max-width: 185px;
  }

  .application-points {
    grid-template-columns: 1fr;
  }

  .application-points article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .application-form-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .form-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .file-upload-box {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .file-upload-box > i {
    width: 46px;
    height: 46px;
  }

  .file-upload-button {
    display: none;
  }
}

/* =========================================================
   JOB OPPORTUNITIES
========================================================= */
.inner-page-main {
  padding-top: var(--header-height);
  background: var(--surface-soft);
}

.homepage-jobs-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(15, 181, 201, 0.09), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.jobs-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 42px;
}

.jobs-section-heading > div {
  max-width: 720px;
}

.jobs-section-heading h2,
.jobs-results-head h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
}

.jobs-section-heading p {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
}

.public-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.public-job-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 47, 91, 0.075);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.public-job-card:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 88, 202, 0.28);
  box-shadow: 0 25px 58px rgba(8, 47, 91, 0.13);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.job-brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 16px 16px 16px 6px;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 24px rgba(10, 88, 202, 0.18);
}

.workplace-badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.workplace-onsite {
  color: #177441;
  background: #eaf8ef;
}

.workplace-hybrid {
  color: #7c5600;
  background: #fff4d7;
}

.workplace-remote {
  color: #075cb2;
  background: #e9f3ff;
}

.job-card-location {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.job-card-location i {
  color: var(--cyan);
}

.public-job-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.public-job-card h3 a:hover {
  color: var(--blue);
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
}

.job-card-meta span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #56677d;
  font-size: 12px;
  font-weight: 650;
}

.job-card-meta i {
  color: #92a2b5;
}

.job-experience {
  display: block;
  margin-bottom: 13px;
  color: #208153;
  font-size: 13px;
}

.public-job-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.job-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid #edf2f7;
}

.job-card-bottom > span {
  color: #8a98a9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-job {
  min-height: 42px;
  padding: 0 14px;
  font-size: 12px;
}

.homepage-jobs-empty {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px dashed #b9cadc;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.homepage-jobs-empty > div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.homepage-jobs-empty i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 14px;
  background: #eaf3ff;
}

.homepage-jobs-empty strong,
.homepage-jobs-empty small {
  display: block;
}

.homepage-jobs-empty strong {
  color: var(--navy);
  font-size: 16px;
}

.homepage-jobs-empty small {
  color: var(--muted);
}

.jobs-page-hero {
  padding: 82px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 24%, rgba(15, 181, 201, 0.26), transparent 28%),
    linear-gradient(135deg, #06294f, #0a4f9e);
}

.jobs-page-hero-inner {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: end;
}

.jobs-page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
}

.jobs-page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 18px;
}

.jobs-page-hero .section-kicker {
  color: #8cebf3;
}

.jobs-hero-stat {
  flex: 0 0 150px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  text-align: center;
}

.jobs-hero-stat strong,
.jobs-hero-stat span {
  display: block;
}

.jobs-hero-stat strong {
  font-size: 46px;
  line-height: 1;
}

.jobs-hero-stat span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.public-jobs-section {
  background: var(--surface-soft);
}

.job-search-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.7fr)) auto;
  gap: 13px;
  align-items: end;
  margin-top: -142px;
  margin-bottom: 70px;
  padding: 24px;
  border: 1px solid rgba(220, 230, 240, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 47, 91, 0.15);
}

.job-search-panel label {
  display: grid;
  gap: 8px;
}

.job-search-panel label > span {
  color: #40536a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job-search-panel input,
.job-search-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid #d7e1eb;
  border-radius: 11px;
  outline: none;
  background: #fbfdff;
}

.job-search-main > div {
  position: relative;
}

.job-search-main i {
  position: absolute;
  left: 15px;
  top: 50%;
  color: #8999ac;
  transform: translateY(-50%);
}

.job-search-main input {
  padding-left: 43px;
}

.job-search-panel input:focus,
.job-search-panel select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 88, 202, 0.08);
  background: #fff;
}

.jobs-results-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.jobs-results-head h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 42px);
}

.public-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.public-pagination a,
.public-pagination span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-weight: 750;
}

.public-pagination .current {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.public-empty-state {
  max-width: 720px;
  margin-inline: auto;
  padding: 58px 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.public-empty-state > i {
  display: block;
  margin-bottom: 18px;
  color: #b4c4d5;
  font-size: 50px;
}

.public-empty-state h1,
.public-empty-state h2 {
  margin-bottom: 10px;
  color: var(--navy);
}

.not-found-section {
  min-height: 62vh;
}

.job-detail-hero {
  padding: 52px 0 66px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(15, 181, 201, 0.23), transparent 30%),
    linear-gradient(135deg, #06294f, #0a4f9e);
}

.job-back-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.job-back-link:hover {
  color: #fff;
}

.job-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 48px;
  align-items: end;
}

.job-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.job-detail-badges span {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #dceeff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.job-detail-badges .featured {
  color: #fff4c9;
  border-color: rgba(255, 221, 105, 0.32);
  background: rgba(255, 204, 35, 0.12);
}

.job-detail-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
}

.job-detail-hero p {
  max-width: 820px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.job-detail-meta span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #e5f2ff;
  font-size: 13px;
  font-weight: 700;
}

.job-detail-meta i {
  color: #67dbe5;
}

.job-reference-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.job-reference-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-reference-card strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.job-reference-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.job-detail-section {
  background: var(--surface-soft);
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.job-content-card,
.job-apply-card {
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.job-content-card {
  padding: 38px;
}

.job-content-card > section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #eaf0f5;
}

.job-content-card h2 {
  margin-bottom: 17px;
  color: var(--navy);
  font-size: 25px;
}

.job-content-card p {
  margin-bottom: 14px;
  color: #53657c;
}

.job-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-detail-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  color: #52647a;
}

.job-detail-list i {
  margin-top: 6px;
  color: var(--cyan);
  font-size: 12px;
}

.job-facts > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.job-facts span {
  padding: 15px;
  border: 1px solid #e4ebf2;
  border-radius: 13px;
  color: var(--ink);
  background: #fbfdff;
  font-weight: 700;
}

.job-facts small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.job-apply-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.job-apply-card {
  padding: 28px;
}

.job-apply-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.job-apply-heading > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
}

.job-apply-heading small,
.job-apply-heading h2 {
  display: block;
  margin: 0;
}

.job-apply-heading small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.job-apply-heading h2 {
  color: var(--navy);
  font-size: 20px;
}

.compact-job-form {
  gap: 15px;
}

.compact-job-form .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-job-form input,
.compact-job-form select {
  min-height: 48px;
}

.compact-job-form .file-upload-box {
  grid-template-columns: 45px minmax(0, 1fr) auto;
  min-height: 72px;
}

.compact-job-form .file-upload-box > i {
  width: 45px;
  height: 45px;
}

@media (max-width: 1120px) {
  .public-job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-search-main {
    grid-column: 1 / -1;
  }

  .job-detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
  }
}

@media (max-width: 900px) {
  .jobs-section-heading,
  .jobs-page-hero-inner,
  .jobs-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .jobs-hero-stat {
    display: none;
  }

  .job-search-panel {
    margin-top: -118px;
  }

  .job-detail-hero-grid,
  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .job-reference-card {
    max-width: 360px;
  }

  .job-apply-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .public-job-grid,
  .job-search-panel {
    grid-template-columns: 1fr;
  }

  .job-search-main {
    grid-column: auto;
  }

  .public-job-card {
    padding: 23px;
  }

  .homepage-jobs-empty {
    align-items: flex-start;
    flex-direction: column;
  }

  .jobs-page-hero {
    padding: 62px 0 56px;
  }

  .job-search-panel {
    margin-top: -84px;
    padding: 18px;
  }

  .job-detail-hero {
    padding: 38px 0 48px;
  }

  .job-content-card,
  .job-apply-card {
    padding: 23px 20px;
    border-radius: 21px;
  }

  .job-facts > div,
  .compact-job-form .form-row {
    grid-template-columns: 1fr;
  }

  .job-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn-job {
    width: 100%;
  }
}
.why-visual {
  position: relative;
  isolation: isolate;
}

.floating-note {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: -28px;
  bottom: auto;
}