/* ============================================================
   IWC Public Site — Main Stylesheet
   Phase 5 | Navy #0a1f33 | Gold #D4AF37 | Mobile-first
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --iwc-navy:         #0a1f33;
  --iwc-navy-light:   #0d2847;
  --iwc-navy-dark:    #061424;
  --iwc-gold:         #D4AF37;
  --iwc-gold-light:   #e8c84a;
  --iwc-gold-dark:    #b8952b;
  --iwc-white:        #ffffff;
  --iwc-success:      #1a9f5a;
  --iwc-danger:       #dc3545;
  --iwc-warn:         #f59e0b;
  --iwc-muted:        #6c757d;
  --iwc-bg:           #f4f6f9;
  --iwc-border:       #e2e8f0;
  --nav-h:            72px;
  --radius:           12px;
  --radius-lg:        20px;
  --shadow:           0 2px 12px rgba(10,31,51,.08);
  --shadow-lg:        0 8px 40px rgba(10,31,51,.15);
  --shadow-xl:        0 20px 60px rgba(10,31,51,.2);
  --transition:       all .25s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  background: var(--iwc-white);
  color: #1a2940;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
p { margin-bottom: 1rem; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--iwc-navy);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--iwc-gold);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--iwc-gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--iwc-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-iwc-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--iwc-gold);
  color: var(--iwc-navy);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .3px;
  white-space: nowrap;
}

.btn-iwc-primary:hover {
  background: var(--iwc-gold-light);
  color: var(--iwc-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,.4);
}

.btn-iwc-primary:active { transform: translateY(0); }

.btn-iwc-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--iwc-white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-iwc-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--iwc-white);
}

.btn-iwc-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--iwc-navy);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid var(--iwc-navy);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-iwc-outline-navy:hover {
  background: var(--iwc-navy);
  color: var(--iwc-white);
}

/* ── Navigation ──────────────────────────────────────────── */
.iwc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}

.iwc-nav.scrolled {
  background: rgba(10,31,51,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.iwc-nav.nav-solid {
  background: var(--iwc-navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.iwc-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: var(--iwc-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--iwc-navy);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--iwc-white);
  line-height: 1.2;
}
.nav-brand-sub {
  font-size: 9px;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
  min-width: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--iwc-white);
  background: rgba(255,255,255,.08);
}

.nav-links a.active {
  color: var(--iwc-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.nav-login-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-login-btn:hover {
  color: var(--iwc-white);
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--iwc-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle:hover { background: rgba(255,255,255,.15); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--iwc-navy-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

/* nav-mobile is the same element referenced by ID in JS */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--iwc-navy-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px;
  z-index: 999;
}

.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile ul li a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--transition);
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { background: rgba(255,255,255,.08); color: #fff; }
.nav-mobile ul li a.active { color: var(--iwc-gold); }

/* nav-hamburger hidden on desktop */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--iwc-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,.15); }

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255,255,255,.08);
  color: var(--iwc-white);
}

.mobile-menu a.active { color: var(--iwc-gold); }

.mobile-menu-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 8px 0;
}

/* Language switcher — hidden until multi-language is live */
.lang-switcher {
  display: none;
}

.lang-btn {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  letter-spacing: .5px;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--iwc-gold);
  border-color: rgba(212,175,55,.3);
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--iwc-navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,175,55,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,31,51,.8) 0%, transparent 60%);
}

/* Animated floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float-slow 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,159,90,.06) 0%, transparent 70%);
  bottom: 50px;
  left: 10%;
  animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.97); }
}

/* Grid lines decoration */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--iwc-gold);
  letter-spacing: .5px;
  margin-bottom: 20px;
  animation: fade-up .6s ease both;
}

.hero-badge i { font-size: 10px; }

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--iwc-white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fade-up .6s .1s ease both;
}

.hero-title span {
  color: var(--iwc-gold);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--iwc-gold);
  border-radius: 2px;
  opacity: .4;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fade-up .6s .2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fade-up .6s .3s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fade-up .6s .4s ease both;
}

.hero-stat {}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--iwc-gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
  letter-spacing: .3px;
}

/* Hero visual panel */
.hero-visual {
  animation: fade-up .6s .2s ease both;
}

.hero-card-stack {
  position: relative;
}

.hero-main-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hero-card-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card-badge {
  padding: 4px 10px;
  background: rgba(26,159,90,.2);
  border: 1px solid rgba(26,159,90,.4);
  border-radius: 20px;
  font-size: 11px;
  color: #4ade80;
  font-weight: 600;
}

.hero-job-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255,255,255,.05);
  transition: var(--transition);
  cursor: pointer;
}

.hero-job-item:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(4px);
}

.hero-job-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-job-info {}
.hero-job-title { font-size: 14px; font-weight: 600; color: var(--iwc-white); }
.hero-job-meta { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

.hero-job-salary {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}

.hero-job-salary-num { font-size: 13px; font-weight: 700; color: var(--iwc-gold); }
.hero-job-salary-label { font-size: 10px; color: rgba(255,255,255,.4); }

/* Floating mini cards */
.hero-float-card {
  position: absolute;
  background: rgba(10,31,51,.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--iwc-white);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 3;
}

.hero-float-card i { font-size: 18px; }

.hero-float-1 {
  bottom: -20px;
  left: -30px;
  animation: float-badge 5s ease-in-out infinite;
}

.hero-float-2 {
  top: -20px;
  right: -20px;
  animation: float-badge 5s 2s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.section {
  padding: 90px 0;
}

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

.section-header {
  margin-bottom: 52px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-subtitle {
  margin: 0 auto;
}

/* ── PROGRAMS SECTION ────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.program-card {
  background: var(--iwc-white);
  border: 2px solid var(--iwc-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-color, var(--iwc-gold));
  transform: scaleX(0);
  transition: transform .3s ease;
}

.program-card:hover {
  border-color: var(--card-color, var(--iwc-gold));
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.program-card:hover::before { transform: scaleX(1); }

.program-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  background: var(--card-bg, rgba(212,175,55,.1));
  color: var(--card-color, var(--iwc-gold));
}

.program-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 6px;
}

.program-desc {
  font-size: 13px;
  color: var(--iwc-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}

.program-tag.free {
  background: rgba(26,159,90,.1);
  color: var(--iwc-success);
  border: 1px solid rgba(26,159,90,.2);
}

.program-tag.paid {
  background: rgba(245,158,11,.1);
  color: #d97706;
  border: 1px solid rgba(245,158,11,.2);
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.steps-bg { background: var(--iwc-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--iwc-border), var(--iwc-gold), var(--iwc-border));
}

.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--iwc-white);
  border: 2px solid var(--iwc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--iwc-navy);
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.step-item:hover .step-num {
  background: var(--iwc-navy);
  color: var(--iwc-gold);
  border-color: var(--iwc-navy);
  box-shadow: 0 8px 24px rgba(10,31,51,.2);
  transform: scale(1.1);
}

.step-icon {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--iwc-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--iwc-navy);
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--iwc-muted);
  line-height: 1.6;
}

/* ── JOBS SECTION ────────────────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.job-card {
  background: var(--iwc-white);
  border: 1px solid var(--iwc-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  border-color: var(--iwc-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.job-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--iwc-gold), var(--iwc-gold-light));
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.job-program-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.job-card-info { flex: 1; min-width: 0; }

.job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 3px;
  line-height: 1.3;
}

.job-employer {
  font-size: 13px;
  color: var(--iwc-muted);
}

.job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(10,31,51,.06);
  color: var(--iwc-navy);
}

.job-badge.free {
  background: rgba(26,159,90,.1);
  color: var(--iwc-success);
}

.job-badge.featured {
  background: rgba(212,175,55,.12);
  color: #b8952b;
}

.job-badge.filled {
  background: rgba(108,117,125,.1);
  color: var(--iwc-muted);
}

.job-desc {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--iwc-border);
}

.job-salary {
  font-size: 15px;
  font-weight: 700;
  color: var(--iwc-navy);
}

.job-salary span {
  font-size: 12px;
  font-weight: 400;
  color: var(--iwc-muted);
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-bg {
  background: linear-gradient(135deg, var(--iwc-navy), #112a47);
  position: relative;
  overflow: hidden;
}

.testimonials-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,.08) 0%, transparent 60%);
}

.testimonials-bg .section-label { color: rgba(212,175,55,.8); }
.testimonials-bg .section-label::before { background: rgba(212,175,55,.8); }
.testimonials-bg .section-title { color: var(--iwc-white); }
.testimonials-bg .section-subtitle { color: rgba(255,255,255,.55); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--iwc-gold);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--iwc-gold), var(--iwc-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--iwc-navy);
  flex-shrink: 0;
}

.testimonial-name { font-size: 14px; font-weight: 600; color: var(--iwc-white); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── TRUST BADGES ────────────────────────────────────────── */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--iwc-border);
  border-bottom: 1px solid var(--iwc-border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--iwc-muted);
  font-size: 14px;
  font-weight: 500;
}

.trust-item i {
  font-size: 20px;
  color: var(--iwc-gold);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--iwc-navy);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,175,55,.1) 0%, transparent 70%);
}

.cta-section .section-title { color: var(--iwc-white); }
.cta-section .section-subtitle { color: rgba(255,255,255,.6); margin: 0 auto 36px; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.iwc-footer {
  background: #061424;
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;
  background: var(--iwc-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--iwc-navy);
  margin-bottom: 16px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--iwc-white);
  margin-bottom: 4px;
}

.footer-brand-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--iwc-gold);
  border-color: var(--iwc-gold);
  color: var(--iwc-navy);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--iwc-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.5);
}

.footer-contact-item i {
  color: var(--iwc-gold);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.3);
  font-size: 12px;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--iwc-gold); }

/* ── JOBS PAGE ───────────────────────────────────────────── */
.page-hero {
  background: var(--iwc-navy);
  padding: calc(var(--nav-h) + 48px) 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,.08) 0%, transparent 60%);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(212,175,55,.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--iwc-white);
  margin-bottom: 10px;
}

.page-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 540px;
}

/* Filter bar */
.filter-bar {
  background: var(--iwc-white);
  border-bottom: 1px solid var(--iwc-border);
  padding: 16px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--iwc-bg);
  border: 1px solid var(--iwc-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--iwc-navy);
  transition: var(--transition);
}

.filter-search:focus-within {
  border-color: var(--iwc-navy);
  background: var(--iwc-white);
}

.filter-search input {
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: var(--iwc-navy);
  flex: 1;
  font-family: inherit;
}

.filter-search input::placeholder { color: var(--iwc-muted); }
.filter-search i { color: var(--iwc-muted); font-size: 14px; }

.filter-select {
  padding: 10px 14px;
  background: var(--iwc-bg);
  border: 1px solid var(--iwc-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--iwc-navy);
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 32px;
}

.filter-select:focus {
  border-color: var(--iwc-navy);
  background-color: var(--iwc-white);
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid var(--iwc-border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: var(--iwc-bg);
  color: var(--iwc-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--iwc-navy);
  color: var(--iwc-white);
  border-color: var(--iwc-navy);
}

/* Jobs list layout */
.jobs-page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.jobs-count {
  font-size: 14px;
  color: var(--iwc-muted);
  margin-bottom: 20px;
}

.jobs-count strong { color: var(--iwc-navy); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--iwc-white);
  border: 1px solid var(--iwc-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--iwc-gold);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--iwc-navy), var(--iwc-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--iwc-gold);
  margin: 0 auto 16px;
  border: 3px solid var(--iwc-gold);
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--iwc-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-location {
  font-size: 12px;
  color: var(--iwc-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

.office-card {
  background: var(--iwc-white);
  border: 1px solid var(--iwc-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--iwc-gold);
}

.office-flag {
  font-size: 36px;
  margin-bottom: 12px;
}

.office-country {
  font-size: 16px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 6px;
}

.office-address {
  font-size: 13px;
  color: var(--iwc-muted);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--iwc-bg);
  border: 1px solid var(--iwc-border);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--iwc-white);
  box-shadow: var(--shadow);
  border-color: var(--iwc-gold);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--iwc-navy), var(--iwc-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--iwc-gold);
  margin-bottom: 16px;
}

.value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 8px;
}

.value-desc { font-size: 13px; color: var(--iwc-muted); line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--iwc-navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.contact-info-card .section-label {
  color: rgba(212,175,55,.7);
}

.contact-info-card .section-label::before {
  background: rgba(212,175,55,.7);
}

.contact-info-card .section-title {
  color: var(--iwc-white);
  font-size: 26px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,175,55,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--iwc-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.contact-form-card {
  background: var(--iwc-white);
  border: 1px solid var(--iwc-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ── FAQ PAGE ────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.faq-nav-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--iwc-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq-nav-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--iwc-muted);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: var(--transition);
  margin-bottom: 2px;
  font-weight: 500;
}

.faq-nav-link:hover,
.faq-nav-link.active {
  background: rgba(10,31,51,.05);
  color: var(--iwc-navy);
  border-left-color: var(--iwc-gold);
}

.faq-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-section-title i {
  color: var(--iwc-gold);
  font-size: 18px;
}

.faq-item {
  border: 1px solid var(--iwc-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--iwc-gold);
  box-shadow: 0 4px 16px rgba(212,175,55,.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--iwc-navy);
  user-select: none;
  background: var(--iwc-white);
  transition: var(--transition);
}

.faq-question:hover { background: rgba(10,31,51,.02); }

.faq-item.open .faq-question { background: rgba(212,175,55,.04); }

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(10,31,51,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--iwc-muted);
  flex-shrink: 0;
  transition: transform .3s ease, background .25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--iwc-gold);
  color: var(--iwc-navy);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
}

/* ── APPLY FORM ──────────────────────────────────────────── */
.apply-wrapper {
  min-height: 100vh;
  background: var(--iwc-bg);
  padding-top: var(--nav-h);
}

.apply-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* Progress */
.apply-progress-wrap {
  margin-bottom: 32px;
}

.apply-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.apply-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--iwc-navy);
}

.apply-step-count {
  font-size: 12px;
  color: var(--iwc-muted);
}

.apply-progress-bar {
  height: 6px;
  background: var(--iwc-border);
  border-radius: 6px;
  overflow: hidden;
}

.apply-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--iwc-navy), var(--iwc-gold));
  border-radius: 6px;
  transition: width .4s ease;
}

/* Step dots */
.apply-steps-dots {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  position: relative;
}

.apply-steps-dots::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--iwc-border);
  z-index: 0;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.step-dot-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--iwc-white);
  border: 2px solid var(--iwc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--iwc-muted);
  transition: var(--transition);
}

.step-dot.completed .step-dot-circle {
  background: var(--iwc-success);
  border-color: var(--iwc-success);
  color: var(--iwc-white);
}

.step-dot.active .step-dot-circle {
  background: var(--iwc-navy);
  border-color: var(--iwc-navy);
  color: var(--iwc-white);
  box-shadow: 0 0 0 4px rgba(10,31,51,.1);
}

.step-dot-label {
  font-size: 10px;
  color: var(--iwc-muted);
  font-weight: 500;
  text-align: center;
  max-width: 60px;
  line-height: 1.3;
}

.step-dot.active .step-dot-label { color: var(--iwc-navy); font-weight: 700; }

/* Form card */
.apply-form-card {
  background: var(--iwc-white);
  border: 1px solid var(--iwc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.apply-form-header {
  background: var(--iwc-navy);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.apply-form-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--iwc-gold);
  flex-shrink: 0;
}

.apply-form-title { font-size: 20px; font-weight: 700; color: var(--iwc-white); }
.apply-form-subtitle { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }

.apply-form-body { padding: 36px; }

/* Form fields */
.apply-form-body .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--iwc-navy);
  margin-bottom: 7px;
  display: block;
}

.apply-form-body .required-mark {
  color: var(--iwc-danger);
  margin-left: 3px;
}

.apply-form-body .form-control,
.apply-form-body .form-select {
  font-size: 14px;
  color: var(--iwc-navy);
  background: var(--iwc-bg);
  border: 1.5px solid var(--iwc-border);
  border-radius: 10px;
  padding: 11px 14px;
  transition: var(--transition);
  font-family: inherit;
  width: 100%;
}

.apply-form-body .form-control:focus,
.apply-form-body .form-select:focus {
  border-color: var(--iwc-navy);
  background: var(--iwc-white);
  box-shadow: 0 0 0 3px rgba(10,31,51,.08);
  outline: none;
}

.apply-form-body .form-control.is-valid { border-color: var(--iwc-success); }
.apply-form-body .form-control.is-invalid { border-color: var(--iwc-danger); }

.apply-form-body .invalid-feedback {
  font-size: 12px;
  color: var(--iwc-danger);
  margin-top: 5px;
  display: none;
}

.apply-form-body .form-control.is-invalid ~ .invalid-feedback { display: block; }

.apply-form-body .form-hint {
  font-size: 12px;
  color: var(--iwc-muted);
  margin-top: 5px;
}

/* Choice cards (for program, German level, etc.) */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.choice-card {
  border: 2px solid var(--iwc-border);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--iwc-bg);
}

.choice-card:hover {
  border-color: var(--iwc-navy);
  background: var(--iwc-white);
}

.choice-card.selected {
  border-color: var(--iwc-navy);
  background: rgba(10,31,51,.04);
}

.choice-card input[type="radio"] { display: none; }

.choice-card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.choice-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--iwc-navy);
  line-height: 1.3;
}

.choice-card-sub {
  font-size: 11px;
  color: var(--iwc-muted);
  margin-top: 3px;
}

/* German level slider */
.german-level-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.level-pill {
  padding: 8px 16px;
  border: 2px solid var(--iwc-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--iwc-muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--iwc-bg);
}

.level-pill:hover { border-color: var(--iwc-navy); color: var(--iwc-navy); }

.level-pill.selected {
  background: var(--iwc-navy);
  border-color: var(--iwc-navy);
  color: var(--iwc-white);
}

/* Form navigation */
.apply-form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px 28px;
  border-top: 1px solid var(--iwc-border);
  background: var(--iwc-bg);
}

.step-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  border: 1.5px solid var(--iwc-border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--iwc-muted);
  cursor: pointer;
  transition: var(--transition);
}

.step-back-btn:hover {
  border-color: var(--iwc-navy);
  color: var(--iwc-navy);
}

.step-next-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--iwc-navy);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--iwc-white);
  cursor: pointer;
  transition: var(--transition);
}

.step-next-btn:hover {
  background: #0d2847;
  transform: translateX(2px);
  box-shadow: 0 4px 16px rgba(10,31,51,.2);
}

.step-next-btn.gold {
  background: var(--iwc-gold);
  color: var(--iwc-navy);
}

.step-next-btn.gold:hover {
  background: var(--iwc-gold-light);
  box-shadow: 0 4px 16px rgba(212,175,55,.35);
}

/* Step panels */
.apply-step { display: none; }
.apply-step.active { display: block; }

/* Checkbox/radio custom */
.form-check-iwc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.form-check-iwc input {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid var(--iwc-border);
  appearance: none;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--iwc-bg);
  position: relative;
}

.form-check-iwc input:checked {
  background: var(--iwc-navy);
  border-color: var(--iwc-navy);
}

.form-check-iwc input:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: 700;
}

.form-check-iwc label {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  line-height: 1.55;
}

/* Success state */
.apply-success {
  text-align: center;
  padding: 60px 36px;
}

.apply-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(26,159,90,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--iwc-success);
  margin: 0 auto 24px;
  animation: pop-in .4s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.apply-success-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--iwc-navy);
  margin-bottom: 10px;
}

.apply-success-desc {
  font-size: 15px;
  color: var(--iwc-muted);
  max-width: 460px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.apply-success-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--iwc-bg);
  border: 1px solid var(--iwc-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--iwc-navy);
  font-weight: 600;
  margin-bottom: 28px;
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--iwc-white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  color: var(--iwc-white);
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--iwc-navy);
  color: var(--iwc-white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  margin-right: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--iwc-navy-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.cookie-banner-text a {
  color: var(--iwc-gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept-btn {
  padding: 8px 18px;
  background: var(--iwc-gold);
  color: var(--iwc-navy);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept-btn:hover { background: var(--iwc-gold-light); }

.cookie-decline-btn {
  padding: 8px 18px;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline-btn:hover {
  color: var(--iwc-white);
  border-color: rgba(255,255,255,.5);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-gold { color: var(--iwc-gold); }
.text-navy { color: var(--iwc-navy); }
.bg-navy { background: var(--iwc-navy); }
.bg-gold { background: var(--iwc-gold); }

.divider {
  height: 1px;
  background: var(--iwc-border);
  margin: 24px 0;
}

/* Alert banners */
.alert-iwc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}

.alert-iwc.success {
  background: rgba(26,159,90,.08);
  border: 1px solid rgba(26,159,90,.2);
  color: #065f32;
}

.alert-iwc.error {
  background: rgba(220,53,69,.08);
  border: 1px solid rgba(220,53,69,.2);
  color: #721c24;
}

.alert-iwc.info {
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.2);
  color: #1e3a8a;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
/* Nav collapses earlier than page layouts — 6 links + actions need the room */
@media (max-width: 1099px) {
  .nav-links, .nav-actions .nav-login-btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 60px 24px;
  }

  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-float-1, .hero-float-2 { display: none; }

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

  .offices-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { display: none; }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }

  .hero-title { font-size: 32px; }
  .hero-float-1, .hero-float-2 { display: none; }

  .programs-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .apply-inner { padding: 24px 16px 60px; }
  .apply-form-header, .apply-form-body, .apply-form-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .apply-steps-dots { display: none; }

  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-iwc-primary { display: none; }
}

@media (max-width: 480px) {
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 22px; }
  .trust-items { gap: 24px; }
  .contact-form-card, .contact-info-card { padding: 24px; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
}

/* hero-job-item as anchor — remove underline */
a.hero-job-item {
  text-decoration: none;
  color: inherit;
}

/* View all positions link in hero card */
.hero-view-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: all .2s ease;
  text-decoration: none;
}
.hero-view-all-link:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
}

/* ── Legal Pages ────────────────────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, var(--iwc-navy) 0%, #0d2a45 100%);
  padding: 80px 0 60px;
  margin-bottom: 0;
}
.legal-content {
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 860px;
}
.legal-intro {
  background: var(--iwc-bg);
  border-left: 4px solid var(--iwc-gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--iwc-text);
  margin-bottom: 40px;
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--iwc-border);
}
.legal-section:last-child {
  border-bottom: none;
}
.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--iwc-bg);
}
.legal-section h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--iwc-navy);
  margin: 16px 0 8px;
}
.legal-section p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--iwc-text-muted);
  margin-bottom: 12px;
}
.legal-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-section ul li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--iwc-text-muted);
  margin-bottom: 6px;
}
.legal-section a {
  color: var(--iwc-gold);
  text-decoration: none;
  font-weight: 500;
}
.legal-section a:hover { text-decoration: underline; }
.legal-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.legal-contact-card {
  background: var(--iwc-bg);
  border: 1px solid var(--iwc-border);
  border-radius: 12px;
  padding: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--iwc-text-muted);
}
.legal-contact-card strong { color: var(--iwc-navy); display: block; margin-bottom: 4px; }
/* Cookie table */
.cookie-table-wrap { overflow-x: auto; margin: 16px 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cookie-table th {
  background: var(--iwc-navy);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--iwc-border);
  color: var(--iwc-text-muted);
  vertical-align: top;
}
.cookie-table tr:hover td { background: var(--iwc-bg); }
.cookie-table code {
  background: var(--iwc-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--iwc-navy);
}
@media (max-width: 640px) {
  .legal-contact-grid { grid-template-columns: 1fr; }
  .legal-content { padding-top: 32px; padding-bottom: 48px; }
}

/* ── Nav button fixes ───────────────────────────────────── */
.nav-signin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 8px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-signin-btn:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.nav-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--iwc-gold);
  color: var(--iwc-navy);
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-apply-btn:hover {
  background: #c9a227;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .nav-apply-btn .apply-long { display: none; }
  .nav-apply-btn .apply-short { display: inline; }
}
@media (min-width: 481px) {
  .nav-apply-btn .apply-long { display: inline; }
  .nav-apply-btn .apply-short { display: none; }
}

/* ════════════════════════════════════════════════════════════
   CORRIDOR DESIGN LANGUAGE — travel-document motif
   Route board · flight arc · boarding pass · office strip
   ════════════════════════════════════════════════════════════ */

/* ── Route board (hero eyebrow) ── */
.route-board {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 8px;
  background: rgba(212,175,55,.06);
  margin-bottom: 26px;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, monospace;
}
.route-code {
  color: var(--iwc-gold);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
}
.route-city {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.route-line {
  color: rgba(255,255,255,.4);
  font-size: 11px;
  padding: 0 6px;
  position: relative;
}
.route-line::before, .route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  border-top: 1px dashed rgba(212,175,55,.5);
}
.route-line::before { right: 100%; }
.route-line::after  { left: 100%; }

/* ── Flight arc in hero background ── */
.hero-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-arc-path {
  stroke: rgba(212,175,55,.35);
  stroke-width: 2;
  stroke-dasharray: 8 10;
  fill: none;
}
@keyframes arcDraw {
  from { stroke-dashoffset: 2400; }
  to   { stroke-dashoffset: 0; }
}
.hero-arc-path { animation: arcDraw 3.2s ease-out both; }
.hero-arc-dot { fill: var(--iwc-gold); opacity: .7; }
.hero-arc-label {
  fill: rgba(255,255,255,.28);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 1px;
}

/* ── Boarding pass ── */
.iwc-pass {
  display: flex;
  max-width: 480px;
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(150deg, #fdfbf5 0%, #f3ecd8 55%, #e9dfc2 100%);
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 2px 0 rgba(255,255,255,.25) inset;
  transform: rotate(-1.5deg);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.iwc-pass:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 36px 80px rgba(0,0,0,.5), 0 2px 0 rgba(255,255,255,.25) inset;
}
.iwc-pass-main {
  flex: 1;
  padding: 24px 26px 22px;
  position: relative;
}
.iwc-pass-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,31,51,.12);
  margin-bottom: 18px;
}
.iwc-pass-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--iwc-navy);
}
.iwc-pass-class {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a7328;
  background: rgba(212,175,55,.18);
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 4px;
  padding: 4px 8px;
}
.iwc-pass-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.iwc-pass-code {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--iwc-navy);
  letter-spacing: 1px;
}
.iwc-pass-place {
  font-size: 11px;
  color: #7d7461;
  margin-top: 4px;
  letter-spacing: .3px;
}
.iwc-pass-plane {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--iwc-gold);
  font-size: 15px;
}
.iwc-pass-dashes {
  flex: 1;
  border-top: 2px dashed rgba(10,31,51,.25);
}
.iwc-pass-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(10,31,51,.2);
}
.iwc-pass-label {
  display: block;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #a09372;
  margin-bottom: 3px;
}
.iwc-pass-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--iwc-navy);
}
.iwc-pass-name { font-style: italic; }
.iwc-pass-seal {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 92px;
  height: 92px;
  transform: rotate(-14deg);
  opacity: .85;
}
.seal-ring {
  fill: none;
  stroke: #b3922f;
  stroke-width: 2;
}
.seal-ring-inner { stroke-width: 1; stroke-dasharray: 3 3; }
.seal-text {
  fill: #b3922f;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 2px;
}
.seal-center {
  fill: #b3922f;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
}
.iwc-pass-stub {
  width: 72px;
  border-left: 2px dashed rgba(10,31,51,.25);
  background: linear-gradient(180deg, rgba(212,175,55,.16), rgba(212,175,55,.06));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 14px;
}
.iwc-pass-stub-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7328;
}
.iwc-pass-barcode {
  width: 34px;
  height: 58px;
  background: repeating-linear-gradient(
    180deg,
    var(--iwc-navy) 0 2px,
    transparent 2px 4px,
    var(--iwc-navy) 4px 7px,
    transparent 7px 9px,
    var(--iwc-navy) 9px 10px,
    transparent 10px 13px
  );
  opacity: .8;
}
.hero-jobs-teaser {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  margin: 18px 0 0 auto;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.hero-jobs-teaser:hover {
  border-color: rgba(212,175,55,.5);
  background: rgba(212,175,55,.08);
  color: #fff;
  transform: translateY(-2px);
}
.hero-jobs-teaser i { margin-left: auto; color: var(--iwc-gold); }
.hero-jobs-teaser-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: teaserPulse 2s ease-in-out infinite;
}
@keyframes teaserPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* ── Offices corridor strip ── */
.corridor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.corridor-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5eaf1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.corridor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10,31,51,.1);
}
.corridor-photo {
  position: relative;
  aspect-ratio: 10 / 7;
  background: linear-gradient(150deg, #0a1f33, #14304d);
  overflow: hidden;
}
.corridor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.corridor-photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(212,175,55,.45);
}
.corridor-photo.no-photo .corridor-photo-fallback { display: flex; }
.corridor-card figcaption { padding: 18px 20px 20px; }
.corridor-coords {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  color: #9ba8b9;
  margin-bottom: 5px;
}
.corridor-city {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--iwc-navy);
  margin-bottom: 4px;
}
.corridor-role { font-size: 12.5px; color: #6b7a8e; line-height: 1.5; }

/* ── Responsive & motion ── */
@media (max-width: 991px) {
  .iwc-pass { margin: 0 auto; transform: rotate(0); max-width: 440px; }
  .hero-jobs-teaser { margin: 18px auto 0; }
  .corridor-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .hero-arc { display: none; }
}
@media (max-width: 520px) {
  .iwc-pass-code { font-size: 30px; }
  .iwc-pass-seal { width: 74px; height: 74px; }
  .route-board { flex-wrap: wrap; gap: 6px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-arc-path { animation: none; }
  .hero-jobs-teaser-pulse { animation: none; }
  .iwc-pass, .corridor-card, .hero-jobs-teaser { transition: none; }
  .iwc-pass:hover, .corridor-card:hover { transform: rotate(-1.5deg); }
}

/* ── Hiring band ── */
.hiring-band {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: linear-gradient(120deg, rgba(212,175,55,.1), rgba(212,175,55,.03));
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.hiring-band:hover {
  border-color: var(--iwc-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10,31,51,.08);
}
.hiring-band-badge {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--iwc-navy);
  background: var(--iwc-gold);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hiring-band-text {
  flex: 1;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}
.hiring-band-text strong { color: var(--iwc-navy); }
.hiring-band-cta {
  color: var(--iwc-navy);
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hiring-band-cta i { color: var(--iwc-gold); transition: transform .25s ease; }
.hiring-band:hover .hiring-band-cta i { transform: translateX(4px); }
@media (max-width: 768px) {
  .hiring-band { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .hiring-band, .hiring-band-cta i { transition: none; }
  .hiring-band:hover { transform: none; }
}
