/* ===== Variables — Must intAIRim Belgium ===== */
:root {
  --navy: #15251f;
  --navy-light: #243c33;
  --navy-mid: #3d5a4d;
  --gold: #b8954a;
  --gold-light: #d4b56a;
  --gold-dark: #8f7135;
  --accent-warm: #c45c26;
  --accent-warm-light: #d9783f;
  --red-accent: #c44536;
  --cream: #f7f3ea;
  --white: #ffffff;
  --gray-50: #f6f4ef;
  --gray-100: #ebe6dc;
  --gray-200: #d9d2c4;
  --gray-400: #8a8478;
  --gray-600: #5c574e;
  --gray-800: #2f2c27;
  --shadow-sm: 0 2px 8px rgba(21, 37, 31, 0.06);
  --shadow-md: 0 8px 30px rgba(21, 37, 31, 0.1);
  --shadow-lg: 0 20px 60px rgba(21, 37, 31, 0.14);
  --shadow-gold: 0 8px 30px rgba(184, 149, 74, 0.28);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "Figtree", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184, 149, 74, 0.4);
}
.btn--outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}
.logo__img--hero {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(240px, 42vw);
  opacity: 0.94;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}
.logo__img--bar {
  display: none;
  height: 44px;
  width: auto;
  max-width: min(200px, 48vw);
  opacity: 1;
}
.header.scrolled .logo__img--hero {
  display: none;
}
.header.scrolled .logo__img--bar {
  display: block;
}

.nav-desktop {
  display: flex;
  gap: 32px;
}
.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  position: relative;
}
.header.scrolled .nav-desktop a { color: var(--gray-600); }
.nav-desktop a:hover { color: var(--gold-light); }
.header.scrolled .nav-desktop a:hover { color: var(--gold-dark); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-desktop a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.2);
}
.header.scrolled .lang-switch {
  background: var(--gray-100);
  border-color: var(--gray-200);
}
.lang-switch button {
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.header.scrolled .lang-switch button { color: var(--gray-400); }
.lang-switch button.active {
  background: var(--gold);
  color: var(--white);
}
.header.scrolled .lang-switch button.active {
  background: var(--gold-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 16px;
  transform: translateY(-120%);
  transition: transform var(--transition);
  z-index: 999;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--navy);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184, 149, 74, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(36, 60, 51, 0.7) 0%, transparent 50%),
    linear-gradient(160deg, #0d1a15 0%, var(--navy) 48%, #101c18 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(184, 149, 74, 0.14);
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(196, 92, 38, 0.1);
  bottom: 10%;
  left: -80px;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(184, 149, 74, 0.14);
  border: 1px solid rgba(212, 181, 106, 0.35);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero__card--main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__card--main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero__card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(21, 37, 31, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 181, 106, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__card-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}
.hero__card--float {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero__stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Stats ===== */
.stats {
  background: var(--white);
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-50); }
.stat-item strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.stat-item span {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-400);
}

/* ===== Jobs ===== */
.jobs { background: var(--gray-50); }
.jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 149, 74, 0.4);
}
.job-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.job-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.job-card:hover .job-card__image img { transform: scale(1.08); }
.job-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 60%);
}
.job-card__salary {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
}
.job-card__salary small {
  display: block;
  font-weight: 500;
  font-size: 0.6875rem;
  opacity: 0.8;
}
.job-card__highlight {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  max-width: calc(100% - 28px);
  background: rgba(247, 243, 234, 0.95);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  border: 1px solid rgba(184, 149, 74, 0.35);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.job-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.job-card__roles {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.job-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.job-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-400);
  flex: 1;
  margin-bottom: 20px;
}
.job-card__cta {
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
  align-self: flex-start;
}
.job-card__cta:hover { color: var(--navy); transform: translateX(4px); }

/* ===== Shifts ===== */
.shifts {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.shifts::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(184, 149, 74, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(36, 60, 51, 0.06), transparent 55%);
  pointer-events: none;
}
.shifts__timeline {
  max-width: 880px;
  margin: 0 auto 48px;
  position: relative;
}
.shifts__track {
  position: relative;
  height: 36px;
  border-radius: 999px;
  background: rgba(21, 37, 31, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(21, 37, 31, 0.06);
}
.shifts__seg {
  position: absolute;
  top: 6px;
  bottom: 6px;
  border-radius: 999px;
  opacity: 0.92;
}
.shifts__seg--1 {
  left: calc(8 / 24 * 100%);
  width: calc(8 / 24 * 100%);
  background: linear-gradient(90deg, #c4a35a, #e0c57a);
}
.shifts__seg--2 {
  left: calc(15 / 24 * 100%);
  width: calc(8 / 24 * 100%);
  background: linear-gradient(90deg, #c45c26, #e07a45);
  opacity: 0.88;
}
.shifts__seg--3 {
  background: linear-gradient(90deg, #15251f, #2a4a3c);
}
.shifts__seg--3a {
  left: calc(23 / 24 * 100%);
  width: calc(1 / 24 * 100%);
}
.shifts__seg--3b {
  left: 0;
  width: calc(7 / 24 * 100%);
}
.shifts__overlap {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: calc(15 / 24 * 100%);
  width: calc(1 / 24 * 100%);
  border-radius: 6px;
  border: 2px solid var(--navy);
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.55) 3px,
    rgba(21, 37, 31, 0.12) 3px,
    rgba(21, 37, 31, 0.12) 6px
  );
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(247, 243, 234, 0.7);
}
.shifts__hours {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  padding: 0 2px;
}
.shifts__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-top: 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
}
.shifts__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.shifts__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.shifts__dot--1 { background: #c4a35a; }
.shifts__dot--2 { background: #c45c26; }
.shifts__dot--3 { background: #15251f; }
.shifts__dot--overlap {
  border-radius: 2px;
  background: repeating-linear-gradient(
    -45deg,
    #fff,
    #fff 2px,
    #15251f 2px,
    #15251f 4px
  );
  box-shadow: inset 0 0 0 1px #15251f;
}

.shifts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}
.shift-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.shift-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.shift-card--morning::before { background: linear-gradient(90deg, #c4a35a, #e0c57a); }
.shift-card--evening::before { background: linear-gradient(90deg, #c45c26, #e07a45); }
.shift-card--night::before { background: linear-gradient(90deg, #15251f, #3d5a4d); }
.shift-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.shift-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.shift-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
}
.shift-card__time {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  background: var(--gray-50);
  padding: 8px 12px;
  border-radius: 8px;
}
.shift-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.shift-card__note {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.shifts__premiums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.shift-premium {
  display: flex;
  align-items: stretch;
  gap: 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid rgba(232, 213, 163, 0.2);
}
.shift-premium__value {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  min-width: 140px;
  display: flex;
  align-items: center;
}
.shift-premium__body h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cream);
}
.shift-premium__body p {
  font-size: 0.9375rem;
  color: rgba(247, 243, 234, 0.72);
  line-height: 1.6;
}

/* ===== Benefits ===== */
.benefits {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.benefits__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(184, 149, 74, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(196, 92, 38, 0.08) 0%, transparent 55%);
}
.benefits .section__title { color: var(--white); }
.benefits .section__subtitle { color: rgba(255,255,255,0.6); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 181, 106, 0.5);
  transform: translateY(-4px);
}
.benefit-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.benefit-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.0625rem;
}
.about__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.about__meta-item span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.about__meta-item strong {
  font-size: 1rem;
  color: var(--navy);
}
.about__meta-item--wide { grid-column: 1 / -1; }

.about__visual { position: relative; }
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about__card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(184, 149, 74, 0.22);
  max-width: min(320px, calc(100% - 16px));
}
.about__logo-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--cream), #fff);
  border: 1px solid var(--gray-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.about__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.about__card-text { min-width: 0; }
.about__card-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.about__card-text span {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.about__card p {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.125rem;
}

/* ===== Credentials / licensing ===== */
.credentials {
  background: var(--gray-50);
  position: relative;
}
.credentials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.credential-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.credential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.credential-card--flanders::before {
  background: linear-gradient(90deg, #15251f, #b8954a);
}
.credential-card--brussels::before {
  background: linear-gradient(90deg, #c45c26, #b8954a);
}
.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.credential-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.credential-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(184, 149, 74, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}
.credential-card__code {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.credential-card__status {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a5b1a;
  background: rgba(196, 92, 38, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
}
.credential-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.credential-card p {
  font-size: 0.975rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}
.credential-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.credential-card__link:hover {
  color: var(--navy);
  transform: translateX(3px);
}

.legal { padding: 72px 0; background: var(--navy); color: var(--white); }
.legal__box {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid rgba(232, 213, 163, 0.18);
  box-shadow: none;
}
.legal__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232, 213, 163, 0.16);
}
.legal__box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--cream);
  margin-bottom: 0;
  font-weight: 600;
}
.legal__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}
.legal__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fbf73;
  box-shadow: 0 0 0 4px rgba(111, 191, 115, 0.2);
}
.legal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.legal__item--wide { grid-column: span 2; }
.legal__item span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(212, 181, 106, 0.75);
  margin-bottom: 8px;
}
.legal__item p {
  font-size: 1rem;
  color: rgba(247, 243, 234, 0.92);
  line-height: 1.55;
  font-weight: 500;
}
.legal__item p em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.legal__disclaimer {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(232, 213, 163, 0.16);
}
.legal__disclaimer-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212, 181, 106, 0.8);
  margin-bottom: 12px;
}
.legal__disclaimer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(247, 243, 234, 0.72);
  max-width: 920px;
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.social-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.social-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.social-btn--whatsapp:hover { background: #1fb855; transform: translateX(4px); }
.social-btn--telegram {
  background: #229ED9;
  color: var(--white);
  border-color: #229ED9;
}
.social-btn--telegram:hover { background: #1a8bc4; transform: translateX(4px); }
.social-btn--facebook {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
}
.social-btn--facebook:hover { background: #1464d8; transform: translateX(4px); }
.social-btn--email {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.social-btn--email:hover { background: var(--navy-light); transform: translateX(4px); }

.contact__addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.contact__addresses--single {
  max-width: 360px;
}
.social-btn.is-hidden,
.float-telegram.is-hidden {
  display: none !important;
}
.contact__addresses strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.contact__addresses p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact__form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.contact__form-note {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
.form-status {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
}
.form-status--success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.contact__form button:disabled {
  opacity: 0.7;
  cursor: wait;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--navy);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.4.3 6 4.9 10.6.3l1.4 1.4L6 7.7.0 1.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 74, 0.18);
}
.phone-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
}
.phone-row select {
  width: 100%;
  padding: 14px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.phone-row input {
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  padding: 56px 0 40px;
  color: rgba(247, 243, 234, 0.62);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}
.footer__mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}
.footer__info p { margin-bottom: 4px; }
.footer__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 6px !important;
}
.footer__name span {
  color: var(--gold-light);
  font-weight: 600;
}
.footer__legal { font-size: 0.8125rem; opacity: 0.7; }
.footer__mail {
  margin-top: 8px !important;
  font-size: 0.875rem;
}
.footer__mail a {
  color: var(--gold-light);
  transition: color var(--transition);
}
.footer__mail a:hover { color: var(--cream); }
.footer__copy { font-size: 0.875rem; opacity: 0.55; }
.footer__logo {
  height: 56px;
  width: auto;
}

/* ===== Floating Telegram ===== */
.float-telegram {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #229ED9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4);
  z-index: 900;
  transition: var(--transition);
  animation: pulseTelegram 2s ease infinite;
}
.float-telegram svg { width: 32px; height: 32px; color: white; }
.float-telegram:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(34, 158, 217, 0.5);
}
@keyframes pulseTelegram {
  0%, 100% { box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(34, 158, 217, 0.7); }
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { max-width: 500px; margin: 0 auto; }
  .jobs__grid { grid-template-columns: repeat(2, 1fr); }
  .shifts__grid { grid-template-columns: 1fr; }
  .shifts__premiums { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .legal__grid { grid-template-columns: repeat(2, 1fr); }
  .legal__item--wide { grid-column: span 1; }
  .contact__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--gray-100); }
}

@media (max-width: 768px) {
  .nav-desktop, .header__actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .jobs__grid { grid-template-columns: 1fr; }
  .shift-premium {
    flex-direction: column;
    gap: 12px;
  }
  .shift-premium__value { min-width: 0; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
  .legal__grid { grid-template-columns: 1fr; }
  .legal__item--wide { grid-column: 1; }
  .legal__box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .phone-row { grid-template-columns: 120px 1fr; }
  .contact__addresses { grid-template-columns: 1fr; }
  .about__meta { grid-template-columns: 1fr; }
  .hero__card--float { right: 0; top: -10px; }
  .about__card { left: 0; bottom: -16px; }
  .logo__img--hero { height: 48px; }
  .footer__brand { flex-direction: column; text-align: center; gap: 14px; }
  .footer__info { text-align: center; }
}
