:root {
  --navy: #07366c;
  --navy-dark: #04254d;
  --blue: #0d5cab;
  --blue-bright: #1673cf;
  --blue-pale: #eaf4ff;
  --sky: #71c9ef;
  --orange: #f4a51c;
  --ink: #122033;
  --muted: #5c6b7e;
  --line: #dbe4ee;
  --surface: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(6, 42, 83, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: 110px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #90d8ff;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h2 {
  max-width: 640px;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.045em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
}

.button-light:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(13, 92, 171, 0.22);
}

.button-primary:hover {
  background: var(--navy);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 228, 238, 0.8);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.logo > span:last-child > span {
  color: var(--blue-bright);
}

.logo-mark {
  width: 34px;
  color: var(--blue);
}

.logo-mark path:first-child {
  fill: currentColor;
}

.logo-mark .logo-spark {
  fill: var(--white);
}

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

.main-nav a,
.nav-dropdown-toggle {
  color: #35465a;
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 180ms ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-caret {
  font-size: 0.8rem;
  transition: transform 180ms ease;
}

.dropdown-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 17px);
  left: 50%;
  display: grid;
  width: 250px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(5, 39, 76, 0.18);
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.dropdown-menu a,
.dropdown-menu button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
  background: var(--blue-pale);
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown.open .dropdown-caret {
  transform: rotate(180deg);
}

.main-nav .nav-cta {
  min-width: 126px;
  padding: 13px 21px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  text-align: center;
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--blue-bright);
}

.lang-switch {
  margin-left: 4px;
}

.lang-toggle {
  padding: 8px 4px;
}

.lang-current {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.lang-menu {
  left: auto;
  right: 0;
  width: 150px;
  transform: translate(0, -8px);
}

.lang-switch.nav-dropdown.open .lang-menu,
.lang-switch.nav-dropdown:hover .lang-menu {
  transform: translate(0, 0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-option.active {
  color: var(--blue);
  font-weight: 800;
}

.lang-option.active::after {
  content: "✓";
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-pale);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(43, 153, 226, 0.35), transparent 31%),
    linear-gradient(118deg, #063a77 0%, #07366c 58%, #062c5a 100%);
}

.hero::after {
  position: absolute;
  right: -190px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60%, #000 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 62px;
  align-items: center;
  min-height: 660px;
  padding-block: 72px;
}

.hero-copy {
  padding-bottom: 8px;
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6vw, 5.45rem);
  letter-spacing: -0.062em;
}

.hero h1 .hero-highlight {
  display: block;
  color: #91dcff;
}

.hero-text {
  max-width: 590px;
  color: #d8e8f8;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #e7f3ff;
  font-weight: 750;
}

.text-link span[aria-hidden] {
  transition: transform 180ms ease;
}

.text-link:hover span[aria-hidden] {
  transform: translateY(3px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  display: grid;
}

.hero-stats strong {
  font-size: 1.4rem;
  line-height: 1.2;
}

.hero-stats span {
  color: #afc9e2;
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background:
    radial-gradient(circle at 70% 72%, rgba(109, 219, 255, 0.25), transparent 22%),
    linear-gradient(145deg, #73c5eb 0%, #256ba9 47%, #0a3c75 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  box-shadow: 0 36px 70px rgba(0, 13, 35, 0.35);
}

.photo-card {
  min-height: 500px;
  background: #082d5c;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 31, 65, 0.35), transparent 55%);
  content: "";
}

.photo-card .available-badge {
  z-index: 2;
}

.visual-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 59%, transparent 59%),
    linear-gradient(24deg, transparent 0 66%, rgba(255, 255, 255, 0.08) 66% 67%, transparent 67%);
  content: "";
}

.welder-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 95%;
}

.available-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.available-badge div {
  display: grid;
}

.available-badge small {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.2;
}

.available-badge strong {
  font-size: 0.84rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #32b76c;
  border: 3px solid #dff5e8;
  border-radius: 50%;
  box-sizing: content-box;
}

.spark {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  background: #ffdd74;
  border-radius: 50%;
  box-shadow: 0 0 12px #ffd449;
}

.spark-one {
  top: 30%;
  right: 11%;
}

.spark-two {
  top: 22%;
  right: 20%;
}

.spark-three {
  top: 41%;
  right: 5%;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 38px rgba(22, 51, 84, 0.07);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 116px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 32px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.icon-box {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 10px;
  font-weight: 900;
}

.trust-item div {
  display: grid;
}

.trust-item strong {
  font-size: 0.92rem;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.76rem;
}

/* CandidateForce banner */
.candidateforce-section {
  padding: 44px 0 56px;
  background:
    radial-gradient(circle at 10% 0%, rgba(22, 115, 207, 0.08), transparent 32%),
    linear-gradient(180deg, var(--white), #f4f9ff);
}

.candidateforce-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 34px;
  align-items: center;
  min-height: 310px;
  padding: 36px 40px;
  overflow: hidden;
  color: #06194a;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.98) 0 44%, rgba(231, 243, 255, 0.94) 58%, rgba(157, 207, 255, 0.9) 100%);
  border: 1px solid rgba(166, 205, 245, 0.72);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(6, 42, 83, 0.16);
  isolation: isolate;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.js-enabled .candidateforce-banner[data-animate]:not(.is-visible) {
  opacity: 0;
  transform: translateY(36px) scale(0.975);
  transition: opacity 700ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 220ms ease;
}

.js-enabled .candidateforce-banner[data-animate].is-visible,
.candidateforce-banner.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.candidateforce-banner:hover {
  box-shadow: 0 36px 90px rgba(6, 42, 83, 0.22);
  transform: translateY(-3px) scale(1.002);
}

.candidateforce-banner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 43%, rgba(255, 255, 255, 0.72) 48%, transparent 54%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.86), transparent 18%);
  content: "";
  opacity: 0;
  transform: translateX(-18%);
}

.candidateforce-banner.is-visible::before {
  animation: cfSweep 1.25s ease 220ms both;
}

.cf-light {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.cf-light-one {
  right: -90px;
  bottom: -110px;
  width: 380px;
  height: 250px;
  background: rgba(22, 115, 207, 0.18);
  filter: blur(8px);
}

.cf-light-two {
  top: -90px;
  right: 120px;
  width: 320px;
  height: 180px;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(2px);
  transform: rotate(11deg);
}

.cf-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.cf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #06194a;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cf-brand-mark {
  width: 30px;
  height: 30px;
  color: #06194a;
}

.cf-brand-mark svg {
  width: 100%;
  height: 100%;
}

.cf-brand-mark path:first-child {
  fill: currentColor;
}

.cf-brand-mark path:last-child {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cf-copy h2 {
  max-width: none;
  color: #06194a;
  font-size: clamp(3rem, 7vw, 5.7rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.cf-subtitle {
  margin-top: 16px;
  color: #082564;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.2;
}

.cf-text {
  max-width: 520px;
  margin-top: 18px;
  color: #334866;
  font-size: 1.02rem;
  line-height: 1.55;
}

.cf-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.cf-feature-row > span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 145px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(185, 212, 241, 0.7);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.cf-feature-row i {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: rgba(22, 115, 207, 0.1);
  border-radius: 10px;
}

.cf-feature-row i svg {
  width: 21px;
  height: 21px;
}

.cf-feature-row b {
  color: #0d1e4d;
  font-size: 0.88rem;
  line-height: 1.2;
}

.cf-visual {
  position: relative;
  z-index: 2;
  min-height: 250px;
  opacity: 0;
  transform: translateX(34px) rotateY(-8deg);
  transition: opacity 720ms ease 180ms, transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1) 180ms;
}

.candidateforce-banner.is-visible .cf-visual {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

.cf-dashboard-card {
  position: absolute;
  top: 8px;
  right: 84px;
  display: grid;
  grid-template-columns: 82px 1fr;
  width: min(100%, 520px);
  height: 245px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(201, 222, 245, 0.92);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(18, 83, 151, 0.18);
  backdrop-filter: blur(18px);
}

.cf-dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 48px 14px 14px;
  background: rgba(255, 255, 255, 0.48);
  border-right: 1px solid rgba(211, 226, 243, 0.9);
}

.cf-dashboard-sidebar span {
  height: 9px;
  background: linear-gradient(90deg, rgba(13, 92, 171, 0.24), rgba(13, 92, 171, 0.05));
  border-radius: 999px;
}

.cf-dashboard-main {
  padding: 26px 22px;
}

.cf-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cf-dashboard-top span {
  color: #152855;
  font-size: 1.08rem;
  font-weight: 900;
}

.cf-dashboard-top small {
  width: 76px;
  height: 12px;
  background: #d7e7f8;
  border-radius: 999px;
}

.cf-metric-grid,
.cf-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cf-metric-grid span {
  display: grid;
  gap: 2px;
  padding: 12px;
  background: rgba(248, 251, 255, 0.95);
  border: 1px solid rgba(220, 232, 245, 0.92);
  border-radius: 10px;
}

.cf-metric-grid b {
  color: #10245a;
  font-size: 1.02rem;
}

.cf-metric-grid small {
  color: #68809e;
  font-size: 0.58rem;
}

.cf-action-grid {
  margin-top: 16px;
}

.cf-action-grid span {
  height: 42px;
  background: linear-gradient(135deg, rgba(13, 92, 171, 0.1), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(218, 232, 247, 0.92);
  border-radius: 10px;
}

.cf-list-card {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 245, 0.92);
  border-radius: 12px;
}

.cf-list-card span {
  height: 8px;
  background: #d9e8f8;
  border-radius: 999px;
}

.cf-list-card span:nth-child(2) {
  width: 82%;
}

.cf-list-card span:nth-child(3) {
  width: 68%;
}

.cf-person-card {
  position: absolute;
  right: 0;
  bottom: -36px;
  width: 158px;
  height: 260px;
  transform-origin: bottom center;
  animation: cfFloat 5.6s ease-in-out infinite;
}

.cf-person-head {
  position: absolute;
  top: 0;
  left: 50%;
  width: 74px;
  height: 74px;
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.62), transparent 12%),
    linear-gradient(135deg, #d49472, #8b4d3d);
  border-radius: 50%;
  box-shadow: inset 0 -10px 18px rgba(66, 28, 28, 0.18);
  transform: translateX(-50%);
}

.cf-person-head::before {
  position: absolute;
  inset: -10px -9px 34px;
  z-index: -1;
  background: #1d2538;
  border-radius: 999px 999px 24px 24px;
  content: "";
}

.cf-person-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 202px;
  background:
    linear-gradient(100deg, transparent 0 28%, rgba(255, 255, 255, 0.94) 28% 43%, transparent 43%),
    linear-gradient(135deg, #06194a, #102b68 55%, #07183c);
  border-radius: 54px 54px 12px 12px;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.cf-banner-arrow {
  position: absolute;
  right: 23px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(13, 92, 171, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.candidateforce-banner:hover .cf-banner-arrow {
  background: #06194a;
  transform: translate(3px, -3px);
}

@keyframes cfSweep {
  0% {
    opacity: 0;
    transform: translateX(-28%);
  }

  32% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: translateX(34%);
  }
}

@keyframes cfFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Partner strip */
.partner-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  padding-block: 30px;
}

.feature-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 32px;
  align-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #33445a;
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 9px;
}

.feature-icon svg {
  width: 19px;
  height: 19px;
}

/* About */
.about {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 460px;
}

.blue-shape {
  position: absolute;
  top: 0;
  right: 34px;
  bottom: 30px;
  left: 0;
  background:
    linear-gradient(145deg, rgba(111, 199, 237, 0.2), transparent 55%),
    var(--navy);
  border-radius: 20px 80px 20px 20px;
}

.blue-shape::after {
  position: absolute;
  right: 28px;
  bottom: 40px;
  width: 170px;
  height: 170px;
  border: 40px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.about-panel {
  position: absolute;
  top: 65px;
  right: 0;
  width: 78%;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-bright), #0a4c91);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.panel-number {
  display: block;
  color: #aadef9;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.about-panel p {
  max-width: 280px;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.experience-card {
  position: absolute;
  bottom: 0;
  left: 32px;
  display: grid;
  width: 230px;
  padding: 21px 23px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #314155;
  font-weight: 650;
}

.check-list .check-icon {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 50%;
  font-size: 0.72rem;
}

.inline-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: var(--blue);
  border-bottom: 1px solid #a8c8e8;
  font-weight: 800;
}

/* Availability map */
.availability {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(22, 115, 207, 0.1), transparent 30%),
    var(--white);
}

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

.availability-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.03rem;
}

.check-list.compact {
  margin: 28px 0;
}

.map-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 244, 255, 0.88)),
    var(--blue-pale);
  border: 1px solid #cfe0f1;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.map-card::before {
  position: absolute;
  inset: auto -90px -120px auto;
  width: 270px;
  height: 270px;
  background: rgba(22, 115, 207, 0.08);
  border-radius: 50%;
  content: "";
}

.map-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.map-header div {
  display: grid;
  gap: 3px;
}

.map-header span,
.map-header small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-header strong {
  color: var(--navy-dark);
  font-size: 1.22rem;
}

.balkan-map {
  position: relative;
  min-height: 560px;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(180deg, #3fd4d6, #2fc4cb);
  border: 1px solid rgba(207, 224, 241, 0.9);
  border-radius: 19px;
}

.balkan-map svg {
  width: 100%;
  height: 100%;
  min-height: 520px;
  filter: drop-shadow(0 18px 30px rgba(8, 55, 106, 0.12));
}

.map-sea {
  fill: #39cfd3;
}

.country {
  fill: #238f93;
  stroke: #39cfd3;
  stroke-width: 5;
  stroke-linejoin: round;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 180ms ease, transform 220ms ease, filter 220ms ease;
}

.country:hover {
  transform: scale(1.045) translateY(-3px);
  filter: drop-shadow(0 12px 18px rgba(4, 34, 71, 0.35)) brightness(1.08);
}

.country-croatia {
  fill: #16868c;
}

.country-bosnia {
  fill: #0f6870;
}

.country-serbia {
  fill: #2b989c;
}

.country-montenegro {
  fill: #238b90;
}

.country-kosovo {
  fill: #71dce0;
}

.country-albania {
  fill: #20858c;
}

.country-macedonia {
  fill: #126d73;
}

.map-border {
  fill: none;
  stroke: rgba(7, 54, 108, 0.2);
  stroke-width: 2;
}

.map-label {
  fill: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  pointer-events: none;
  text-anchor: middle;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 38, 64, 0.22);
}

.map-label-bosnia,
.map-label-macedonia {
  font-size: 12px;
}

.map-label-montenegro {
  font-size: 9px;
}

.map-label-kosovo {
  fill: var(--navy);
  font-size: 11px;
}

.map-label-albania {
  font-size: 13px;
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-pin::before {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(22, 115, 207, 0.18);
  border-radius: 50%;
  content: "";
  animation: pinPulse 2.4s ease-out infinite;
}

.pin-dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: var(--blue-bright);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7, 54, 108, 0.28);
}

.pin-dot::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--blue-bright);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.pin-popup {
  position: absolute;
  z-index: 4;
  bottom: calc(100% + 14px);
  left: 50%;
  display: grid;
  gap: 10px;
  min-width: 202px;
  padding: 16px 18px;
  visibility: hidden;
  opacity: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(5, 39, 76, 0.22);
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.pin-popup::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.pin-popup-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.pin-popup-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pin-flag {
  display: inline-block;
  flex-shrink: 0;
  width: 21px;
  height: 14px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(4, 37, 77, 0.16);
}

.pin-flag img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: none;
}

.pin-popup-head strong {
  color: var(--navy-dark);
  font-size: 0.92rem;
  line-height: 1.25;
}

.pin-popup-tag {
  flex: 0 0 auto;
  padding: 3px 8px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pin-popup-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.pin-popup-count [data-available-count] {
  color: var(--navy-dark);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.pin-popup-count small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.pin-popup-bar {
  display: block;
  height: 6px;
  overflow: hidden;
  background: var(--blue-pale);
  border-radius: 100px;
}

.pin-popup-bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  border-radius: 100px;
  transition: width 420ms ease;
}

.map-pin:hover .pin-popup,
.map-pin:focus-visible .pin-popup,
.map-pin.active .pin-popup {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.map-pin-flip .pin-popup {
  top: calc(100% + 14px);
  bottom: auto;
  transform: translate(-50%, -8px);
}

.map-pin-flip .pin-popup::after {
  top: -6px;
  bottom: auto;
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.map-pin-flip:hover .pin-popup,
.map-pin-flip:focus-visible .pin-popup,
.map-pin-flip.active .pin-popup {
  transform: translate(-50%, 0);
}

.map-pin:hover .pin-dot,
.map-pin:focus-visible .pin-dot,
.map-pin.active .pin-dot {
  background: var(--orange);
}

.map-pin:hover .pin-dot::after,
.map-pin:focus-visible .pin-dot::after,
.map-pin.active .pin-dot::after {
  background: var(--orange);
}

@keyframes pinPulse {
  0% {
    opacity: 0.65;
    transform: scale(0.65);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

/* Jobs */
.jobs {
  background: var(--surface);
}

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

.section-heading > p {
  max-width: 440px;
  color: var(--muted);
}

.section-heading.centered {
  display: grid;
  justify-content: center;
  justify-items: center;
  text-align: center;
}

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

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.job-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.job-card-content::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 90px;
  height: 90px;
  background: var(--blue-pale);
  border-radius: 50%;
  content: "";
  transition: transform 220ms ease;
}

.job-card:hover {
  z-index: 1;
  border-color: #a9cbed;
  box-shadow: 0 18px 42px rgba(15, 61, 111, 0.11);
  transform: translateY(-6px);
}

.job-card:hover .job-card-content::after {
  transform: scale(1.25);
}

.job-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}

.job-card-content {
  position: relative;
  padding: 28px 30px 30px;
}

.job-count {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.job-card h3 {
  margin-bottom: 13px;
  color: var(--navy-dark);
  font-size: 1.18rem;
}

.job-card p {
  min-height: 72px;
  color: var(--muted);
  font-size: 0.9rem;
}

.job-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 12px;
  margin-top: 23px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

/* Welder detail pages */
.detail-hero {
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 82% 20%, rgba(41, 144, 214, 0.16), transparent 29%),
    var(--surface);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.detail-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.detail-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(2, 29, 61, 0.45));
  content: "";
}

.detail-image-label {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 9px;
  font-size: 0.76rem;
  font-weight: 800;
}

.detail-image-label i {
  width: 9px;
  height: 9px;
  background: #2eb768;
  border-radius: 50%;
}

.back-link {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.detail-copy {
  min-width: 0;
}

.detail-copy h1 {
  color: var(--navy-dark);
  font-size: clamp(2.1rem, 4.4vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
  overflow-wrap: break-word;
  hyphens: auto;
}

.detail-lead {
  margin-top: 25px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 32px;
}

.detail-tags span {
  padding: 7px 11px;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid #cfe2f6;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: center;
}

.detail-description {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.capability-card {
  padding: 36px;
  background: var(--navy);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.capability-card h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.35rem;
}

.capability-card ul {
  display: grid;
  gap: 15px;
  list-style: none;
}

.capability-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dceafa;
  font-size: 0.9rem;
}

.capability-card li span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--navy);
  background: #91dcff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.detail-demand {
  background: linear-gradient(180deg, rgba(234, 244, 255, 0.7), rgba(234, 244, 255, 0.15));
}

.detail-demand-grid {
  max-width: 780px;
}

.detail-demand-copy h2 {
  margin-top: 2px;
}

.detail-demand-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: #33445a;
  font-size: 1.04rem;
  line-height: 1.85;
}

.detail-use {
  background: var(--surface);
}

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

.use-grid article {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.use-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 10px;
}

.use-icon svg {
  width: 22px;
  height: 22px;
}

.use-grid h3 {
  margin-top: 25px;
  color: var(--navy-dark);
  font-size: 1.18rem;
}

.use-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.detail-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 6%, rgba(79, 180, 236, 0.3), transparent 40%),
    radial-gradient(circle at 4% 96%, rgba(22, 115, 207, 0.32), transparent 38%),
    linear-gradient(120deg, #063a77 0%, #07366c 55%, #04254d 100%);
}

.detail-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(circle at 82% 25%, #000, transparent 68%);
  mask-image: radial-gradient(circle at 82% 25%, #000, transparent 68%);
  content: "";
}

.detail-cta::after {
  position: absolute;
  left: -170px;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border: 60px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.detail-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 48px 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}

.detail-cta h2 {
  margin-top: 4px;
  color: var(--white);
  letter-spacing: -0.03em;
}

.detail-cta p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 14px;
  color: #bfd3e8;
}

.detail-cta .button {
  flex-shrink: 0;
  gap: 16px;
  padding: 0 10px 0 26px;
}

.detail-cta .button span[aria-hidden] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.detail-cta .button:hover span[aria-hidden] {
  background: var(--blue);
  color: var(--white);
  transform: translateX(3px);
}

/* Stats strip */
.stats-strip {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  display: grid;
  gap: 10px;
  padding: 30px 20px;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(13, 92, 171, 0.28);
  text-align: center;
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat-number.stat-dark,
.stat-number.stat-blue,
.stat-number.stat-orange {
  color: var(--white);
}

.stat-card span {
  color: #bfd3e8;
  font-size: 0.86rem;
  font-weight: 600;
}

/* Process */
.process {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 55px;
}

.step {
  position: relative;
  padding: 38px;
  text-align: center;
}

.step + .step::before {
  position: absolute;
  top: 45px;
  left: -22%;
  width: 44%;
  height: 1px;
  border-top: 2px dashed #bad1e8;
  content: "";
}

.step > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-pale);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c8dced;
  font-size: 1rem;
  font-weight: 900;
}

.step h3 {
  color: var(--navy-dark);
  font-size: 1.15rem;
}

.step p {
  max-width: 280px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-title {
  max-width: none;
  margin-bottom: 28px;
  color: var(--navy-dark);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: #c8dced;
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--navy-dark);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  max-width: 640px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  color: #abc0d7;
  background: #031c39;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.95fr 1fr;
  gap: 40px;
  padding-block: 68px 52px;
}

.logo-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 370px;
  margin-top: 19px;
  font-size: 0.9rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 20px;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.83rem;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-cta:hover {
  background: #dceafc;
  transform: translateY(-1px);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.88rem;
}

.footer-links a,
.footer-links span {
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-check span:first-child {
  display: grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #7fd9a8;
  background: rgba(127, 217, 168, 0.14);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}

.footer-legal a:hover {
  opacity: 1;
}

/* Legal / info pages */
.legal-section {
  padding: 128px 0 96px;
}

.legal-wrap {
  max-width: 820px;
}

.legal-section h1 {
  margin: 8px 0 30px;
  font-size: clamp(1.9rem, 4.4vw, 2.5rem);
  letter-spacing: -0.01em;
}

.legal-card {
  padding: 46px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal-card > :first-child {
  margin-top: 0;
}

.legal-card h2 {
  margin: 34px 0 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-card > h2:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-card strong {
  color: var(--navy);
  font-weight: 600;
}

.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .legal-section {
    padding: 108px 0 72px;
  }

  .legal-card {
    padding: 30px 24px;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .section {
    padding: 86px 0;
  }

  .hero-content {
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7vw, 4.6rem);
  }

  .hero-stats {
    gap: 18px;
  }

  .candidateforce-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px;
  }

  .cf-copy {
    max-width: none;
  }

  .cf-visual {
    min-height: 250px;
  }

  .cf-dashboard-card {
    right: 84px;
    left: 0;
    width: auto;
  }

  .about-grid {
    gap: 52px;
  }

  .availability-grid {
    gap: 48px;
  }

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

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

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

  .detail-hero-grid,
  .detail-info-grid {
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 620px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header,
  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(8, 40, 76, 0.14);
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 13px 12px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown:hover .dropdown-menu {
    max-height: 330px;
    padding: 8px 10px;
    background: var(--surface);
    transform: none;
  }

  .dropdown-menu a,
  .dropdown-menu button {
    padding: 9px 8px;
  }

  .main-nav .nav-cta {
    margin-top: 7px;
  }

  .lang-switch {
    margin-top: 7px;
    margin-left: 0;
  }

  .lang-menu {
    width: 100%;
  }

  .candidateforce-section {
    padding: 34px 0 44px;
  }

  .candidateforce-banner {
    gap: 22px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .cf-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .cf-feature-row {
    gap: 10px;
  }

  .cf-feature-row > span {
    min-width: 0;
    flex: 1 1 180px;
  }

  .cf-visual {
    min-height: 220px;
  }

  .cf-dashboard-card {
    right: 0;
    grid-template-columns: 58px 1fr;
    height: 215px;
  }

  .cf-dashboard-sidebar {
    padding: 44px 10px 12px;
  }

  .cf-dashboard-main {
    padding: 22px 16px;
  }

  .cf-person-card {
    display: none;
  }

  .cf-banner-arrow {
    top: 20px;
    right: 20px;
    bottom: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 70px 64px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .visual-card {
    min-height: 460px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }

  .trust-item {
    padding: 18px 12px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .partner-grid {
    flex-direction: column;
    padding-block: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-grid,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 58px;
  }

  .about-visual {
    min-height: 400px;
  }

  .section-heading {
    display: grid;
    gap: 20px;
    align-items: start;
  }

  .section-heading.centered {
    justify-items: start;
    text-align: left;
  }

  .section-heading.centered h2 {
    margin-inline: 0;
  }

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

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

  .map-card {
    padding: 18px;
  }

  .map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .balkan-map {
    min-height: 500px;
  }

  .balkan-map svg {
    min-height: 460px;
  }

  .job-card p {
    min-height: auto;
  }

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

  .detail-hero {
    padding: 45px 0 70px;
  }

  .detail-image-wrap {
    min-height: 430px;
  }

  .back-link {
    margin-bottom: 30px;
  }

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

  .detail-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 28px;
  }

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

  .step {
    padding: 22px;
  }

  .step + .step::before {
    top: -15px;
    left: 50%;
    width: 1px;
    height: 34px;
    border-top: 0;
    border-left: 2px dashed #bad1e8;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

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

@media (max-width: 520px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    justify-content: center;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 10px;
  }

  .hero-stats strong {
    font-size: 1.18rem;
  }

  .hero-stats span {
    max-width: 85px;
    font-size: 0.67rem;
  }

  .visual-card {
    min-height: 350px;
  }

  .candidateforce-banner {
    padding: 24px 18px;
  }

  .cf-brand {
    padding-right: 50px;
    font-size: 1.08rem;
  }

  .cf-subtitle {
    font-size: 1.08rem;
  }

  .cf-text {
    font-size: 0.94rem;
  }

  .cf-feature-row {
    display: grid;
  }

  .cf-feature-row > span {
    width: 100%;
  }

  .cf-visual {
    display: none;
  }

  .available-badge {
    top: 15px;
    left: 15px;
  }

  .about-visual {
    min-height: 345px;
  }

  .about-panel {
    top: 40px;
    width: 86%;
    padding: 28px;
  }

  .panel-number {
    font-size: 4rem;
  }

  .experience-card {
    left: 15px;
  }

  .detail-image-wrap {
    min-height: 320px;
  }

  .balkan-map {
    min-height: 430px;
    padding: 8px;
  }

  .balkan-map svg {
    min-height: 400px;
  }

  .pin-popup {
    min-width: 172px;
    padding: 13px 15px;
  }

  .pin-popup-count [data-available-count] {
    font-size: 1.3rem;
  }

  .detail-copy h1 {
    font-size: 3rem;
  }

  .detail-cta .button {
    width: 100%;
  }

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

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

  .footer-bottom {
    gap: 8px;
    flex-direction: column;
  }
}

.candidateforce-banner {
  display: block;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(6, 42, 83, 0.14);
}

.js-enabled .candidateforce-banner[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.candidateforce-banner > :not(.candidateforce-banner-image) {
  display: none !important;
}

.candidateforce-banner::before {
  z-index: 2;
  pointer-events: none;
}

.candidateforce-banner-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.candidateforce-banner:hover {
  box-shadow: 0 36px 90px rgba(6, 42, 83, 0.2);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ===== Modernized availability map: blue tone ===== */
.balkan-map {
  background:
    radial-gradient(circle at 20% 16%, rgba(96, 172, 255, 0.28), transparent 44%),
    radial-gradient(circle at 84% 90%, rgba(9, 46, 88, 0.55), transparent 48%),
    linear-gradient(180deg, #0f4276, #082747);
  border-color: rgba(43, 122, 209, 0.35);
}

.balkan-map svg {
  filter: drop-shadow(0 18px 34px rgba(4, 22, 45, 0.4));
}

.map-sea {
  fill: #0e457f;
}

.country {
  stroke: #0e457f;
  stroke-width: 4.5;
}

.country-croatia { fill: #2f80d8; }
.country-bosnia { fill: #245fa6; }
.country-serbia { fill: #3a90e2; }
.country-montenegro { fill: #2a74c4; }
.country-kosovo { fill: #4f9dea; }
.country-albania { fill: #2f80d8; }
.country-macedonia { fill: #245fa6; }

.map-label-kosovo {
  fill: var(--white);
}

/* ===== Country leaderboard (available welders by region) ===== */
.map-legend {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(207, 224, 241, 0.9);
}

.map-legend-item {
  display: grid;
  grid-template-columns: 24px minmax(96px, 172px) 1fr auto;
  align-items: center;
  gap: 12px;
}

.map-legend-item .pin-flag {
  width: 22px;
  height: 15px;
}

.mli-name {
  overflow: hidden;
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mli-bar {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: rgba(22, 115, 207, 0.14);
  border-radius: 100px;
}

.mli-bar > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #1673cf, #4aa0ee);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mli-count {
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
  .map-legend-item {
    grid-template-columns: 22px 1fr auto;
  }

  .map-legend-item .mli-bar {
    display: none;
  }
}
