/* ============================================================
   AVODEAL — style.css
   Executive Search Recruitment — avodeal.biz
   Navy · Gold · White — Luxury editorial aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

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

:root {
  --navy:       #0B1527;
  --navy-mid:   #111e35;
  --navy-card:  #13213e;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   rgba(201,168,76,0.18);
  --gold-border:rgba(201,168,76,0.22);
  --white:      #FFFFFF;
  --off-white:  #F4F0E8;
  --gray:       #8A8FA8;
  --gray-light: rgba(138,143,168,0.15);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w:      1120px;
  --header-h:   76px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm { padding: 3rem 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Typography ───────────────────────────────────────────── */
.display-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

em { font-style: italic; color: var(--gold-light); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(11,21,39,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  font-size: 0.85rem;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-login:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-hiring {
  font-size: 0.85rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
}

.nav-hiring:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.5rem;
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu li a {
  display: block;
  padding: 0.75rem 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}

.mobile-menu li a:hover { color: var(--gold); }

.mobile-menu .btn-primary {
  display: inline-block;
  margin-top: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  transition: gap var(--transition);
}

.btn-ghost:hover { gap: 0.7rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
}

.card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

/* ── Gold divider line ────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.gold-line.center { margin: 1.25rem auto; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(201,168,76,0.04) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-display {
  position: relative;
}

.hero-logo-display img {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.15));
  animation: float 6s ease-in-out infinite;
}

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

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2.5rem 0;
  background: var(--navy-mid);
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.4rem;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gold-border);
}

/* ── Ticker ───────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--navy);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gold-border);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  padding: 0 2rem;
  white-space: nowrap;
}

.ticker-item::before {
  content: '·';
  margin-right: 2rem;
  color: var(--gold-border);
}

/* ── Services cards ───────────────────────────────────────── */
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ── Process steps ────────────────────────────────────────── */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ── Vacancy cards ────────────────────────────────────────── */
.vacancy-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.vacancy-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-2px);
}

.vacancy-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.vacancy-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.vacancy-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 40px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-open {
  background: rgba(29,158,117,0.15);
  color: #4de0b0;
  border: 1px solid rgba(29,158,117,0.3);
}

.badge-closed {
  background: rgba(153,60,29,0.15);
  color: #f0997b;
  border: 1px solid rgba(153,60,29,0.3);
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vacancy-tag {
  font-size: 0.78rem;
  color: var(--gray);
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.vacancy-company {
  font-size: 0.88rem;
  color: var(--gold);
  opacity: 0.8;
}

.vacancy-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vacancy-date {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

label .required { color: var(--gold); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(201,168,76,0.55);
  background: rgba(255,255,255,0.06);
}

input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.28); }

select option { background: var(--navy-card); color: var(--white); }

textarea { resize: vertical; min-height: 120px; }

input[type="file"] {
  padding: 0.6rem;
  color: var(--gray);
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.82rem;
  margin-right: 0.75rem;
  font-family: inherit;
}

/* Form states */
.field-error {
  font-size: 0.78rem;
  color: #f0997b;
  margin-top: 0.25rem;
}

input.invalid, select.invalid, textarea.invalid {
  border-color: rgba(240,153,123,0.6);
}

.form-success {
  background: rgba(29,158,117,0.12);
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #4de0b0;
}

.form-success .success-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.form-error-box {
  background: rgba(240,153,123,0.1);
  border: 1px solid rgba(240,153,123,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #f0997b;
  margin-bottom: 1rem;
}

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Filter bar ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,14,28,0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
}

.modal-close:hover { color: var(--white); }

/* ── Apply form wrapper ───────────────────────────────────── */
.apply-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0;
}

.apply-box {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Loading state ────────────────────────────────────────── */
.loading-state {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray);
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Login page ───────────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.auth-box {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

.auth-box h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-box p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.auth-divider {
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  margin: 1.25rem 0;
  position: relative;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ── Portal pages ─────────────────────────────────────────── */
.portal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - var(--header-h));
}

.portal-sidebar {
  background: var(--navy-mid);
  border-right: 1px solid var(--gold-border);
  padding: 2rem 1.25rem;
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.portal-sidebar nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.portal-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: background var(--transition), color var(--transition);
}

.portal-sidebar nav a:hover,
.portal-sidebar nav a.active {
  background: var(--gold-dim);
  color: var(--gold);
}

.portal-main {
  padding: 2.5rem;
  overflow-x: hidden;
}

.portal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.portal-header h1 {
  font-size: 2rem;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.summary-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.summary-card .value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.summary-card .label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* Stage progress bar */
.stage-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0.5rem 0;
}

.stage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.stage-dot.done { background: var(--gold); }
.stage-dot.current {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
}

.stage-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.stage-line.done { background: var(--gold); opacity: 0.4; }

/* Application row */
.application-row {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.application-row:hover { border-color: rgba(201,168,76,0.4); }

/* Kanban */
.kanban {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  overflow-x: auto;
}

.kanban-col {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 1rem;
  min-height: 300px;
}

.kanban-col-header {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kanban-col-count {
  background: var(--gold-dim);
  color: var(--gold);
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
}

.kanban-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color var(--transition);
}

.kanban-card:hover { border-color: rgba(201,168,76,0.45); }

/* ── About page ───────────────────────────────────────────── */
.about-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-feature h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.about-feature p { color: var(--gray); font-size: 0.9rem; }

/* ── Industries grid ──────────────────────────────────────── */
.industry-tag {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  transition: border-color var(--transition), color var(--transition);
}

.industry-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #070f1e;
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

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

/* ── Page hero (interior pages) ───────────────────────────── */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--gold-border);
}

.page-hero .display-tag { margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--gray); max-width: 540px; }

/* ── Vacancies page ───────────────────────────────────────── */
.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.no-vacancies {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray);
  grid-column: 1 / -1;
}

.no-vacancies h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

/* ── Reveal animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .portal-layout { grid-template-columns: 1fr; }
  .portal-sidebar { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .summary-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
  .filter-bar input, .filter-bar select { max-width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3rem 0; }
  .hero-ctas { flex-direction: column; }
  .modal-box { padding: 1.5rem; }
}
