/* ============================================================
   WORK8.CO — Modern Redesign
   Color Palette:
   - Deep Navy:    #0d1b2a
   - Mid Navy:     #1b2d45
   - Gold:         #f5a623
   - Gold Light:   #ffc94d
   - White:        #ffffff
   - Off-white:    #e8edf2
   - Muted text:   #9aafc4
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  --navy-deep:   #0d1b2a;
  --navy-mid:    #1b2d45;
  --navy-light:  #243d5c;
  --gold:        #f5a623;
  --gold-light:  #ffc94d;
  --white:       #ffffff;
  --off-white:   #e8edf2;
  --muted:       #9aafc4;
  --border:      rgba(245,166,35,0.18);
  --card-bg:     rgba(27,45,69,0.7);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --font-main:   'Inter', sans-serif;
  --font-display:'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--navy-deep);
  color: var(--off-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--off-white); margin-bottom: 1rem; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.gold { color: var(--gold); }
.muted { color: var(--muted); }
.text-center { text-align: center; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 60px 0;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(245,166,35,0.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-deep) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0f2035 50%, #0a1520 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.9;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.about-card-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--gold);
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.about-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.about-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ── VALUE PROPS ── */
.value-props-bg {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.vp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.vp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.vp-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.vp-card:hover::before { opacity: 1; }
.vp-icon {
  width: 52px; height: 52px;
  background: rgba(245,166,35,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.vp-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
}
.vp-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}
.cta-banner p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── METHODOLOGY LIST ── */
.method-list {
  list-style: none;
  margin-top: 32px;
}
.method-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.method-list li:last-child { border-bottom: none; }
.method-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2px;
}

/* ── CLIENT LOGOS ── */
.clients-bg {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.clients-intro p { color: var(--muted); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.logo-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  min-height: 80px;
}
.logo-item:hover {
  background: rgba(245,166,35,0.06);
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-2px);
}
.logo-item span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  transition: color var(--transition);
}
.logo-item:hover span { color: var(--off-white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0f2035 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
}
.page-hero .section-label { display: block; margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { color: var(--muted); max-width: 600px; font-size: 1.05rem; }

/* ── EXPERTISE GRID ── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.expertise-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.expertise-card:hover {
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}
.expertise-card .exp-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.expertise-card h3 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.expertise-card ul {
  list-style: none;
  padding: 0;
}
.expertise-card ul li {
  color: var(--muted);
  font-size: 0.875rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.expertise-card ul li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── MANDATES ── */
.mandates-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.mandates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.mandate-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--muted);
  transition: all var(--transition);
}
.mandate-item:hover {
  background: rgba(245,166,35,0.06);
  border-color: rgba(245,166,35,0.2);
  color: var(--off-white);
}

/* ── GLOBAL SOURCING ── */
.sourcing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.sourcing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.sourcing-card h3 {
  color: var(--gold);
  margin-bottom: 16px;
}
.sourcing-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0;
}

/* ── SOURCE TALENT PAGE ── */
.bell-curve-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 60px 0;
  text-align: center;
}
.bell-curve-box h3 { color: var(--gold); margin-bottom: 16px; }
.bell-curve-box p { color: var(--muted); font-size: 0.95rem; }
.bell-svg { width: 100%; max-width: 600px; margin: 32px auto 0; display: block; }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.principle-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.principle-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
}
.principle-card h4 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1rem;
}
.principle-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

/* ── CASE STUDIES ── */
.case-study {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.case-study-header {
  background: rgba(245,166,35,0.06);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.case-study-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.case-study-client {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.case-study-body {
  padding: 40px;
}
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cs-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cs-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}
.cs-text ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.cs-text ul li {
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.cs-text ul li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.cs-feedback {
  background: rgba(245,166,35,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-top: 24px;
  font-style: italic;
  color: var(--off-white);
  font-size: 0.92rem;
  line-height: 1.8;
}
.cs-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cs-stat {
  text-align: center;
}
.cs-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.cs-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── FIND WORK PAGE ── */
.find-work-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.candidate-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.candidate-type {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.candidate-type:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
}
.ct-label {
  display: inline-block;
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.candidate-type h4 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 8px;
}
.candidate-type p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}
.services-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.service-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  transition: all var(--transition);
}
.service-item:hover {
  background: rgba(245,166,35,0.05);
  border-color: rgba(245,166,35,0.15);
  color: var(--off-white);
}
.service-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CLIENT PORTFOLIO PAGE ── */
.portfolio-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.portfolio-intro-grid p { color: var(--muted); line-height: 1.85; }
.logo-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.contact-info h3 { color: var(--gold); margin-bottom: 16px; }
.contact-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(245,166,35,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card h3 { margin-bottom: 28px; }
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(245,166,35,0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-mid); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(13,27,42,0.98);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid-full { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .vp-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .mandates-grid { grid-template-columns: repeat(2, 1fr); }
  .sourcing-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .find-work-hero-grid { grid-template-columns: 1fr; }
  .candidate-types { grid-template-columns: 1fr; }
  .services-two-col { grid-template-columns: 1fr; }
  .portfolio-intro-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid-full { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; }
  .case-study-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mandates-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── BELIEF / POSITIONING SECTION ── */
.belief-section {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.belief-statement blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin-top: 20px;
  font-style: italic;
}
.belief-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.belief-pillar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.belief-pillar:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
}
.belief-pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.belief-pillar h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.belief-pillar p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* ── EXPERTISE DOMAIN (new layout) ── */
.fe-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 20px;
}
.fe-intro-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.fe-intro-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.fe-intro-tags .tag {
  font-size: 0.85rem;
  padding: 8px 16px;
}
.expertise-domain {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.expertise-domain:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.expertise-domain-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.expertise-domain-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.expertise-domain-header .section-label {
  margin-bottom: 6px;
}
.expertise-domain-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin: 0;
}
.expertise-domain-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.expertise-domain-desc p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.expertise-domain-desc p:last-child { margin-bottom: 0; }
.expertise-list-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.expertise-domain-list ul {
  list-style: none;
  padding: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.expertise-domain-list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.expertise-domain-list ul li:last-child { border-bottom: none; }
.expertise-domain-list ul li:hover {
  background: rgba(245,166,35,0.05);
  color: var(--off-white);
}
.expertise-domain-list ul li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── PLACEMENTS TABLE ── */
.placements-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.placements-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.placements-table thead tr {
  background: rgba(245,166,35,0.08);
  border-bottom: 1px solid var(--border);
}
.placements-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.placements-table td {
  padding: 13px 24px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.placements-table td:first-child {
  color: var(--off-white);
  font-weight: 500;
}
.placements-table tbody tr:last-child td { border-bottom: none; }
.placements-table tbody tr:hover td {
  background: rgba(245,166,35,0.04);
  color: var(--off-white);
}

/* ── RESPONSIVE: BELIEF & EXPERTISE DOMAIN ── */
@media (max-width: 1024px) {
  .belief-grid { grid-template-columns: 1fr; gap: 48px; }
  .fe-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .expertise-domain-body { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .belief-pillars { grid-template-columns: 1fr; }
  .expertise-domain-header { flex-direction: column; gap: 16px; }
}

/* ── LOGO TICKER (APNG) ── */
.logo-ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 32px 0;
  background: transparent;
}
.logo-ticker-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
